From 2edbe9aa4d5e8f4a7abeb2b70312d7dd5a6480c4 Mon Sep 17 00:00:00 2001 From: Nidhi Nandwani Date: Wed, 5 Aug 2026 06:59:10 +0000 Subject: [PATCH 01/13] feat(storage): add support for DirectPath over Interconnect --- .../cloud/storage/GrpcStorageOptions.java | 51 ++- .../storage/StorageOptionsBuilderTest.java | 31 ++ .../storage/it/ITStorageOptionsTest.java | 35 ++ .../InstantiatingGrpcChannelProvider.java | 219 +++++++---- .../gax/grpc/GrpcLoggingInterceptorTest.java | 3 +- .../InstantiatingGrpcChannelProviderTest.java | 354 +++++++++++++++++- 6 files changed, 605 insertions(+), 88 deletions(-) diff --git a/java-storage/google-cloud-storage/src/main/java/com/google/cloud/storage/GrpcStorageOptions.java b/java-storage/google-cloud-storage/src/main/java/com/google/cloud/storage/GrpcStorageOptions.java index 1a6726b9c01b..badbef34b7c3 100644 --- a/java-storage/google-cloud-storage/src/main/java/com/google/cloud/storage/GrpcStorageOptions.java +++ b/java-storage/google-cloud-storage/src/main/java/com/google/cloud/storage/GrpcStorageOptions.java @@ -134,6 +134,9 @@ public final class GrpcStorageOptions extends StorageOptions private static final String GCS_SCOPE = "https://www.googleapis.com/auth/devstorage.full_control"; private static final Set SCOPES = ImmutableSet.of(GCS_SCOPE); private static final String DEFAULT_HOST = "https://storage.googleapis.com"; + private static final String DEFAULT_HOST_DIRECT_PATH = "https://storage-direct.googleapis.com"; + private static final String DEFAULT_HOST_NO_SCHEME = "storage.googleapis.com"; + private static final String DEFAULT_HOST_DIRECT_PATH_NO_SCHEME = "storage-direct.googleapis.com"; // If true, disable the bound-token-by-default feature for DirectPath. private static final boolean DIRECT_PATH_BOUND_TOKEN_DISABLED = Boolean.parseBoolean( @@ -142,6 +145,7 @@ public final class GrpcStorageOptions extends StorageOptions private final GrpcRetryAlgorithmManager retryAlgorithmManager; private final java.time.Duration terminationAwaitDuration; private final boolean attemptDirectPath; + private final boolean attemptDirectPathXdsOverInterconnect; private final boolean enableGrpcClientMetrics; private final boolean grpcClientMetricsManuallyEnabled; @@ -160,6 +164,7 @@ private GrpcStorageOptions(Builder builder, GrpcStorageDefaults serviceDefaults) builder.terminationAwaitDuration, serviceDefaults.getTerminationAwaitDurationJavaTime()); this.attemptDirectPath = builder.attemptDirectPath; + this.attemptDirectPathXdsOverInterconnect = builder.attemptDirectPathXdsOverInterconnect; this.enableGrpcClientMetrics = builder.enableGrpcClientMetrics; this.grpcClientMetricsManuallyEnabled = builder.grpcMetricsManuallyEnabled; this.grpcInterceptorProvider = builder.grpcInterceptorProvider; @@ -230,6 +235,21 @@ private void readObject(ObjectInputStream in) throws IOException, ClassNotFoundE */ private Tuple> resolveSettingsAndOpts() throws IOException { String endpoint = getHost(); + if (attemptDirectPathXdsOverInterconnect) { + if (endpoint.startsWith(DEFAULT_HOST) + && (endpoint.length() == DEFAULT_HOST.length() + || endpoint.charAt(DEFAULT_HOST.length()) == ':' + || endpoint.charAt(DEFAULT_HOST.length()) == '/')) { + endpoint = DEFAULT_HOST_DIRECT_PATH + endpoint.substring(DEFAULT_HOST.length()); + } else if (endpoint.startsWith(DEFAULT_HOST_NO_SCHEME) + && (endpoint.length() == DEFAULT_HOST_NO_SCHEME.length() + || endpoint.charAt(DEFAULT_HOST_NO_SCHEME.length()) == ':' + || endpoint.charAt(DEFAULT_HOST_NO_SCHEME.length()) == '/')) { + endpoint = + DEFAULT_HOST_DIRECT_PATH_NO_SCHEME + + endpoint.substring(DEFAULT_HOST_NO_SCHEME.length()); + } + } URI uri = URI.create(endpoint); String scheme = uri.getScheme(); int port = uri.getPort(); @@ -322,7 +342,8 @@ private Tuple> resolveSettingsAndOpts() throw InstantiatingGrpcChannelProvider.newBuilder() .setEndpoint(endpoint) .setAllowNonDefaultServiceAccount(true) - .setAttemptDirectPath(attemptDirectPath); + .setAttemptDirectPath(attemptDirectPath || attemptDirectPathXdsOverInterconnect) + .setAttemptDirectPathXdsOverInterconnect(attemptDirectPathXdsOverInterconnect); if (!DIRECT_PATH_BOUND_TOKEN_DISABLED) { channelProviderBuilder.setAllowHardBoundTokenTypes( @@ -337,6 +358,18 @@ private Tuple> resolveSettingsAndOpts() throw channelProviderBuilder.setAttemptDirectPathXds(); } + if (attemptDirectPathXdsOverInterconnect) { + com.google.api.core.ApiFunction + existingConfigurator = channelProviderBuilder.getChannelConfigurator(); + channelProviderBuilder.setChannelConfigurator( + channelBuilder -> { + if (existingConfigurator != null) { + channelBuilder = existingConfigurator.apply(channelBuilder); + } + return channelBuilder.overrideAuthority("storage.googleapis.com"); + }); + } + if (scheme.equals("http")) { channelProviderBuilder.setChannelConfigurator(ManagedChannelBuilder::usePlaintext); } @@ -428,6 +461,7 @@ public int hashCode() { retryAlgorithmManager, terminationAwaitDuration, attemptDirectPath, + attemptDirectPathXdsOverInterconnect, enableGrpcClientMetrics, grpcInterceptorProvider, blobWriteSessionConfig, @@ -445,6 +479,7 @@ public boolean equals(Object o) { } GrpcStorageOptions that = (GrpcStorageOptions) o; return attemptDirectPath == that.attemptDirectPath + && attemptDirectPathXdsOverInterconnect == that.attemptDirectPathXdsOverInterconnect && enableGrpcClientMetrics == that.enableGrpcClientMetrics && Objects.equals(retryAlgorithmManager, that.retryAlgorithmManager) && Objects.equals(terminationAwaitDuration, that.terminationAwaitDuration) @@ -494,6 +529,7 @@ public static final class Builder extends StorageOptions.Builder { private StorageRetryStrategy storageRetryStrategy; private java.time.Duration terminationAwaitDuration; private boolean attemptDirectPath = GrpcStorageDefaults.INSTANCE.isAttemptDirectPath(); + private boolean attemptDirectPathXdsOverInterconnect = false; private boolean enableGrpcClientMetrics = GrpcStorageDefaults.INSTANCE.isEnableGrpcClientMetrics(); private GrpcInterceptorProvider grpcInterceptorProvider = @@ -512,6 +548,7 @@ public static final class Builder extends StorageOptions.Builder { this.storageRetryStrategy = gso.getRetryAlgorithmManager().retryStrategy; this.terminationAwaitDuration = gso.getTerminationAwaitDuration(); this.attemptDirectPath = gso.attemptDirectPath; + this.attemptDirectPathXdsOverInterconnect = gso.attemptDirectPathXdsOverInterconnect; this.enableGrpcClientMetrics = gso.enableGrpcClientMetrics; this.grpcInterceptorProvider = gso.grpcInterceptorProvider; this.blobWriteSessionConfig = gso.blobWriteSessionConfig; @@ -556,6 +593,18 @@ public GrpcStorageOptions.Builder setAttemptDirectPath(boolean attemptDirectPath return this; } + /** + * Option for whether this client should attempt to use DirectPath over Interconnect (on-premise + * xDS name resolution). + * + * @since 2.45.0 + */ + public GrpcStorageOptions.Builder setAttemptDirectPathXdsOverInterconnect( + boolean attemptDirectPathXdsOverInterconnect) { + this.attemptDirectPathXdsOverInterconnect = attemptDirectPathXdsOverInterconnect; + return this; + } + /** * Option for whether this client should emit internal gRPC client internal metrics to Cloud * Monitoring. To disable metric reporting, set this to false. True by default. Emitting metrics diff --git a/java-storage/google-cloud-storage/src/test/java/com/google/cloud/storage/StorageOptionsBuilderTest.java b/java-storage/google-cloud-storage/src/test/java/com/google/cloud/storage/StorageOptionsBuilderTest.java index 240040519635..ec979b348803 100644 --- a/java-storage/google-cloud-storage/src/test/java/com/google/cloud/storage/StorageOptionsBuilderTest.java +++ b/java-storage/google-cloud-storage/src/test/java/com/google/cloud/storage/StorageOptionsBuilderTest.java @@ -69,6 +69,37 @@ public void grpc() throws Exception { () -> assertThat(rebuilt.hashCode()).isEqualTo(base.hashCode())); } + @Test + public void grpc_attemptDirectPathXdsOverInterconnect() throws Exception { + com.google.auth.Credentials mockCreds = com.google.cloud.NoCredentials.getInstance(); + GrpcStorageOptions options = + GrpcStorageOptions.grpc() + .setCredentials(mockCreds) + .setAttemptDirectPathXdsOverInterconnect(true) + .build(); + + GrpcStorageOptions rebuilt = options.toBuilder().build(); + assertAll( + () -> assertThat(rebuilt).isEqualTo(options), + () -> assertThat(rebuilt.hashCode()).isEqualTo(options.hashCode())); + + com.google.storage.v2.StorageSettings settings = options.getStorageSettings(); + assertThat(settings.getEndpoint()).isEqualTo("storage-direct.googleapis.com:443"); + + com.google.api.gax.rpc.TransportChannelProvider tcp = settings.getTransportChannelProvider(); + assertThat(tcp).isInstanceOf(com.google.api.gax.grpc.InstantiatingGrpcChannelProvider.class); + com.google.api.gax.grpc.InstantiatingGrpcChannelProvider provider = + (com.google.api.gax.grpc.InstantiatingGrpcChannelProvider) tcp; + + // Verify attemptDirectPathXdsOverInterconnect is set to true on the provider using reflection + java.lang.reflect.Field field = + com.google.api.gax.grpc.InstantiatingGrpcChannelProvider.class.getDeclaredField( + "attemptDirectPathXdsOverInterconnect"); + field.setAccessible(true); + Boolean value = (Boolean) field.get(provider); + assertThat(value).isTrue(); + } + @Test public void useJwtAccessWithScope_defaultsToFalse() { HttpStorageOptions httpOptions = HttpStorageOptions.http().build(); diff --git a/java-storage/google-cloud-storage/src/test/java/com/google/cloud/storage/it/ITStorageOptionsTest.java b/java-storage/google-cloud-storage/src/test/java/com/google/cloud/storage/it/ITStorageOptionsTest.java index 0d8114a7fb2d..f33ae01c45c4 100644 --- a/java-storage/google-cloud-storage/src/test/java/com/google/cloud/storage/it/ITStorageOptionsTest.java +++ b/java-storage/google-cloud-storage/src/test/java/com/google/cloud/storage/it/ITStorageOptionsTest.java @@ -84,6 +84,32 @@ public void clientShouldConstructCleanly_directPath() throws Exception { doTest(options); } + @Test + public void clientShouldConstructCleanly_directPathXdsOverInterconnect() throws Exception { + StorageOptions options = + StorageOptions.grpc() + .setCredentials(credentials) + .setAttemptDirectPathXdsOverInterconnect(true) + .setEnableGrpcClientMetrics(false) + .build(); + doTest(options); + } + + @Test + public void clientShouldWork_directPathXdsOverInterconnect() throws Exception { + assumeTrue( + "Environment cannot resolve storage.direct.googleapis.com", canResolveDirectPathAddress()); + StorageOptions options = + StorageOptions.grpc() + .setCredentials(credentials) + .setAttemptDirectPathXdsOverInterconnect(true) + .setEnableGrpcClientMetrics(false) + .build(); + try (Storage storage = options.getService()) { + storage.list(Storage.BucketListOption.pageSize(1)); + } + } + @Test public void lackOfProjectIdDoesNotPreventConstruction_http() throws Exception { StorageOptions options = StorageOptions.http().setCredentials(credentials).build(); @@ -105,4 +131,13 @@ private static void doTest(StorageOptions options) throws Exception { //noinspection EmptyTryBlock try (Storage ignore = options.getService()) {} } + + private static boolean canResolveDirectPathAddress() { + try { + java.net.InetAddress.getAllByName("storage.direct.googleapis.com"); + return true; + } catch (java.net.UnknownHostException e) { + return false; + } + } } diff --git a/sdk-platform-java/gax-java/gax-grpc/src/main/java/com/google/api/gax/grpc/InstantiatingGrpcChannelProvider.java b/sdk-platform-java/gax-java/gax-grpc/src/main/java/com/google/api/gax/grpc/InstantiatingGrpcChannelProvider.java index ac42396f006a..d38c5dd66a68 100644 --- a/sdk-platform-java/gax-java/gax-grpc/src/main/java/com/google/api/gax/grpc/InstantiatingGrpcChannelProvider.java +++ b/sdk-platform-java/gax-java/gax-grpc/src/main/java/com/google/api/gax/grpc/InstantiatingGrpcChannelProvider.java @@ -147,13 +147,14 @@ public final class InstantiatingGrpcChannelProvider implements TransportChannelP private final java.time.@Nullable Duration keepAliveTimeout; private final @Nullable Boolean keepAliveWithoutCalls; private final ChannelPoolSettings channelPoolSettings; - private final @Nullable Credentials credentials; - private final @Nullable CallCredentials altsCallCredentials; - private final @Nullable CallCredentials mtlsS2ACallCredentials; - private final @Nullable ChannelPrimer channelPrimer; - private final @Nullable Boolean attemptDirectPath; - private final @Nullable Boolean attemptDirectPathXds; - private final @Nullable Boolean allowNonDefaultServiceAccount; + @Nullable private final Credentials credentials; + @Nullable private final CallCredentials altsCallCredentials; + @Nullable private final CallCredentials mtlsS2ACallCredentials; + @Nullable private final ChannelPrimer channelPrimer; + @Nullable private final Boolean attemptDirectPath; + @Nullable private final Boolean attemptDirectPathXds; + @Nullable private final Boolean attemptDirectPathXdsOverInterconnect; + @Nullable private final Boolean allowNonDefaultServiceAccount; @VisibleForTesting final ImmutableMap directPathServiceConfig; private final @Nullable MtlsProvider mtlsProvider; private final CertificateBasedAccess certificateBasedAccess; @@ -236,6 +237,7 @@ private InstantiatingGrpcChannelProvider(Builder builder) { this.channelPrimer = builder.channelPrimer; this.attemptDirectPath = builder.attemptDirectPath; this.attemptDirectPathXds = builder.attemptDirectPathXds; + this.attemptDirectPathXdsOverInterconnect = builder.attemptDirectPathXdsOverInterconnect; this.allowNonDefaultServiceAccount = builder.allowNonDefaultServiceAccount; this.directPathServiceConfig = builder.directPathServiceConfig == null @@ -433,6 +435,10 @@ private boolean isDirectPathXdsEnabledViaEnv() { return Boolean.parseBoolean(directPathXdsEnv); } + private boolean isAttemptDirectPathXdsOverInterconnect() { + return Boolean.TRUE.equals(attemptDirectPathXdsOverInterconnect); + } + /** * This method tells if Direct Path xDS was enabled. There are two ways of enabling it: via * environment variable (by setting GOOGLE_CLOUD_ENABLE_DIRECT_PATH_XDS=true) or when building @@ -486,7 +492,7 @@ else if (isDirectPathXdsEnabledViaBuilderOption()) { + " ."); } // Case 4: not running on GCE - if (!isOnComputeEngine()) { + if (!isOnComputeEngine() && !isAttemptDirectPathXdsOverInterconnect()) { LOG.log( level, "DirectPath is misconfigured. DirectPath is only available in a GCE environment."); @@ -500,6 +506,10 @@ boolean isCredentialDirectPathCompatible() { if (needsCredentials()) { return false; } + // xDS over Interconnect is designed to work on-premise using arbitrary service credentials. + if (isAttemptDirectPathXdsOverInterconnect()) { + return true; + } if (allowNonDefaultServiceAccount != null && allowNonDefaultServiceAccount) { return true; } @@ -707,75 +717,108 @@ ChannelCredentials createS2ASecuredChannelCredentials() { return s2aChannelCredentials; } - @InternalApi("For internal use by google-cloud-java clients only") - public ManagedChannelBuilder createChannelBuilder() throws IOException { - int colon = endpoint.lastIndexOf(':'); - if (colon < 0) { - throw new IllegalStateException("invalid endpoint - should have been validated: " + endpoint); + private ChannelCredentials getGoogleDefaultChannelCredentials() { + GoogleDefaultChannelCredentials.Builder builder = GoogleDefaultChannelCredentials.newBuilder(); + if (credentials != null) { + builder.callCredentials(MoreCallCredentials.from(credentials)); + } + if (altsCallCredentials != null) { + builder.altsCallCredentials(altsCallCredentials); } - int port = Integer.parseInt(endpoint.substring(colon + 1)); - String serviceAddress = endpoint.substring(0, colon); + return builder.build(); + } + @InternalApi("For internal use by google-cloud-java clients only") + public ManagedChannelBuilder createChannelBuilder() throws IOException { ManagedChannelBuilder builder; - - // Check DirectPath traffic. boolean useDirectPathXds = false; - if (canUseDirectPath()) { - CallCredentials callCreds = MoreCallCredentials.from(credentials); - // altsCallCredentials may be null and GoogleDefaultChannelCredentials - // will solely use callCreds. Otherwise it uses altsCallCredentials - // for DirectPath connections and callCreds for CloudPath fallbacks. - ChannelCredentials channelCreds = - GoogleDefaultChannelCredentials.newBuilder() - .callCredentials(callCreds) - .altsCallCredentials(altsCallCredentials) - .build(); - useDirectPathXds = isDirectPathXdsEnabled(); - if (useDirectPathXds) { - // google-c2p: CloudToProd(C2P) Directpath. This scheme is defined in - // io.grpc.googleapis.GoogleCloudToProdNameResolverProvider. - // This resolver target must not have a port number. - builder = Grpc.newChannelBuilder("google-c2p:///" + serviceAddress, channelCreds); - } else { - builder = Grpc.newChannelBuilderForAddress(serviceAddress, port, channelCreds); - builder.defaultServiceConfig(directPathServiceConfig); + String resolvedTarget; + + // If the endpoint is already a custom URI scheme target (e.g. google-c2p:///), use it directly. + if (endpoint.contains(":///")) { + ChannelCredentials channelCreds = getGoogleDefaultChannelCredentials(); + builder = Grpc.newChannelBuilder(endpoint, channelCreds); + resolvedTarget = endpoint; + if (endpoint.startsWith("google-c2p:///")) { + useDirectPathXds = true; + // Set default keepAliveTime and keepAliveTimeout when directpath environment is enabled. + // Will be overridden by user defined values if any. + builder.keepAliveTime(DIRECT_PATH_KEEP_ALIVE_TIME_SECONDS, TimeUnit.SECONDS); + builder.keepAliveTimeout(DIRECT_PATH_KEEP_ALIVE_TIMEOUT_SECONDS, TimeUnit.SECONDS); } - // Set default keepAliveTime and keepAliveTimeout when directpath environment is enabled. - // Will be overridden by user defined values if any. - builder.keepAliveTime(DIRECT_PATH_KEEP_ALIVE_TIME_SECONDS, TimeUnit.SECONDS); - builder.keepAliveTimeout(DIRECT_PATH_KEEP_ALIVE_TIMEOUT_SECONDS, TimeUnit.SECONDS); } else { - ChannelCredentials channelCredentials; - try { - // Try and create credentials via DCA. See https://google.aip.dev/auth/4114. - channelCredentials = createMtlsChannelCredentials(); - } catch (GeneralSecurityException e) { - throw new IOException(e); + int colon = endpoint.lastIndexOf(':'); + if (colon < 0) { + throw new IllegalStateException( + "invalid endpoint - should have been validated: " + endpoint); } - if (channelCredentials != null) { - // Create the channel using channel credentials created via DCA. - builder = Grpc.newChannelBuilder(endpoint, channelCredentials); + int port = Integer.parseInt(endpoint.substring(colon + 1)); + String serviceAddress = endpoint.substring(0, colon); + + // Check DirectPath traffic. + if (canUseDirectPath()) { + ChannelCredentials channelCreds = getGoogleDefaultChannelCredentials(); + useDirectPathXds = isDirectPathXdsEnabled() || isAttemptDirectPathXdsOverInterconnect(); + if (useDirectPathXds) { + // google-c2p: CloudToProd(C2P) Directpath. This scheme is defined in + // io.grpc.googleapis.GoogleCloudToProdNameResolverProvider. + // This resolver target must not have a port number. + String target = "google-c2p:///" + serviceAddress; + if (isAttemptDirectPathXdsOverInterconnect()) { + target += "?force-xds"; + } + builder = Grpc.newChannelBuilder(target, channelCreds); + resolvedTarget = target; + } else { + builder = Grpc.newChannelBuilderForAddress(serviceAddress, port, channelCreds); + builder.defaultServiceConfig(directPathServiceConfig); + resolvedTarget = serviceAddress + ":" + port; + } + // Set default keepAliveTime and keepAliveTimeout when directpath environment is enabled. + // Will be overridden by user defined values if any. + builder.keepAliveTime(DIRECT_PATH_KEEP_ALIVE_TIME_SECONDS, TimeUnit.SECONDS); + builder.keepAliveTimeout(DIRECT_PATH_KEEP_ALIVE_TIMEOUT_SECONDS, TimeUnit.SECONDS); } else { - // Could not create channel credentials via DCA. In accordance with - // https://google.aip.dev/auth/4115, if credentials not available through - // DCA, try mTLS with credentials held by the S2A (Secure Session Agent). - if (useS2A) { - channelCredentials = createS2ASecuredChannelCredentials(); + if (isDirectPathEnabled() || isAttemptDirectPathXdsOverInterconnect()) { + LOG.log( + Level.WARNING, + "DirectPath was requested but is not available. Falling back to CloudPath."); + } + ChannelCredentials channelCredentials; + try { + // Try and create credentials via DCA. See https://google.aip.dev/auth/4114. + channelCredentials = createMtlsChannelCredentials(); + } catch (GeneralSecurityException e) { + throw new IOException(e); } if (channelCredentials != null) { - // Create the channel using S2A-secured channel credentials. - if (mtlsS2ACallCredentials != null) { - // Set {@code mtlsS2ACallCredentials} to be per-RPC call credentials, - // which will be used to fetch MTLS_S2A hard bound tokens from the metdata server. - channelCredentials = - CompositeChannelCredentials.create(channelCredentials, mtlsS2ACallCredentials); - } - // Connect to the MTLS endpoint when using S2A because S2A is used to perform an MTLS - // handshake. - builder = Grpc.newChannelBuilder(mtlsEndpoint, channelCredentials); + // Create the channel using channel credentials created via DCA. + builder = Grpc.newChannelBuilder(endpoint, channelCredentials); + resolvedTarget = endpoint; } else { - // Use default if we cannot initialize channel credentials via DCA or S2A. - builder = ManagedChannelBuilder.forAddress(serviceAddress, port); + // Could not create channel credentials via DCA. In accordance with + // https://google.aip.dev/auth/4115, if credentials not available through + // DCA, try mTLS with credentials held by the S2A (Secure Session Agent). + if (useS2A) { + channelCredentials = createS2ASecuredChannelCredentials(); + } + if (channelCredentials != null) { + // Create the channel using S2A-secured channel credentials. + if (mtlsS2ACallCredentials != null) { + // Set {@code mtlsS2ACallCredentials} to be per-RPC call credentials, + // which will be used to fetch MTLS_S2A hard bound tokens from the metdata server. + channelCredentials = + CompositeChannelCredentials.create(channelCredentials, mtlsS2ACallCredentials); + } + // Connect to the MTLS endpoint when using S2A because S2A is used to perform an MTLS + // handshake. + builder = Grpc.newChannelBuilder(mtlsEndpoint, channelCredentials); + resolvedTarget = mtlsEndpoint; + } else { + // Use default if we cannot initialize channel credentials via DCA or S2A. + builder = ManagedChannelBuilder.forAddress(serviceAddress, port); + resolvedTarget = serviceAddress + ":" + port; + } } } } @@ -784,6 +827,7 @@ public ManagedChannelBuilder createChannelBuilder() throws IOException { // See https://github.com/googleapis/gapic-generator/issues/2816 builder.disableServiceConfigLookUp(); } + LOG.log(Level.INFO, "Channel initialized with target {0}", resolvedTarget); return builder; } @@ -866,13 +910,17 @@ private void removeApiKeyCredentialDuplicateHeaders() { * settings and a few other configurations/settings must also be valid for the request to go * through DirectPath. * - *

Checks: 1. Credentials are compatible 2.Running on Compute Engine 3. Universe Domain is - * configured to for the Google Default Universe + *

Checks: 1. Credentials are compatible 2. Running on Compute Engine (bypassed if + * attemptDirectPathXdsOverInterconnect is enabled) 3. Universe Domain is configured for the + * Google Default Universe * * @return if DirectPath is enabled for the client AND if the configurations are valid */ @InternalApi public boolean canUseDirectPath() { + if (isAttemptDirectPathXdsOverInterconnect()) { + return isDirectPathEnabled() && canUseDirectPathWithUniverseDomain(); + } return isDirectPathEnabled() && isCredentialDirectPathCompatible() && isOnComputeEngine() @@ -966,10 +1014,11 @@ public static final class Builder { private @Nullable CallCredentials mtlsS2ACallCredentials; private @Nullable ChannelPrimer channelPrimer; private ChannelPoolSettings channelPoolSettings; - private @Nullable Boolean attemptDirectPath; - private @Nullable Boolean attemptDirectPathXds; - private @Nullable Boolean allowNonDefaultServiceAccount; - private @Nullable ImmutableMap directPathServiceConfig; + @Nullable private Boolean attemptDirectPath; + @Nullable private Boolean attemptDirectPathXds; + @Nullable private Boolean attemptDirectPathXdsOverInterconnect; + @Nullable private Boolean allowNonDefaultServiceAccount; + @Nullable private ImmutableMap directPathServiceConfig; private List allowedHardBoundTokenTypes; private Builder() { @@ -1001,6 +1050,7 @@ private Builder(InstantiatingGrpcChannelProvider provider) { this.channelPoolSettings = provider.channelPoolSettings; this.attemptDirectPath = provider.attemptDirectPath; this.attemptDirectPathXds = provider.attemptDirectPathXds; + this.attemptDirectPathXdsOverInterconnect = provider.attemptDirectPathXdsOverInterconnect; this.allowNonDefaultServiceAccount = provider.allowNonDefaultServiceAccount; this.allowedHardBoundTokenTypes = provider.allowedHardBoundTokenTypes; this.directPathServiceConfig = provider.directPathServiceConfig; @@ -1308,6 +1358,14 @@ public Builder setAttemptDirectPathXds() { return this; } + /** Use DirectPath xDS over Interconnect. Bypasses GCP GCE environment checks. */ + @InternalApi("For internal use by google-cloud-java clients only") + public Builder setAttemptDirectPathXdsOverInterconnect( + boolean attemptDirectPathXdsOverInterconnect) { + this.attemptDirectPathXdsOverInterconnect = attemptDirectPathXdsOverInterconnect; + return this; + } + @VisibleForTesting Builder setEnvProvider(EnvironmentProvider envProvider) { this.envProvider = envProvider; @@ -1462,11 +1520,22 @@ public Builder setChannelConfigurator( } private static void validateEndpoint(String endpoint) { + if (endpoint.contains(":///")) { + try { + java.net.URI.create(endpoint); + return; + } catch (IllegalArgumentException e) { + throw new IllegalArgumentException("invalid endpoint URI: " + endpoint, e); + } + } int colon = endpoint.lastIndexOf(':'); if (colon < 0) { - throw new IllegalArgumentException( - String.format("invalid endpoint, expecting \":\"")); + throw new IllegalArgumentException("invalid endpoint, expecting \":\""); + } + try { + Integer.parseInt(endpoint.substring(colon + 1)); + } catch (NumberFormatException e) { + throw new IllegalArgumentException("invalid endpoint, expecting \":\"", e); } - Integer.parseInt(endpoint.substring(colon + 1)); } } diff --git a/sdk-platform-java/gax-java/gax-grpc/src/test/java/com/google/api/gax/grpc/GrpcLoggingInterceptorTest.java b/sdk-platform-java/gax-java/gax-grpc/src/test/java/com/google/api/gax/grpc/GrpcLoggingInterceptorTest.java index fad4cd468b95..c93db599d575 100644 --- a/sdk-platform-java/gax-java/gax-grpc/src/test/java/com/google/api/gax/grpc/GrpcLoggingInterceptorTest.java +++ b/sdk-platform-java/gax-java/gax-grpc/src/test/java/com/google/api/gax/grpc/GrpcLoggingInterceptorTest.java @@ -32,7 +32,6 @@ import static org.mockito.ArgumentMatchers.any; import static org.mockito.Mockito.mock; -import static org.mockito.Mockito.spy; import static org.mockito.Mockito.verify; import static org.mockito.Mockito.when; @@ -83,7 +82,7 @@ void testInterceptor_basic() { void testInterceptor_responseListener() { when(channel.newCall(Mockito.>any(), any(CallOptions.class))) .thenReturn(call); - GrpcLoggingInterceptor interceptor = spy(new GrpcLoggingInterceptor()); + GrpcLoggingInterceptor interceptor = new GrpcLoggingInterceptor(); Channel intercepted = ClientInterceptors.intercept(channel, interceptor); @SuppressWarnings("unchecked") ClientCall.Listener listener = mock(ClientCall.Listener.class); diff --git a/sdk-platform-java/gax-java/gax-grpc/src/test/java/com/google/api/gax/grpc/InstantiatingGrpcChannelProviderTest.java b/sdk-platform-java/gax-java/gax-grpc/src/test/java/com/google/api/gax/grpc/InstantiatingGrpcChannelProviderTest.java index be0365866615..5f92259b65e8 100644 --- a/sdk-platform-java/gax-java/gax-grpc/src/test/java/com/google/api/gax/grpc/InstantiatingGrpcChannelProviderTest.java +++ b/sdk-platform-java/gax-java/gax-grpc/src/test/java/com/google/api/gax/grpc/InstantiatingGrpcChannelProviderTest.java @@ -37,6 +37,8 @@ import static org.junit.jupiter.api.Assertions.assertNull; import static org.junit.jupiter.api.Assertions.assertThrows; import static org.mockito.Mockito.mock; +import static org.mockito.Mockito.when; +import static org.mockito.Mockito.withSettings; import com.google.api.core.ApiFunction; import com.google.api.gax.grpc.InstantiatingGrpcChannelProvider.Builder; @@ -129,17 +131,41 @@ void testEndpoint() { } @Test - void testEndpointNoPort() { + void testEndpointCustomUriScheme() { + InstantiatingGrpcChannelProvider.Builder builder = + InstantiatingGrpcChannelProvider.newBuilder() + .setEndpoint("google-c2p:///storage.googleapis.com"); + assertEquals("google-c2p:///storage.googleapis.com", builder.getEndpoint()); + } + + @Test + void testEndpointCustomUriSchemeInvalid() { + InstantiatingGrpcChannelProvider.Builder builder = + InstantiatingGrpcChannelProvider.newBuilder(); assertThrows( - IllegalArgumentException.class, - () -> InstantiatingGrpcChannelProvider.newBuilder().setEndpoint("localhost")); + IllegalArgumentException.class, () -> builder.setEndpoint("google-c2p://:invalid")); } @Test - void testEndpointBadPort() { + void testEndpointCustomUriSchemeMalformed() { + InstantiatingGrpcChannelProvider.Builder builder = + InstantiatingGrpcChannelProvider.newBuilder(); assertThrows( - IllegalArgumentException.class, - () -> InstantiatingGrpcChannelProvider.newBuilder().setEndpoint("localhost:abcd")); + IllegalArgumentException.class, () -> builder.setEndpoint("google-c2p:///foo bar")); + } + + @Test + void testEndpointNoPort() { + InstantiatingGrpcChannelProvider.Builder builder = + InstantiatingGrpcChannelProvider.newBuilder(); + assertThrows(IllegalArgumentException.class, () -> builder.setEndpoint("localhost")); + } + + @Test + void testEndpointBadPort() { + InstantiatingGrpcChannelProvider.Builder builder = + InstantiatingGrpcChannelProvider.newBuilder(); + assertThrows(IllegalArgumentException.class, () -> builder.setEndpoint("localhost:abcd")); } @Test @@ -707,15 +733,19 @@ void testLogDirectPathMisconfigWrongCredential() throws Exception { FakeLogHandler logHandler = new FakeLogHandler(); InstantiatingGrpcChannelProvider.LOG.setLevel(Level.FINE); InstantiatingGrpcChannelProvider.LOG.addHandler(logHandler); + EnvironmentProvider envProvider = + mock(EnvironmentProvider.class, withSettings().withoutAnnotations()); + when(envProvider.getenv(InstantiatingGrpcChannelProvider.DIRECT_PATH_ENV_DISABLE_DIRECT_PATH)) + .thenReturn("false"); InstantiatingGrpcChannelProvider provider = InstantiatingGrpcChannelProvider.newBuilder() .setAttemptDirectPathXds() .setAttemptDirectPath(true) - .setHeaderProvider( - mock(HeaderProvider.class, Mockito.withSettings().withoutAnnotations())) + .setHeaderProvider(mock(HeaderProvider.class, withSettings().withoutAnnotations())) .setExecutor(mock(Executor.class)) .setEndpoint(DEFAULT_ENDPOINT) .setCertificateBasedAccess(certificateBasedAccess) + .setEnvProvider(envProvider) .build(); TransportChannel transportChannel = provider.getTransportChannel(); @@ -735,16 +765,20 @@ void testLogDirectPathMisconfigNotOnGCE() throws Exception { FakeLogHandler logHandler = new FakeLogHandler(); InstantiatingGrpcChannelProvider.LOG.setLevel(Level.FINE); InstantiatingGrpcChannelProvider.LOG.addHandler(logHandler); + EnvironmentProvider envProvider = + mock(EnvironmentProvider.class, withSettings().withoutAnnotations()); + when(envProvider.getenv(InstantiatingGrpcChannelProvider.DIRECT_PATH_ENV_DISABLE_DIRECT_PATH)) + .thenReturn("false"); InstantiatingGrpcChannelProvider provider = InstantiatingGrpcChannelProvider.newBuilder() .setAttemptDirectPathXds() .setAttemptDirectPath(true) .setAllowNonDefaultServiceAccount(true) - .setHeaderProvider( - mock(HeaderProvider.class, Mockito.withSettings().withoutAnnotations())) + .setHeaderProvider(mock(HeaderProvider.class, withSettings().withoutAnnotations())) .setExecutor(mock(Executor.class)) .setEndpoint(DEFAULT_ENDPOINT) .setCertificateBasedAccess(certificateBasedAccess) + .setEnvProvider(envProvider) .build(); TransportChannel transportChannel = provider.getTransportChannel(); @@ -924,6 +958,268 @@ public void canUseDirectPath_nonComputeCredentials() { Truth.assertThat(provider.canUseDirectPath()).isFalse(); } + @Test + public void canUseDirectPath_attemptDirectPathXdsOverInterconnect_bypassesGceCheck() { + System.setProperty("os.name", "Not Linux"); + EnvironmentProvider envProvider = + mock(EnvironmentProvider.class, withSettings().withoutAnnotations()); + when(envProvider.getenv(InstantiatingGrpcChannelProvider.DIRECT_PATH_ENV_DISABLE_DIRECT_PATH)) + .thenReturn("false"); + Credentials credentials = mock(Credentials.class, withSettings().withoutAnnotations()); + InstantiatingGrpcChannelProvider.Builder builder = + InstantiatingGrpcChannelProvider.newBuilder() + .setCertificateBasedAccess(certificateBasedAccess) + .setAttemptDirectPath(true) + .setAttemptDirectPathXdsOverInterconnect(true) + .setCredentials(credentials) + .setEndpoint(DEFAULT_ENDPOINT) + .setEnvProvider(envProvider); + InstantiatingGrpcChannelProvider provider = + new InstantiatingGrpcChannelProvider(builder, "not-gce-product-name"); + Truth.assertThat(provider.canUseDirectPath()).isTrue(); + } + + @Test + public void + canUseDirectPath_attemptDirectPathXdsOverInterconnect_directPathDisabled_returnsFalse() { + System.setProperty("os.name", "Not Linux"); + EnvironmentProvider envProvider = + mock(EnvironmentProvider.class, withSettings().withoutAnnotations()); + when(envProvider.getenv(InstantiatingGrpcChannelProvider.DIRECT_PATH_ENV_DISABLE_DIRECT_PATH)) + .thenReturn("false"); + Credentials credentials = mock(Credentials.class, withSettings().withoutAnnotations()); + InstantiatingGrpcChannelProvider.Builder builder = + InstantiatingGrpcChannelProvider.newBuilder() + .setCertificateBasedAccess(certificateBasedAccess) + .setAttemptDirectPath(false) + .setAttemptDirectPathXdsOverInterconnect(true) + .setCredentials(credentials) + .setEndpoint(DEFAULT_ENDPOINT) + .setEnvProvider(envProvider); + InstantiatingGrpcChannelProvider provider = + new InstantiatingGrpcChannelProvider(builder, "not-gce-product-name"); + Truth.assertThat(provider.canUseDirectPath()).isFalse(); + } + + @Test + public void + canUseDirectPath_attemptDirectPathXdsOverInterconnect_nonGDUUniverseDomain_returnsFalse() { + System.setProperty("os.name", "Not Linux"); + EnvironmentProvider envProvider = + mock(EnvironmentProvider.class, withSettings().withoutAnnotations()); + when(envProvider.getenv(InstantiatingGrpcChannelProvider.DIRECT_PATH_ENV_DISABLE_DIRECT_PATH)) + .thenReturn("false"); + Credentials credentials = mock(Credentials.class, withSettings().withoutAnnotations()); + InstantiatingGrpcChannelProvider.Builder builder = + InstantiatingGrpcChannelProvider.newBuilder() + .setCertificateBasedAccess(certificateBasedAccess) + .setAttemptDirectPath(true) + .setAttemptDirectPathXdsOverInterconnect(true) + .setCredentials(credentials) + .setEndpoint("test.random.com:443") + .setEnvProvider(envProvider); + InstantiatingGrpcChannelProvider provider = + new InstantiatingGrpcChannelProvider(builder, "not-gce-product-name"); + Truth.assertThat(provider.canUseDirectPath()).isFalse(); + } + + @Test + public void getTransportChannel_customResolverTargetUri_nonGoogleC2p_usesUriDirectly() + throws IOException, InterruptedException { + System.setProperty("os.name", "Not Linux"); + EnvironmentProvider envProvider = + mock(EnvironmentProvider.class, withSettings().withoutAnnotations()); + when(envProvider.getenv(InstantiatingGrpcChannelProvider.DIRECT_PATH_ENV_DISABLE_DIRECT_PATH)) + .thenReturn("false"); + Credentials credentials = mock(Credentials.class, withSettings().withoutAnnotations()); + final java.util.concurrent.atomic.AtomicReference capturedTarget = + new java.util.concurrent.atomic.AtomicReference<>(); + ApiFunction channelConfigurator = + channelBuilder -> { + capturedTarget.set(extractTargetFromChannelBuilder(channelBuilder)); + return channelBuilder; + }; + + InstantiatingGrpcChannelProvider.Builder builder = + InstantiatingGrpcChannelProvider.newBuilder() + .setCertificateBasedAccess(certificateBasedAccess) + .setCredentials(credentials) + .setEndpoint("dns:///localhost:8080") + .setEnvProvider(envProvider) + .setChannelConfigurator(channelConfigurator); + + InstantiatingGrpcChannelProvider provider = + new InstantiatingGrpcChannelProvider(builder, "not-gce-product-name"); + + InstantiatingGrpcChannelProvider configuredProvider = + (InstantiatingGrpcChannelProvider) + provider + .withHeaders(Collections.emptyMap()) + .withEndpoint("dns:///localhost:8080"); + + TransportChannel transportChannel = configuredProvider.getTransportChannel(); + transportChannel.shutdownNow(); + transportChannel.awaitTermination(5, TimeUnit.SECONDS); + + Truth.assertThat(capturedTarget.get()).isEqualTo("dns:///localhost:8080"); + } + + @Test + void testLogDirectPathFallbackWarning() throws Exception { + FakeLogHandler logHandler = new FakeLogHandler(); + InstantiatingGrpcChannelProvider.LOG.setLevel(Level.FINE); + InstantiatingGrpcChannelProvider.LOG.addHandler(logHandler); + EnvironmentProvider envProvider = + mock(EnvironmentProvider.class, withSettings().withoutAnnotations()); + when(envProvider.getenv(InstantiatingGrpcChannelProvider.DIRECT_PATH_ENV_DISABLE_DIRECT_PATH)) + .thenReturn("false"); + InstantiatingGrpcChannelProvider provider = + InstantiatingGrpcChannelProvider.newBuilder() + .setAttemptDirectPath(true) + .setHeaderProvider(mock(HeaderProvider.class, withSettings().withoutAnnotations())) + .setExecutor(mock(Executor.class)) + .setEndpoint(DEFAULT_ENDPOINT) + .setCertificateBasedAccess(certificateBasedAccess) + .setEnvProvider(envProvider) + .build(); + + TransportChannel transportChannel = provider.getTransportChannel(); + + assertThat(logHandler.getAllMessages()) + .contains("DirectPath was requested but is not available. Falling back to CloudPath."); + InstantiatingGrpcChannelProvider.LOG.removeHandler(logHandler); + + transportChannel.close(); + transportChannel.awaitTermination(10, TimeUnit.SECONDS); + } + + @Test + public void getTransportChannel_attemptDirectPathXdsOverInterconnect_usesForceXdsTarget() + throws IOException, InterruptedException { + System.setProperty("os.name", "Not Linux"); + EnvironmentProvider envProvider = + mock(EnvironmentProvider.class, withSettings().withoutAnnotations()); + when(envProvider.getenv(InstantiatingGrpcChannelProvider.DIRECT_PATH_ENV_DISABLE_DIRECT_PATH)) + .thenReturn("false"); + Credentials credentials = mock(Credentials.class, withSettings().withoutAnnotations()); + final java.util.concurrent.atomic.AtomicReference capturedTarget = + new java.util.concurrent.atomic.AtomicReference<>(); + ApiFunction channelConfigurator = + channelBuilder -> { + capturedTarget.set(extractTargetFromChannelBuilder(channelBuilder)); + return channelBuilder; + }; + + InstantiatingGrpcChannelProvider.Builder builder = + InstantiatingGrpcChannelProvider.newBuilder() + .setCertificateBasedAccess(certificateBasedAccess) + .setAttemptDirectPath(true) + .setAttemptDirectPathXdsOverInterconnect(true) + .setCredentials(credentials) + .setEndpoint("storage.googleapis.com:443") + .setEnvProvider(envProvider) + .setChannelConfigurator(channelConfigurator); + + InstantiatingGrpcChannelProvider provider = + new InstantiatingGrpcChannelProvider(builder, "not-gce-product-name"); + + InstantiatingGrpcChannelProvider configuredProvider = + (InstantiatingGrpcChannelProvider) + provider + .withHeaders(Collections.emptyMap()) + .withEndpoint("storage.googleapis.com:443"); + + TransportChannel transportChannel = configuredProvider.getTransportChannel(); + transportChannel.shutdownNow(); + transportChannel.awaitTermination(5, TimeUnit.SECONDS); + Truth.assertThat(capturedTarget.get()) + .contains("google-c2p:///storage.googleapis.com?force-xds"); + } + + @Test + public void getTransportChannel_attemptDirectPathXdsOverInterconnect_nullCredentials() + throws IOException, InterruptedException { + System.setProperty("os.name", "Not Linux"); + EnvironmentProvider envProvider = + mock(EnvironmentProvider.class, withSettings().withoutAnnotations()); + when(envProvider.getenv(InstantiatingGrpcChannelProvider.DIRECT_PATH_ENV_DISABLE_DIRECT_PATH)) + .thenReturn("false"); + final java.util.concurrent.atomic.AtomicReference capturedTarget = + new java.util.concurrent.atomic.AtomicReference<>(); + ApiFunction channelConfigurator = + channelBuilder -> { + capturedTarget.set(extractTargetFromChannelBuilder(channelBuilder)); + return channelBuilder; + }; + + InstantiatingGrpcChannelProvider.Builder builder = + InstantiatingGrpcChannelProvider.newBuilder() + .setCertificateBasedAccess(certificateBasedAccess) + .setAttemptDirectPath(true) + .setAttemptDirectPathXdsOverInterconnect(true) + .setCredentials(null) + .setEndpoint("storage.googleapis.com:443") + .setEnvProvider(envProvider) + .setChannelConfigurator(channelConfigurator); + + InstantiatingGrpcChannelProvider provider = + new InstantiatingGrpcChannelProvider(builder, "not-gce-product-name"); + + InstantiatingGrpcChannelProvider configuredProvider = + (InstantiatingGrpcChannelProvider) + provider + .withHeaders(Collections.emptyMap()) + .withEndpoint("storage.googleapis.com:443"); + + TransportChannel transportChannel = configuredProvider.getTransportChannel(); + transportChannel.shutdownNow(); + transportChannel.awaitTermination(5, TimeUnit.SECONDS); + Truth.assertThat(capturedTarget.get()) + .contains("google-c2p:///storage.googleapis.com?force-xds"); + } + + @Test + public void getTransportChannel_customResolverTargetUri_usesUriDirectly() + throws IOException, InterruptedException { + System.setProperty("os.name", "Not Linux"); + EnvironmentProvider envProvider = + mock(EnvironmentProvider.class, withSettings().withoutAnnotations()); + when(envProvider.getenv(InstantiatingGrpcChannelProvider.DIRECT_PATH_ENV_DISABLE_DIRECT_PATH)) + .thenReturn("false"); + Credentials credentials = mock(Credentials.class, withSettings().withoutAnnotations()); + final java.util.concurrent.atomic.AtomicReference capturedTarget = + new java.util.concurrent.atomic.AtomicReference<>(); + ApiFunction channelConfigurator = + channelBuilder -> { + capturedTarget.set(extractTargetFromChannelBuilder(channelBuilder)); + return channelBuilder; + }; + + InstantiatingGrpcChannelProvider.Builder builder = + InstantiatingGrpcChannelProvider.newBuilder() + .setCertificateBasedAccess(certificateBasedAccess) + .setCredentials(credentials) + .setEndpoint("google-c2p:///storage-direct.googleapis.com?force-xds") + .setEnvProvider(envProvider) + .setChannelConfigurator(channelConfigurator); + + InstantiatingGrpcChannelProvider provider = + new InstantiatingGrpcChannelProvider(builder, "not-gce-product-name"); + + InstantiatingGrpcChannelProvider configuredProvider = + (InstantiatingGrpcChannelProvider) + provider + .withHeaders(Collections.emptyMap()) + .withEndpoint("google-c2p:///storage-direct.googleapis.com?force-xds"); + + TransportChannel transportChannel = configuredProvider.getTransportChannel(); + transportChannel.shutdownNow(); + transportChannel.awaitTermination(5, TimeUnit.SECONDS); + + Truth.assertThat(capturedTarget.get()) + .isEqualTo("google-c2p:///storage-direct.googleapis.com?force-xds"); + } + @Test public void canUseDirectPath_isNotOnComputeEngine_invalidOsNameSystemProperty() { System.setProperty("os.name", "Not Linux"); @@ -1342,6 +1638,44 @@ void testSettingBackgroundExecutor() { assertThat(provider.getBackgroundExecutor()).isEqualTo(mockExecutor); } + private static String extractTargetFromChannelBuilder(ManagedChannelBuilder channelBuilder) { + try { + Class nettyBuilderClass = channelBuilder.getClass(); + java.lang.reflect.Field delegateField = null; + while (nettyBuilderClass != null && delegateField == null) { + try { + delegateField = nettyBuilderClass.getDeclaredField("delegate"); + } catch (NoSuchFieldException e) { + try { + delegateField = nettyBuilderClass.getDeclaredField("managedChannelImplBuilder"); + } catch (NoSuchFieldException e2) { + nettyBuilderClass = nettyBuilderClass.getSuperclass(); + } + } + } + if (delegateField != null) { + delegateField.setAccessible(true); + Object delegate = delegateField.get(channelBuilder); + Class delegateClass = delegate.getClass(); + java.lang.reflect.Field targetField = null; + while (delegateClass != null && targetField == null) { + try { + targetField = delegateClass.getDeclaredField("target"); + } catch (NoSuchFieldException e) { + delegateClass = delegateClass.getSuperclass(); + } + } + if (targetField != null) { + targetField.setAccessible(true); + return (String) targetField.get(delegate); + } + } + } catch (Exception e) { + e.printStackTrace(); + } + return channelBuilder.toString(); + } + private static class FakeLogHandler extends Handler { List records = new ArrayList<>(); From d4a4c6544815a60830db6f9e950581061bdf14bd Mon Sep 17 00:00:00 2001 From: Nidhi Nandwani Date: Wed, 5 Aug 2026 08:33:56 +0000 Subject: [PATCH 02/13] refactor(gax-grpc): replace duplicate target tests with parameterized test Replace four extremely similar test cases in InstantiatingGrpcChannelProviderTest with a single ParameterizedTest using @MethodSource to reduce code duplication and address SonarCloud issues. [Generated-by: AI] --- .../InstantiatingGrpcChannelProviderTest.java | 177 +++++------------- 1 file changed, 42 insertions(+), 135 deletions(-) diff --git a/sdk-platform-java/gax-java/gax-grpc/src/test/java/com/google/api/gax/grpc/InstantiatingGrpcChannelProviderTest.java b/sdk-platform-java/gax-java/gax-grpc/src/test/java/com/google/api/gax/grpc/InstantiatingGrpcChannelProviderTest.java index 5f92259b65e8..da4139a8ad68 100644 --- a/sdk-platform-java/gax-java/gax-grpc/src/test/java/com/google/api/gax/grpc/InstantiatingGrpcChannelProviderTest.java +++ b/sdk-platform-java/gax-java/gax-grpc/src/test/java/com/google/api/gax/grpc/InstantiatingGrpcChannelProviderTest.java @@ -83,11 +83,15 @@ import java.util.logging.Level; import java.util.logging.LogRecord; import java.util.stream.Collectors; +import java.util.stream.Stream; import javax.annotation.Nullable; import org.junit.jupiter.api.AfterEach; import org.junit.jupiter.api.BeforeAll; import org.junit.jupiter.api.BeforeEach; import org.junit.jupiter.api.Test; +import org.junit.jupiter.params.ParameterizedTest; +import org.junit.jupiter.params.provider.Arguments; +import org.junit.jupiter.params.provider.MethodSource; import org.mockito.ArgumentCaptor; import org.mockito.Mockito; @@ -1023,15 +1027,45 @@ public void canUseDirectPath_attemptDirectPathXdsOverInterconnect_bypassesGceChe Truth.assertThat(provider.canUseDirectPath()).isFalse(); } - @Test - public void getTransportChannel_customResolverTargetUri_nonGoogleC2p_usesUriDirectly() + private static Stream directPathTestParameters() { + return Stream.of( + Arguments.of("dns:///localhost:8080", false, false, false, "dns:///localhost:8080"), + Arguments.of( + "storage.googleapis.com:443", + true, + true, + false, + "google-c2p:///storage.googleapis.com?force-xds"), + Arguments.of( + "storage.googleapis.com:443", + true, + true, + true, + "google-c2p:///storage.googleapis.com?force-xds"), + Arguments.of( + "google-c2p:///storage-direct.googleapis.com?force-xds", + false, + false, + false, + "google-c2p:///storage-direct.googleapis.com?force-xds")); + } + + @ParameterizedTest + @MethodSource("directPathTestParameters") + public void getTransportChannel_directPathTarget( + String endpoint, + boolean attemptDirectPath, + boolean attemptDirectPathXdsOverInterconnect, + boolean useNullCredentials, + String expectedTarget) throws IOException, InterruptedException { System.setProperty("os.name", "Not Linux"); EnvironmentProvider envProvider = mock(EnvironmentProvider.class, withSettings().withoutAnnotations()); when(envProvider.getenv(InstantiatingGrpcChannelProvider.DIRECT_PATH_ENV_DISABLE_DIRECT_PATH)) .thenReturn("false"); - Credentials credentials = mock(Credentials.class, withSettings().withoutAnnotations()); + Credentials credentials = + useNullCredentials ? null : mock(Credentials.class, withSettings().withoutAnnotations()); final java.util.concurrent.atomic.AtomicReference capturedTarget = new java.util.concurrent.atomic.AtomicReference<>(); ApiFunction channelConfigurator = @@ -1043,8 +1077,10 @@ public void getTransportChannel_customResolverTargetUri_nonGoogleC2p_usesUriDire InstantiatingGrpcChannelProvider.Builder builder = InstantiatingGrpcChannelProvider.newBuilder() .setCertificateBasedAccess(certificateBasedAccess) + .setAttemptDirectPath(attemptDirectPath) + .setAttemptDirectPathXdsOverInterconnect(attemptDirectPathXdsOverInterconnect) .setCredentials(credentials) - .setEndpoint("dns:///localhost:8080") + .setEndpoint(endpoint) .setEnvProvider(envProvider) .setChannelConfigurator(channelConfigurator); @@ -1053,15 +1089,13 @@ public void getTransportChannel_customResolverTargetUri_nonGoogleC2p_usesUriDire InstantiatingGrpcChannelProvider configuredProvider = (InstantiatingGrpcChannelProvider) - provider - .withHeaders(Collections.emptyMap()) - .withEndpoint("dns:///localhost:8080"); + provider.withHeaders(Collections.emptyMap()).withEndpoint(endpoint); TransportChannel transportChannel = configuredProvider.getTransportChannel(); transportChannel.shutdownNow(); transportChannel.awaitTermination(5, TimeUnit.SECONDS); - Truth.assertThat(capturedTarget.get()).isEqualTo("dns:///localhost:8080"); + Truth.assertThat(capturedTarget.get()).contains(expectedTarget); } @Test @@ -1093,133 +1127,6 @@ void testLogDirectPathFallbackWarning() throws Exception { transportChannel.awaitTermination(10, TimeUnit.SECONDS); } - @Test - public void getTransportChannel_attemptDirectPathXdsOverInterconnect_usesForceXdsTarget() - throws IOException, InterruptedException { - System.setProperty("os.name", "Not Linux"); - EnvironmentProvider envProvider = - mock(EnvironmentProvider.class, withSettings().withoutAnnotations()); - when(envProvider.getenv(InstantiatingGrpcChannelProvider.DIRECT_PATH_ENV_DISABLE_DIRECT_PATH)) - .thenReturn("false"); - Credentials credentials = mock(Credentials.class, withSettings().withoutAnnotations()); - final java.util.concurrent.atomic.AtomicReference capturedTarget = - new java.util.concurrent.atomic.AtomicReference<>(); - ApiFunction channelConfigurator = - channelBuilder -> { - capturedTarget.set(extractTargetFromChannelBuilder(channelBuilder)); - return channelBuilder; - }; - - InstantiatingGrpcChannelProvider.Builder builder = - InstantiatingGrpcChannelProvider.newBuilder() - .setCertificateBasedAccess(certificateBasedAccess) - .setAttemptDirectPath(true) - .setAttemptDirectPathXdsOverInterconnect(true) - .setCredentials(credentials) - .setEndpoint("storage.googleapis.com:443") - .setEnvProvider(envProvider) - .setChannelConfigurator(channelConfigurator); - - InstantiatingGrpcChannelProvider provider = - new InstantiatingGrpcChannelProvider(builder, "not-gce-product-name"); - - InstantiatingGrpcChannelProvider configuredProvider = - (InstantiatingGrpcChannelProvider) - provider - .withHeaders(Collections.emptyMap()) - .withEndpoint("storage.googleapis.com:443"); - - TransportChannel transportChannel = configuredProvider.getTransportChannel(); - transportChannel.shutdownNow(); - transportChannel.awaitTermination(5, TimeUnit.SECONDS); - Truth.assertThat(capturedTarget.get()) - .contains("google-c2p:///storage.googleapis.com?force-xds"); - } - - @Test - public void getTransportChannel_attemptDirectPathXdsOverInterconnect_nullCredentials() - throws IOException, InterruptedException { - System.setProperty("os.name", "Not Linux"); - EnvironmentProvider envProvider = - mock(EnvironmentProvider.class, withSettings().withoutAnnotations()); - when(envProvider.getenv(InstantiatingGrpcChannelProvider.DIRECT_PATH_ENV_DISABLE_DIRECT_PATH)) - .thenReturn("false"); - final java.util.concurrent.atomic.AtomicReference capturedTarget = - new java.util.concurrent.atomic.AtomicReference<>(); - ApiFunction channelConfigurator = - channelBuilder -> { - capturedTarget.set(extractTargetFromChannelBuilder(channelBuilder)); - return channelBuilder; - }; - - InstantiatingGrpcChannelProvider.Builder builder = - InstantiatingGrpcChannelProvider.newBuilder() - .setCertificateBasedAccess(certificateBasedAccess) - .setAttemptDirectPath(true) - .setAttemptDirectPathXdsOverInterconnect(true) - .setCredentials(null) - .setEndpoint("storage.googleapis.com:443") - .setEnvProvider(envProvider) - .setChannelConfigurator(channelConfigurator); - - InstantiatingGrpcChannelProvider provider = - new InstantiatingGrpcChannelProvider(builder, "not-gce-product-name"); - - InstantiatingGrpcChannelProvider configuredProvider = - (InstantiatingGrpcChannelProvider) - provider - .withHeaders(Collections.emptyMap()) - .withEndpoint("storage.googleapis.com:443"); - - TransportChannel transportChannel = configuredProvider.getTransportChannel(); - transportChannel.shutdownNow(); - transportChannel.awaitTermination(5, TimeUnit.SECONDS); - Truth.assertThat(capturedTarget.get()) - .contains("google-c2p:///storage.googleapis.com?force-xds"); - } - - @Test - public void getTransportChannel_customResolverTargetUri_usesUriDirectly() - throws IOException, InterruptedException { - System.setProperty("os.name", "Not Linux"); - EnvironmentProvider envProvider = - mock(EnvironmentProvider.class, withSettings().withoutAnnotations()); - when(envProvider.getenv(InstantiatingGrpcChannelProvider.DIRECT_PATH_ENV_DISABLE_DIRECT_PATH)) - .thenReturn("false"); - Credentials credentials = mock(Credentials.class, withSettings().withoutAnnotations()); - final java.util.concurrent.atomic.AtomicReference capturedTarget = - new java.util.concurrent.atomic.AtomicReference<>(); - ApiFunction channelConfigurator = - channelBuilder -> { - capturedTarget.set(extractTargetFromChannelBuilder(channelBuilder)); - return channelBuilder; - }; - - InstantiatingGrpcChannelProvider.Builder builder = - InstantiatingGrpcChannelProvider.newBuilder() - .setCertificateBasedAccess(certificateBasedAccess) - .setCredentials(credentials) - .setEndpoint("google-c2p:///storage-direct.googleapis.com?force-xds") - .setEnvProvider(envProvider) - .setChannelConfigurator(channelConfigurator); - - InstantiatingGrpcChannelProvider provider = - new InstantiatingGrpcChannelProvider(builder, "not-gce-product-name"); - - InstantiatingGrpcChannelProvider configuredProvider = - (InstantiatingGrpcChannelProvider) - provider - .withHeaders(Collections.emptyMap()) - .withEndpoint("google-c2p:///storage-direct.googleapis.com?force-xds"); - - TransportChannel transportChannel = configuredProvider.getTransportChannel(); - transportChannel.shutdownNow(); - transportChannel.awaitTermination(5, TimeUnit.SECONDS); - - Truth.assertThat(capturedTarget.get()) - .isEqualTo("google-c2p:///storage-direct.googleapis.com?force-xds"); - } - @Test public void canUseDirectPath_isNotOnComputeEngine_invalidOsNameSystemProperty() { System.setProperty("os.name", "Not Linux"); From 4697693d286712f627c4a6f25f92e075bdd730a8 Mon Sep 17 00:00:00 2001 From: Nidhi Nandwani Date: Wed, 5 Aug 2026 09:43:53 +0000 Subject: [PATCH 03/13] fix: resolve DirectPath validation regression and add misconfig tests\n\n- Fixed logic in validateDirectPathState to ensure credential and GCE checks are always performed when DirectPath is enabled.\n- Added explicit warnings for DirectPath misconfigurations (xDS mismatch).\n- Added regression tests in InstantiatingGrpcChannelProviderTest.\n\n[Generated-by: AI] --- .../InstantiatingGrpcChannelProvider.java | 20 ++++--- .../InstantiatingGrpcChannelProviderTest.java | 55 +++++++++++++++++++ 2 files changed, 66 insertions(+), 9 deletions(-) diff --git a/sdk-platform-java/gax-java/gax-grpc/src/main/java/com/google/api/gax/grpc/InstantiatingGrpcChannelProvider.java b/sdk-platform-java/gax-java/gax-grpc/src/main/java/com/google/api/gax/grpc/InstantiatingGrpcChannelProvider.java index d38c5dd66a68..67c9a76dad7c 100644 --- a/sdk-platform-java/gax-java/gax-grpc/src/main/java/com/google/api/gax/grpc/InstantiatingGrpcChannelProvider.java +++ b/sdk-platform-java/gax-java/gax-grpc/src/main/java/com/google/api/gax/grpc/InstantiatingGrpcChannelProvider.java @@ -397,7 +397,7 @@ public TransportChannel getTransportChannel() throws IOException { } else if (needsEndpoint()) { throw new IllegalStateException("getTransportChannel() called when needsEndpoint() is true"); } else { - logDirectPathMisconfig(); + validateDirectPathState(); return createChannel(); } } @@ -454,15 +454,11 @@ public boolean isDirectPathXdsEnabled() { // This method should be called once per client initialization, hence can not be called in the // builder or createSingleChannel, only in getTransportChannel which creates the first channel // for a client. - private void logDirectPathMisconfig() { - if (!isDirectPathXdsEnabled()) { - return; - } - + @InternalApi + public void validateDirectPathState() { Level level = isOnComputeEngine() ? Level.WARNING : Level.FINE; if (!isDirectPathEnabled()) { - // This misconfiguration occurs when Direct Path xDS is enabled, but Direct Path is not // Direct Path xDS can be enabled two ways: via environment variable or via builder. // Case 1: Direct Path is only enabled via xDS env var. We will _warn_ the user that this is // a misconfiguration if they intended to set the env var. @@ -483,7 +479,13 @@ else if (isDirectPathXdsEnabledViaBuilderOption()) { "DirectPath is misconfigured. The DirectPath XDS option was set, but the attemptDirectPath option was not. Please set both the attemptDirectPath and attemptDirectPathXds options."); } } else { - // Case 3: credential is not correctly set + // Case 3: DirectPath is enabled, but xDS is not. + if (!isDirectPathXdsEnabled()) { + LOG.log( + level, + "DirectPath is enabled, but DirectPath xDS is not. Please note that DirectPath will soon require xDS to be enabled. Please set the attemptDirectPathXds option."); + } + // Case 4: credential is not correctly set if (!isCredentialDirectPathCompatible()) { LOG.log( level, @@ -491,7 +493,7 @@ else if (isDirectPathXdsEnabledViaBuilderOption()) { + ComputeEngineCredentials.class.getName() + " ."); } - // Case 4: not running on GCE + // Case 5: not running on GCE if (!isOnComputeEngine() && !isAttemptDirectPathXdsOverInterconnect()) { LOG.log( level, diff --git a/sdk-platform-java/gax-java/gax-grpc/src/test/java/com/google/api/gax/grpc/InstantiatingGrpcChannelProviderTest.java b/sdk-platform-java/gax-java/gax-grpc/src/test/java/com/google/api/gax/grpc/InstantiatingGrpcChannelProviderTest.java index da4139a8ad68..3ceed9a2b55c 100644 --- a/sdk-platform-java/gax-java/gax-grpc/src/test/java/com/google/api/gax/grpc/InstantiatingGrpcChannelProviderTest.java +++ b/sdk-platform-java/gax-java/gax-grpc/src/test/java/com/google/api/gax/grpc/InstantiatingGrpcChannelProviderTest.java @@ -1583,6 +1583,61 @@ private static String extractTargetFromChannelBuilder(ManagedChannelBuilder c return channelBuilder.toString(); } + @Test + void testLogDirectPathMisconfigXdsSetDirectPathNotSet() throws Exception { + FakeLogHandler logHandler = new FakeLogHandler(); + InstantiatingGrpcChannelProvider.LOG.setLevel(Level.FINE); + InstantiatingGrpcChannelProvider.LOG.addHandler(logHandler); + InstantiatingGrpcChannelProvider provider = + InstantiatingGrpcChannelProvider.newBuilder() + .setAttemptDirectPathXds() + .setAttemptDirectPath(false) + .setHeaderProvider( + mock(HeaderProvider.class, Mockito.withSettings().withoutAnnotations())) + .setExecutor(mock(Executor.class, Mockito.withSettings().withoutAnnotations())) + .setEndpoint(DEFAULT_ENDPOINT) + .setCertificateBasedAccess(certificateBasedAccess) + .build(); + + try { + provider.getTransportChannel(); + } catch (Exception e) { + // ignore + } + + assertThat(logHandler.getAllMessages()) + .contains( + "DirectPath is misconfigured. The DirectPath XDS option was set, but the attemptDirectPath option was not. Please set both the attemptDirectPath and attemptDirectPathXds options."); + InstantiatingGrpcChannelProvider.LOG.removeHandler(logHandler); + } + + @Test + void testLogDirectPathMisconfigDirectPathSetXdsNotSet() throws Exception { + FakeLogHandler logHandler = new FakeLogHandler(); + InstantiatingGrpcChannelProvider.LOG.setLevel(Level.FINE); + InstantiatingGrpcChannelProvider.LOG.addHandler(logHandler); + InstantiatingGrpcChannelProvider provider = + InstantiatingGrpcChannelProvider.newBuilder() + .setAttemptDirectPath(true) + .setHeaderProvider( + mock(HeaderProvider.class, Mockito.withSettings().withoutAnnotations())) + .setExecutor(mock(Executor.class, Mockito.withSettings().withoutAnnotations())) + .setEndpoint(DEFAULT_ENDPOINT) + .setCertificateBasedAccess(certificateBasedAccess) + .build(); + + try { + provider.getTransportChannel(); + } catch (Exception e) { + // ignore + } + + assertThat(logHandler.getAllMessages()) + .contains( + "DirectPath is enabled, but DirectPath xDS is not. Please note that DirectPath will soon require xDS to be enabled. Please set the attemptDirectPathXds option."); + InstantiatingGrpcChannelProvider.LOG.removeHandler(logHandler); + } + private static class FakeLogHandler extends Handler { List records = new ArrayList<>(); From daa170855fb98ebc09958b01a644432caad60778 Mon Sep 17 00:00:00 2001 From: Nidhi Nandwani Date: Wed, 5 Aug 2026 10:04:25 +0000 Subject: [PATCH 04/13] fix: add missing junit-jupiter-params dependency to gax-grpc BUILD.bazel --- sdk-platform-java/gax-java/gax-grpc/BUILD.bazel | 1 + 1 file changed, 1 insertion(+) diff --git a/sdk-platform-java/gax-java/gax-grpc/BUILD.bazel b/sdk-platform-java/gax-java/gax-grpc/BUILD.bazel index 52bec965145b..f615eb9e3294 100644 --- a/sdk-platform-java/gax-java/gax-grpc/BUILD.bazel +++ b/sdk-platform-java/gax-java/gax-grpc/BUILD.bazel @@ -37,6 +37,7 @@ _COMPILE_DEPS = [ _TEST_COMPILE_DEPS = [ "@org_junit_jupiter_junit_jupiter_api//jar", + "@org_junit_jupiter_junit_jupiter_params//jar", "@org_mockito_mockito_core//jar", "@org_mockito_mockito_junit_jupiter//jar", "@com_google_truth_truth//jar", From ff83eb4d2ad5d2783b2ac7c62899d7f3a6adbdf8 Mon Sep 17 00:00:00 2001 From: Nidhi Nandwani Date: Thu, 6 Aug 2026 07:10:13 +0000 Subject: [PATCH 05/13] fix tests --- .../cloud/storage/GrpcStorageOptions.java | 31 +-- .../storage/it/ITStorageOptionsTest.java | 4 +- .../gax-java/gax-grpc/BUILD.bazel | 1 - .../InstantiatingGrpcChannelProviderTest.java | 188 ++++++++++++++---- 4 files changed, 166 insertions(+), 58 deletions(-) diff --git a/java-storage/google-cloud-storage/src/main/java/com/google/cloud/storage/GrpcStorageOptions.java b/java-storage/google-cloud-storage/src/main/java/com/google/cloud/storage/GrpcStorageOptions.java index badbef34b7c3..fa6f50073046 100644 --- a/java-storage/google-cloud-storage/src/main/java/com/google/cloud/storage/GrpcStorageOptions.java +++ b/java-storage/google-cloud-storage/src/main/java/com/google/cloud/storage/GrpcStorageOptions.java @@ -202,6 +202,23 @@ private void readObject(ObjectInputStream in) throws IOException, ClassNotFoundE this.openTelemetry = HttpStorageOptions.getDefaultInstance().getOpenTelemetry(); } + private static String rewriteHost(String endpoint, String oldHost, String newHost) { + String prefix = ""; + String rest = endpoint; + int schemeIndex = endpoint.indexOf("://"); + if (schemeIndex >= 0) { + prefix = endpoint.substring(0, schemeIndex + 3); + rest = endpoint.substring(schemeIndex + 3); + } + if (rest.startsWith(oldHost)) { + int len = oldHost.length(); + if (rest.length() == len || rest.charAt(len) == ':' || rest.charAt(len) == '/') { + return prefix + newHost + rest.substring(len); + } + } + return endpoint; + } + /** * We have to perform several introspections and detections to cross-wire/support several features * that are either gapic primitives, ServiceOption primitives or GCS semantic requirements. @@ -236,19 +253,7 @@ private void readObject(ObjectInputStream in) throws IOException, ClassNotFoundE private Tuple> resolveSettingsAndOpts() throws IOException { String endpoint = getHost(); if (attemptDirectPathXdsOverInterconnect) { - if (endpoint.startsWith(DEFAULT_HOST) - && (endpoint.length() == DEFAULT_HOST.length() - || endpoint.charAt(DEFAULT_HOST.length()) == ':' - || endpoint.charAt(DEFAULT_HOST.length()) == '/')) { - endpoint = DEFAULT_HOST_DIRECT_PATH + endpoint.substring(DEFAULT_HOST.length()); - } else if (endpoint.startsWith(DEFAULT_HOST_NO_SCHEME) - && (endpoint.length() == DEFAULT_HOST_NO_SCHEME.length() - || endpoint.charAt(DEFAULT_HOST_NO_SCHEME.length()) == ':' - || endpoint.charAt(DEFAULT_HOST_NO_SCHEME.length()) == '/')) { - endpoint = - DEFAULT_HOST_DIRECT_PATH_NO_SCHEME - + endpoint.substring(DEFAULT_HOST_NO_SCHEME.length()); - } + endpoint = rewriteHost(endpoint, "storage.googleapis.com", "storage-direct.googleapis.com"); } URI uri = URI.create(endpoint); String scheme = uri.getScheme(); diff --git a/java-storage/google-cloud-storage/src/test/java/com/google/cloud/storage/it/ITStorageOptionsTest.java b/java-storage/google-cloud-storage/src/test/java/com/google/cloud/storage/it/ITStorageOptionsTest.java index f33ae01c45c4..e23ee3b9f02d 100644 --- a/java-storage/google-cloud-storage/src/test/java/com/google/cloud/storage/it/ITStorageOptionsTest.java +++ b/java-storage/google-cloud-storage/src/test/java/com/google/cloud/storage/it/ITStorageOptionsTest.java @@ -98,7 +98,7 @@ public void clientShouldConstructCleanly_directPathXdsOverInterconnect() throws @Test public void clientShouldWork_directPathXdsOverInterconnect() throws Exception { assumeTrue( - "Environment cannot resolve storage.direct.googleapis.com", canResolveDirectPathAddress()); + "Environment cannot resolve storage-direct.googleapis.com", canResolveDirectPathAddress()); StorageOptions options = StorageOptions.grpc() .setCredentials(credentials) @@ -134,7 +134,7 @@ private static void doTest(StorageOptions options) throws Exception { private static boolean canResolveDirectPathAddress() { try { - java.net.InetAddress.getAllByName("storage.direct.googleapis.com"); + java.net.InetAddress.getAllByName("storage-direct.googleapis.com"); return true; } catch (java.net.UnknownHostException e) { return false; diff --git a/sdk-platform-java/gax-java/gax-grpc/BUILD.bazel b/sdk-platform-java/gax-java/gax-grpc/BUILD.bazel index f615eb9e3294..52bec965145b 100644 --- a/sdk-platform-java/gax-java/gax-grpc/BUILD.bazel +++ b/sdk-platform-java/gax-java/gax-grpc/BUILD.bazel @@ -37,7 +37,6 @@ _COMPILE_DEPS = [ _TEST_COMPILE_DEPS = [ "@org_junit_jupiter_junit_jupiter_api//jar", - "@org_junit_jupiter_junit_jupiter_params//jar", "@org_mockito_mockito_core//jar", "@org_mockito_mockito_junit_jupiter//jar", "@com_google_truth_truth//jar", diff --git a/sdk-platform-java/gax-java/gax-grpc/src/test/java/com/google/api/gax/grpc/InstantiatingGrpcChannelProviderTest.java b/sdk-platform-java/gax-java/gax-grpc/src/test/java/com/google/api/gax/grpc/InstantiatingGrpcChannelProviderTest.java index cc5c87bb4e04..a1aae2f8ba18 100644 --- a/sdk-platform-java/gax-java/gax-grpc/src/test/java/com/google/api/gax/grpc/InstantiatingGrpcChannelProviderTest.java +++ b/sdk-platform-java/gax-java/gax-grpc/src/test/java/com/google/api/gax/grpc/InstantiatingGrpcChannelProviderTest.java @@ -83,15 +83,11 @@ import java.util.logging.Level; import java.util.logging.LogRecord; import java.util.stream.Collectors; -import java.util.stream.Stream; import org.jspecify.annotations.Nullable; import org.junit.jupiter.api.AfterEach; import org.junit.jupiter.api.BeforeAll; import org.junit.jupiter.api.BeforeEach; import org.junit.jupiter.api.Test; -import org.junit.jupiter.params.ParameterizedTest; -import org.junit.jupiter.params.provider.Arguments; -import org.junit.jupiter.params.provider.MethodSource; import org.mockito.ArgumentCaptor; import org.mockito.Mockito; @@ -1026,45 +1022,144 @@ public void canUseDirectPath_attemptDirectPathXdsOverInterconnect_bypassesGceChe Truth.assertThat(provider.canUseDirectPath()).isFalse(); } - private static Stream directPathTestParameters() { - return Stream.of( - Arguments.of("dns:///localhost:8080", false, false, false, "dns:///localhost:8080"), - Arguments.of( - "storage.googleapis.com:443", - true, - true, - false, - "google-c2p:///storage.googleapis.com?force-xds"), - Arguments.of( - "storage.googleapis.com:443", - true, - true, - true, - "google-c2p:///storage.googleapis.com?force-xds"), - Arguments.of( - "google-c2p:///storage-direct.googleapis.com?force-xds", - false, - false, - false, - "google-c2p:///storage-direct.googleapis.com?force-xds")); - } - - @ParameterizedTest - @MethodSource("directPathTestParameters") - public void getTransportChannel_directPathTarget( - String endpoint, - boolean attemptDirectPath, - boolean attemptDirectPathXdsOverInterconnect, - boolean useNullCredentials, - String expectedTarget) + @Test + public void getTransportChannel_dnsTarget_noRewrite() throws IOException, InterruptedException { + System.setProperty("os.name", "Not Linux"); + EnvironmentProvider envProvider = + mock(EnvironmentProvider.class, withSettings().withoutAnnotations()); + when(envProvider.getenv(InstantiatingGrpcChannelProvider.DIRECT_PATH_ENV_DISABLE_DIRECT_PATH)) + .thenReturn("false"); + Credentials credentials = mock(Credentials.class, withSettings().withoutAnnotations()); + final java.util.concurrent.atomic.AtomicReference capturedTarget = + new java.util.concurrent.atomic.AtomicReference<>(); + ApiFunction channelConfigurator = + channelBuilder -> { + capturedTarget.set(extractTargetFromChannelBuilder(channelBuilder)); + return channelBuilder; + }; + + InstantiatingGrpcChannelProvider.Builder builder = + InstantiatingGrpcChannelProvider.newBuilder() + .setCertificateBasedAccess(certificateBasedAccess) + .setAttemptDirectPath(false) + .setAttemptDirectPathXdsOverInterconnect(false) + .setCredentials(credentials) + .setEndpoint("dns:///localhost:8080") + .setEnvProvider(envProvider) + .setChannelConfigurator(channelConfigurator); + + InstantiatingGrpcChannelProvider provider = + new InstantiatingGrpcChannelProvider(builder, "not-gce-product-name"); + + InstantiatingGrpcChannelProvider configuredProvider = + (InstantiatingGrpcChannelProvider) + provider + .withHeaders(Collections.emptyMap()) + .withEndpoint("dns:///localhost:8080"); + + TransportChannel transportChannel = configuredProvider.getTransportChannel(); + transportChannel.shutdownNow(); + transportChannel.awaitTermination(5, TimeUnit.SECONDS); + + Truth.assertThat(capturedTarget.get()).contains("dns:///localhost:8080"); + } + + @Test + public void getTransportChannel_storageTarget_withInterconnect() + throws IOException, InterruptedException { + System.setProperty("os.name", "Not Linux"); + EnvironmentProvider envProvider = + mock(EnvironmentProvider.class, withSettings().withoutAnnotations()); + when(envProvider.getenv(InstantiatingGrpcChannelProvider.DIRECT_PATH_ENV_DISABLE_DIRECT_PATH)) + .thenReturn("false"); + Credentials credentials = mock(Credentials.class, withSettings().withoutAnnotations()); + final java.util.concurrent.atomic.AtomicReference capturedTarget = + new java.util.concurrent.atomic.AtomicReference<>(); + ApiFunction channelConfigurator = + channelBuilder -> { + capturedTarget.set(extractTargetFromChannelBuilder(channelBuilder)); + return channelBuilder; + }; + + InstantiatingGrpcChannelProvider.Builder builder = + InstantiatingGrpcChannelProvider.newBuilder() + .setCertificateBasedAccess(certificateBasedAccess) + .setAttemptDirectPath(true) + .setAttemptDirectPathXdsOverInterconnect(true) + .setCredentials(credentials) + .setEndpoint("storage.googleapis.com:443") + .setEnvProvider(envProvider) + .setChannelConfigurator(channelConfigurator); + + InstantiatingGrpcChannelProvider provider = + new InstantiatingGrpcChannelProvider(builder, "not-gce-product-name"); + + InstantiatingGrpcChannelProvider configuredProvider = + (InstantiatingGrpcChannelProvider) + provider + .withHeaders(Collections.emptyMap()) + .withEndpoint("storage.googleapis.com:443"); + + TransportChannel transportChannel = configuredProvider.getTransportChannel(); + transportChannel.shutdownNow(); + transportChannel.awaitTermination(5, TimeUnit.SECONDS); + + Truth.assertThat(capturedTarget.get()) + .contains("google-c2p:///storage.googleapis.com?force-xds"); + } + + @Test + public void getTransportChannel_storageTarget_withInterconnectAndNullCredentials() + throws IOException, InterruptedException { + System.setProperty("os.name", "Not Linux"); + EnvironmentProvider envProvider = + mock(EnvironmentProvider.class, withSettings().withoutAnnotations()); + when(envProvider.getenv(InstantiatingGrpcChannelProvider.DIRECT_PATH_ENV_DISABLE_DIRECT_PATH)) + .thenReturn("false"); + final java.util.concurrent.atomic.AtomicReference capturedTarget = + new java.util.concurrent.atomic.AtomicReference<>(); + ApiFunction channelConfigurator = + channelBuilder -> { + capturedTarget.set(extractTargetFromChannelBuilder(channelBuilder)); + return channelBuilder; + }; + + InstantiatingGrpcChannelProvider.Builder builder = + InstantiatingGrpcChannelProvider.newBuilder() + .setCertificateBasedAccess(certificateBasedAccess) + .setAttemptDirectPath(true) + .setAttemptDirectPathXdsOverInterconnect(true) + .setCredentials(null) + .setEndpoint("storage.googleapis.com:443") + .setEnvProvider(envProvider) + .setChannelConfigurator(channelConfigurator); + + InstantiatingGrpcChannelProvider provider = + new InstantiatingGrpcChannelProvider(builder, "not-gce-product-name"); + + InstantiatingGrpcChannelProvider configuredProvider = + (InstantiatingGrpcChannelProvider) + provider + .withHeaders(Collections.emptyMap()) + .withEndpoint("storage.googleapis.com:443"); + + TransportChannel transportChannel = configuredProvider.getTransportChannel(); + transportChannel.shutdownNow(); + transportChannel.awaitTermination(5, TimeUnit.SECONDS); + + Truth.assertThat(capturedTarget.get()) + .contains("google-c2p:///storage.googleapis.com?force-xds"); + } + + @Test + public void getTransportChannel_customUriSchemeTarget_noRewrite() throws IOException, InterruptedException { System.setProperty("os.name", "Not Linux"); EnvironmentProvider envProvider = mock(EnvironmentProvider.class, withSettings().withoutAnnotations()); when(envProvider.getenv(InstantiatingGrpcChannelProvider.DIRECT_PATH_ENV_DISABLE_DIRECT_PATH)) .thenReturn("false"); - Credentials credentials = - useNullCredentials ? null : mock(Credentials.class, withSettings().withoutAnnotations()); + Credentials credentials = mock(Credentials.class, withSettings().withoutAnnotations()); final java.util.concurrent.atomic.AtomicReference capturedTarget = new java.util.concurrent.atomic.AtomicReference<>(); ApiFunction channelConfigurator = @@ -1076,10 +1171,10 @@ public void getTransportChannel_directPathTarget( InstantiatingGrpcChannelProvider.Builder builder = InstantiatingGrpcChannelProvider.newBuilder() .setCertificateBasedAccess(certificateBasedAccess) - .setAttemptDirectPath(attemptDirectPath) - .setAttemptDirectPathXdsOverInterconnect(attemptDirectPathXdsOverInterconnect) + .setAttemptDirectPath(false) + .setAttemptDirectPathXdsOverInterconnect(false) .setCredentials(credentials) - .setEndpoint(endpoint) + .setEndpoint("google-c2p:///storage-direct.googleapis.com?force-xds") .setEnvProvider(envProvider) .setChannelConfigurator(channelConfigurator); @@ -1088,13 +1183,16 @@ public void getTransportChannel_directPathTarget( InstantiatingGrpcChannelProvider configuredProvider = (InstantiatingGrpcChannelProvider) - provider.withHeaders(Collections.emptyMap()).withEndpoint(endpoint); + provider + .withHeaders(Collections.emptyMap()) + .withEndpoint("google-c2p:///storage-direct.googleapis.com?force-xds"); TransportChannel transportChannel = configuredProvider.getTransportChannel(); transportChannel.shutdownNow(); transportChannel.awaitTermination(5, TimeUnit.SECONDS); - Truth.assertThat(capturedTarget.get()).contains(expectedTarget); + Truth.assertThat(capturedTarget.get()) + .contains("google-c2p:///storage-direct.googleapis.com?force-xds"); } @Test @@ -1587,6 +1685,8 @@ void testLogDirectPathMisconfigXdsSetDirectPathNotSet() throws Exception { FakeLogHandler logHandler = new FakeLogHandler(); InstantiatingGrpcChannelProvider.LOG.setLevel(Level.FINE); InstantiatingGrpcChannelProvider.LOG.addHandler(logHandler); + EnvironmentProvider envProvider = + mock(EnvironmentProvider.class, Mockito.withSettings().withoutAnnotations()); InstantiatingGrpcChannelProvider provider = InstantiatingGrpcChannelProvider.newBuilder() .setAttemptDirectPathXds() @@ -1596,6 +1696,7 @@ void testLogDirectPathMisconfigXdsSetDirectPathNotSet() throws Exception { .setExecutor(mock(Executor.class, Mockito.withSettings().withoutAnnotations())) .setEndpoint(DEFAULT_ENDPOINT) .setCertificateBasedAccess(certificateBasedAccess) + .setEnvProvider(envProvider) .build(); try { @@ -1615,6 +1716,8 @@ void testLogDirectPathMisconfigDirectPathSetXdsNotSet() throws Exception { FakeLogHandler logHandler = new FakeLogHandler(); InstantiatingGrpcChannelProvider.LOG.setLevel(Level.FINE); InstantiatingGrpcChannelProvider.LOG.addHandler(logHandler); + EnvironmentProvider envProvider = + mock(EnvironmentProvider.class, Mockito.withSettings().withoutAnnotations()); InstantiatingGrpcChannelProvider provider = InstantiatingGrpcChannelProvider.newBuilder() .setAttemptDirectPath(true) @@ -1623,6 +1726,7 @@ void testLogDirectPathMisconfigDirectPathSetXdsNotSet() throws Exception { .setExecutor(mock(Executor.class, Mockito.withSettings().withoutAnnotations())) .setEndpoint(DEFAULT_ENDPOINT) .setCertificateBasedAccess(certificateBasedAccess) + .setEnvProvider(envProvider) .build(); try { From abb0825945ada17c1cb5b753ce1492735929add4 Mon Sep 17 00:00:00 2001 From: Nidhi Nandwani Date: Thu, 6 Aug 2026 07:30:15 +0000 Subject: [PATCH 06/13] test(gax-grpc, storage): add additional unit and integration tests for DirectPath and custom URI validation Adds coverage for custom URI validation, interconnect fallback without directpath, and interconnect fallback on non-GDU universes. Restores integration test for interconnect under a standalone test runner. [Generated-by: AI] --- .../storage/it/ITGrpcDirectPathTest.java | 63 +++++++++++++++ .../storage/it/ITStorageOptionsTest.java | 24 +----- .../InstantiatingGrpcChannelProviderTest.java | 79 +++++++++++++++++++ 3 files changed, 143 insertions(+), 23 deletions(-) create mode 100644 java-storage/google-cloud-storage/src/test/java/com/google/cloud/storage/it/ITGrpcDirectPathTest.java diff --git a/java-storage/google-cloud-storage/src/test/java/com/google/cloud/storage/it/ITGrpcDirectPathTest.java b/java-storage/google-cloud-storage/src/test/java/com/google/cloud/storage/it/ITGrpcDirectPathTest.java new file mode 100644 index 000000000000..5a6f33f062ab --- /dev/null +++ b/java-storage/google-cloud-storage/src/test/java/com/google/cloud/storage/it/ITGrpcDirectPathTest.java @@ -0,0 +1,63 @@ +/* + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.google.cloud.storage.it; + +import static org.junit.Assume.assumeTrue; + +import com.google.cloud.storage.Storage; +import com.google.cloud.storage.StorageOptions; +import com.google.cloud.storage.TransportCompatibility.Transport; +import com.google.cloud.storage.it.runner.StorageITRunner; +import com.google.cloud.storage.it.runner.annotations.Backend; +import com.google.cloud.storage.it.runner.annotations.Inject; +import com.google.cloud.storage.it.runner.annotations.SingleBackend; +import com.google.cloud.storage.it.runner.annotations.StorageFixture; +import org.junit.Test; +import org.junit.runner.RunWith; + +@RunWith(StorageITRunner.class) +@SingleBackend(Backend.PROD) +public final class ITGrpcDirectPathTest { + + @Inject + @StorageFixture(Transport.GRPC) + public Storage storage; + + @Test + public void clientShouldWork_directPathXdsOverInterconnect() throws Exception { + assumeTrue( + "Environment cannot resolve storage-direct.googleapis.com", canResolveDirectPathAddress()); + StorageOptions options = + StorageOptions.grpc() + .setCredentials(storage.getOptions().getCredentials()) + .setAttemptDirectPathXdsOverInterconnect(true) + .setEnableGrpcClientMetrics(false) + .build(); + try (Storage client = options.getService()) { + client.list(Storage.BucketListOption.pageSize(1)); + } + } + + private static boolean canResolveDirectPathAddress() { + try { + java.net.InetAddress.getAllByName("storage-direct.googleapis.com"); + return true; + } catch (java.net.UnknownHostException e) { + return false; + } + } +} diff --git a/java-storage/google-cloud-storage/src/test/java/com/google/cloud/storage/it/ITStorageOptionsTest.java b/java-storage/google-cloud-storage/src/test/java/com/google/cloud/storage/it/ITStorageOptionsTest.java index e23ee3b9f02d..55ae7ff4154a 100644 --- a/java-storage/google-cloud-storage/src/test/java/com/google/cloud/storage/it/ITStorageOptionsTest.java +++ b/java-storage/google-cloud-storage/src/test/java/com/google/cloud/storage/it/ITStorageOptionsTest.java @@ -95,20 +95,6 @@ public void clientShouldConstructCleanly_directPathXdsOverInterconnect() throws doTest(options); } - @Test - public void clientShouldWork_directPathXdsOverInterconnect() throws Exception { - assumeTrue( - "Environment cannot resolve storage-direct.googleapis.com", canResolveDirectPathAddress()); - StorageOptions options = - StorageOptions.grpc() - .setCredentials(credentials) - .setAttemptDirectPathXdsOverInterconnect(true) - .setEnableGrpcClientMetrics(false) - .build(); - try (Storage storage = options.getService()) { - storage.list(Storage.BucketListOption.pageSize(1)); - } - } @Test public void lackOfProjectIdDoesNotPreventConstruction_http() throws Exception { @@ -131,13 +117,5 @@ private static void doTest(StorageOptions options) throws Exception { //noinspection EmptyTryBlock try (Storage ignore = options.getService()) {} } - - private static boolean canResolveDirectPathAddress() { - try { - java.net.InetAddress.getAllByName("storage-direct.googleapis.com"); - return true; - } catch (java.net.UnknownHostException e) { - return false; - } - } } + diff --git a/sdk-platform-java/gax-java/gax-grpc/src/test/java/com/google/api/gax/grpc/InstantiatingGrpcChannelProviderTest.java b/sdk-platform-java/gax-java/gax-grpc/src/test/java/com/google/api/gax/grpc/InstantiatingGrpcChannelProviderTest.java index a1aae2f8ba18..4e83a08416e6 100644 --- a/sdk-platform-java/gax-java/gax-grpc/src/test/java/com/google/api/gax/grpc/InstantiatingGrpcChannelProviderTest.java +++ b/sdk-platform-java/gax-java/gax-grpc/src/test/java/com/google/api/gax/grpc/InstantiatingGrpcChannelProviderTest.java @@ -1741,6 +1741,85 @@ void testLogDirectPathMisconfigDirectPathSetXdsNotSet() throws Exception { InstantiatingGrpcChannelProvider.LOG.removeHandler(logHandler); } + @Test + void validateEndpoint_invalidCustomUri_throws() { + InstantiatingGrpcChannelProvider.Builder builder = + InstantiatingGrpcChannelProvider.newBuilder() + .setCertificateBasedAccess(certificateBasedAccess) + .setExecutor(mock(Executor.class)) + .setHeaderProvider(mock(HeaderProvider.class, withSettings().withoutAnnotations())); + + IllegalArgumentException exception = + assertThrows( + IllegalArgumentException.class, + () -> builder.setEndpoint("google-c2p:///invalid uri with spaces")); + assertThat(exception.getMessage()).contains("invalid endpoint URI:"); + } + + @Test + void canUseDirectPath_interconnectEnabledButDirectPathDisabled_fallsBackToCloudPath() + throws Exception { + FakeLogHandler logHandler = new FakeLogHandler(); + InstantiatingGrpcChannelProvider.LOG.setLevel(Level.FINE); + InstantiatingGrpcChannelProvider.LOG.addHandler(logHandler); + + EnvironmentProvider envProvider = + mock(EnvironmentProvider.class, withSettings().withoutAnnotations()); + when(envProvider.getenv(InstantiatingGrpcChannelProvider.DIRECT_PATH_ENV_DISABLE_DIRECT_PATH)) + .thenReturn("false"); + + InstantiatingGrpcChannelProvider provider = + InstantiatingGrpcChannelProvider.newBuilder() + .setAttemptDirectPath(false) + .setAttemptDirectPathXdsOverInterconnect(true) + .setHeaderProvider(mock(HeaderProvider.class, withSettings().withoutAnnotations())) + .setExecutor(mock(Executor.class)) + .setEndpoint(DEFAULT_ENDPOINT) + .setCertificateBasedAccess(certificateBasedAccess) + .setEnvProvider(envProvider) + .build(); + + TransportChannel transportChannel = provider.getTransportChannel(); + transportChannel.close(); + transportChannel.awaitTermination(10, TimeUnit.SECONDS); + + assertThat(logHandler.getAllMessages()) + .contains("DirectPath was requested but is not available. Falling back to CloudPath."); + InstantiatingGrpcChannelProvider.LOG.removeHandler(logHandler); + } + + @Test + void canUseDirectPath_interconnectAndDirectPathEnabledButNonGduUniverse_fallsBackToCloudPath() + throws Exception { + FakeLogHandler logHandler = new FakeLogHandler(); + InstantiatingGrpcChannelProvider.LOG.setLevel(Level.FINE); + InstantiatingGrpcChannelProvider.LOG.addHandler(logHandler); + + EnvironmentProvider envProvider = + mock(EnvironmentProvider.class, withSettings().withoutAnnotations()); + when(envProvider.getenv(InstantiatingGrpcChannelProvider.DIRECT_PATH_ENV_DISABLE_DIRECT_PATH)) + .thenReturn("false"); + + InstantiatingGrpcChannelProvider provider = + InstantiatingGrpcChannelProvider.newBuilder() + .setAttemptDirectPath(true) + .setAttemptDirectPathXdsOverInterconnect(true) + .setHeaderProvider(mock(HeaderProvider.class, withSettings().withoutAnnotations())) + .setExecutor(mock(Executor.class)) + .setEndpoint("storage-direct.some-other-universe.com:443") + .setCertificateBasedAccess(certificateBasedAccess) + .setEnvProvider(envProvider) + .build(); + + TransportChannel transportChannel = provider.getTransportChannel(); + transportChannel.close(); + transportChannel.awaitTermination(10, TimeUnit.SECONDS); + + assertThat(logHandler.getAllMessages()) + .contains("DirectPath was requested but is not available. Falling back to CloudPath."); + InstantiatingGrpcChannelProvider.LOG.removeHandler(logHandler); + } + private static class FakeLogHandler extends Handler { List records = new ArrayList<>(); From 12d52bc8f9bf2eca498ae683e3659321120b14c2 Mon Sep 17 00:00:00 2001 From: Nidhi Nandwani Date: Thu, 6 Aug 2026 07:33:55 +0000 Subject: [PATCH 07/13] fix: rename outer class Udm to UdmProto to resolve Windows case-insensitivity clash with UDM --- .../google/backstory/AnalyticsMetadata.java | 10 +- .../google/backstory/AppCompatMetadata.java | 10 +- .../java/com/google/backstory/Artifact.java | 10 +- .../com/google/backstory/ArtifactClient.java | 10 +- .../main/java/com/google/backstory/Asset.java | 10 +- .../com/google/backstory/AttackDetails.java | 30 +++--- .../java/com/google/backstory/Attribute.java | 10 +- .../com/google/backstory/Authentication.java | 10 +- .../com/google/backstory/BoolSequence.java | 10 +- .../java/com/google/backstory/Browser.java | 20 ++-- .../com/google/backstory/BytesSequence.java | 10 +- .../com/google/backstory/Certificate.java | 10 +- .../main/java/com/google/backstory/Cloud.java | 10 +- .../backstory/CollectionOuterClass.java | 4 +- .../java/com/google/backstory/DNSRecord.java | 10 +- .../main/java/com/google/backstory/Dhcp.java | 20 ++-- .../main/java/com/google/backstory/Dns.java | 30 +++--- .../java/com/google/backstory/Domain.java | 10 +- .../com/google/backstory/DoubleSequence.java | 10 +- .../main/java/com/google/backstory/Email.java | 10 +- .../com/google/backstory/EntityProto.java | 4 +- .../java/com/google/backstory/ExifInfo.java | 10 +- .../java/com/google/backstory/Extensions.java | 10 +- .../java/com/google/backstory/Favicon.java | 10 +- .../main/java/com/google/backstory/File.java | 10 +- .../com/google/backstory/FileMetadata.java | 10 +- .../backstory/FileMetadataCodesign.java | 10 +- .../google/backstory/FileMetadataImports.java | 10 +- .../com/google/backstory/FileMetadataPE.java | 10 +- .../backstory/FileMetadataPeResourceInfo.java | 10 +- .../google/backstory/FileMetadataSection.java | 10 +- .../backstory/FileMetadataSignatureInfo.java | 10 +- .../com/google/backstory/FindingVariable.java | 10 +- .../main/java/com/google/backstory/Ftp.java | 10 +- .../main/java/com/google/backstory/Group.java | 10 +- .../com/google/backstory/GroupedFields.java | 10 +- .../java/com/google/backstory/Hardware.java | 10 +- .../main/java/com/google/backstory/Http.java | 10 +- .../com/google/backstory/Int64Sequence.java | 10 +- .../com/google/backstory/Investigation.java | 10 +- .../main/java/com/google/backstory/Label.java | 10 +- .../java/com/google/backstory/LinuxUtmp.java | 10 +- .../java/com/google/backstory/Location.java | 10 +- .../java/com/google/backstory/Metadata.java | 10 +- .../java/com/google/backstory/Network.java | 10 +- .../main/java/com/google/backstory/Noun.java | 10 +- .../google/backstory/NtfsFileMetadata.java | 10 +- .../com/google/backstory/OutlookMetadata.java | 10 +- .../java/com/google/backstory/PDFInfo.java | 10 +- .../com/google/backstory/PeFileMetadata.java | 10 +- .../java/com/google/backstory/Permission.java | 10 +- .../google/backstory/PlatformSoftware.java | 10 +- .../com/google/backstory/PopularityRank.java | 10 +- .../backstory/PrefetchFileMetadata.java | 10 +- .../java/com/google/backstory/Prevalence.java | 10 +- .../java/com/google/backstory/Priority.java | 2 +- .../java/com/google/backstory/Process.java | 10 +- .../java/com/google/backstory/ProxyInfo.java | 10 +- .../java/com/google/backstory/Reason.java | 2 +- .../java/com/google/backstory/Registry.java | 10 +- .../java/com/google/backstory/Reputation.java | 2 +- .../java/com/google/backstory/Resource.java | 10 +- .../com/google/backstory/ResourceUsage.java | 10 +- .../main/java/com/google/backstory/Role.java | 10 +- .../com/google/backstory/SSLCertificate.java | 90 ++++++++-------- .../backstory/ScheduledAnacronTask.java | 10 +- .../google/backstory/ScheduledCronTask.java | 10 +- .../com/google/backstory/ScheduledTask.java | 10 +- .../com/google/backstory/SecurityResult.java | 102 +++++++++--------- .../java/com/google/backstory/Service.java | 10 +- .../com/google/backstory/SignatureInfo.java | 10 +- .../java/com/google/backstory/SignerInfo.java | 10 +- .../main/java/com/google/backstory/Smtp.java | 10 +- .../java/com/google/backstory/Software.java | 10 +- .../main/java/com/google/backstory/Srum.java | 10 +- .../java/com/google/backstory/Status.java | 2 +- .../com/google/backstory/StringSequence.java | 10 +- .../backstory/StringToInt64MapEntry.java | 10 +- .../google/backstory/SystemEventDetails.java | 10 +- .../main/java/com/google/backstory/Tags.java | 10 +- .../com/google/backstory/ThreatVerdict.java | 2 +- .../java/com/google/backstory/TimeOff.java | 10 +- .../main/java/com/google/backstory/Tls.java | 30 +++--- .../java/com/google/backstory/Tracker.java | 10 +- .../java/com/google/backstory/Tunnels.java | 10 +- .../main/java/com/google/backstory/UDM.java | 10 +- .../backstory/{Udm.java => UdmProto.java} | 6 +- .../com/google/backstory/Uint64Sequence.java | 10 +- .../main/java/com/google/backstory/Url.java | 10 +- .../main/java/com/google/backstory/User.java | 10 +- .../java/com/google/backstory/UserAssist.java | 10 +- .../java/com/google/backstory/UsnJournal.java | 10 +- .../java/com/google/backstory/Verdict.java | 2 +- .../java/com/google/backstory/Volume.java | 10 +- .../com/google/backstory/Vulnerabilities.java | 10 +- .../com/google/backstory/Vulnerability.java | 10 +- .../com/google/backstory/WindowsEventLog.java | 10 +- .../backstory/WindowsScheduledTask.java | 30 +++--- .../google/backstory/WmiPersistenceItem.java | 10 +- .../main/java/com/google/backstory/X509.java | 10 +- .../src/main/proto/backstory/udm.proto | 1 + .../storage/it/ITStorageOptionsTest.java | 2 - 102 files changed, 605 insertions(+), 606 deletions(-) rename java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/{Udm.java => UdmProto.java} (99%) diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/AnalyticsMetadata.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/AnalyticsMetadata.java index 5ea9d3a67163..d846b5a3e104 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/AnalyticsMetadata.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/AnalyticsMetadata.java @@ -56,13 +56,13 @@ private AnalyticsMetadata() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_AnalyticsMetadata_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_AnalyticsMetadata_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_AnalyticsMetadata_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.AnalyticsMetadata.class, @@ -295,13 +295,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.AnalyticsMetadata) com.google.backstory.AnalyticsMetadataOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_AnalyticsMetadata_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_AnalyticsMetadata_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_AnalyticsMetadata_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.AnalyticsMetadata.class, @@ -325,7 +325,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm.internal_static_google_backstory_AnalyticsMetadata_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_AnalyticsMetadata_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/AppCompatMetadata.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/AppCompatMetadata.java index 32f4bd093202..2da111c67d9c 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/AppCompatMetadata.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/AppCompatMetadata.java @@ -56,13 +56,13 @@ private AppCompatMetadata() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_AppCompatMetadata_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_AppCompatMetadata_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_AppCompatMetadata_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.AppCompatMetadata.class, @@ -354,13 +354,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.AppCompatMetadata) com.google.backstory.AppCompatMetadataOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_AppCompatMetadata_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_AppCompatMetadata_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_AppCompatMetadata_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.AppCompatMetadata.class, @@ -386,7 +386,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm.internal_static_google_backstory_AppCompatMetadata_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_AppCompatMetadata_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Artifact.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Artifact.java index 2a9453908df6..74c5c0d0ffb6 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Artifact.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Artifact.java @@ -63,13 +63,13 @@ private Artifact() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Artifact_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Artifact_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_Artifact_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_Artifact_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Artifact.class, com.google.backstory.Artifact.Builder.class); } @@ -1454,13 +1454,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.Artifact) com.google.backstory.ArtifactOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Artifact_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Artifact_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_Artifact_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_Artifact_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Artifact.class, com.google.backstory.Artifact.Builder.class); } @@ -1560,7 +1560,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm.internal_static_google_backstory_Artifact_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Artifact_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/ArtifactClient.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/ArtifactClient.java index 9ebcc116ba15..d6ee2654e6f8 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/ArtifactClient.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/ArtifactClient.java @@ -57,13 +57,13 @@ private ArtifactClient() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_ArtifactClient_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_ArtifactClient_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_ArtifactClient_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.ArtifactClient.class, @@ -401,13 +401,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.ArtifactClient) com.google.backstory.ArtifactClientOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_ArtifactClient_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_ArtifactClient_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_ArtifactClient_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.ArtifactClient.class, @@ -432,7 +432,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm.internal_static_google_backstory_ArtifactClient_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_ArtifactClient_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Asset.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Asset.java index 96f6cbd0c76a..24c97c1bbb7d 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Asset.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Asset.java @@ -70,13 +70,13 @@ private Asset() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Asset_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Asset_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_Asset_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_Asset_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Asset.class, com.google.backstory.Asset.Builder.class); } @@ -2493,13 +2493,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.Asset) com.google.backstory.AssetOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Asset_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Asset_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_Asset_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_Asset_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Asset.class, com.google.backstory.Asset.Builder.class); } @@ -2630,7 +2630,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm.internal_static_google_backstory_Asset_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Asset_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/AttackDetails.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/AttackDetails.java index 293bd084ad87..98d4ccaa235f 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/AttackDetails.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/AttackDetails.java @@ -58,13 +58,13 @@ private AttackDetails() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_AttackDetails_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_AttackDetails_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_AttackDetails_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.AttackDetails.class, @@ -165,14 +165,14 @@ private Tactic() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_AttackDetails_Tactic_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_AttackDetails_Tactic_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.AttackDetails.Tactic.class, @@ -468,14 +468,14 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.AttackDetails.Tactic) com.google.backstory.AttackDetails.TacticOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_AttackDetails_Tactic_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_AttackDetails_Tactic_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.AttackDetails.Tactic.class, @@ -500,7 +500,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_AttackDetails_Tactic_descriptor; } @@ -1040,14 +1040,14 @@ private Technique() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_AttackDetails_Technique_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_AttackDetails_Technique_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.AttackDetails.Technique.class, @@ -1467,14 +1467,14 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.AttackDetails.Technique) com.google.backstory.AttackDetails.TechniqueOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_AttackDetails_Technique_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_AttackDetails_Technique_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.AttackDetails.Technique.class, @@ -1501,7 +1501,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_AttackDetails_Technique_descriptor; } @@ -2542,13 +2542,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.AttackDetails) com.google.backstory.AttackDetailsOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_AttackDetails_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_AttackDetails_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_AttackDetails_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.AttackDetails.class, @@ -2586,7 +2586,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm.internal_static_google_backstory_AttackDetails_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_AttackDetails_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Attribute.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Attribute.java index 5811d574c65b..f7e7bf5fbbb3 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Attribute.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Attribute.java @@ -61,13 +61,13 @@ private Attribute() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Attribute_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Attribute_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_Attribute_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_Attribute_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Attribute.class, com.google.backstory.Attribute.Builder.class); } @@ -718,13 +718,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.Attribute) com.google.backstory.AttributeOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Attribute_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Attribute_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_Attribute_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_Attribute_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Attribute.class, com.google.backstory.Attribute.Builder.class); } @@ -795,7 +795,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm.internal_static_google_backstory_Attribute_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Attribute_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Authentication.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Authentication.java index 100787b21d30..32958e04e14f 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Authentication.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Authentication.java @@ -74,13 +74,13 @@ private Authentication() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Authentication_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Authentication_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_Authentication_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Authentication.class, @@ -1760,13 +1760,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.Authentication) com.google.backstory.AuthenticationOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Authentication_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Authentication_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_Authentication_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Authentication.class, @@ -1793,7 +1793,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm.internal_static_google_backstory_Authentication_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Authentication_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/BoolSequence.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/BoolSequence.java index c30e66aa1a04..a9afd0e8d0ef 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/BoolSequence.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/BoolSequence.java @@ -56,13 +56,13 @@ private BoolSequence() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_BoolSequence_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_BoolSequence_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_BoolSequence_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_BoolSequence_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.BoolSequence.class, com.google.backstory.BoolSequence.Builder.class); @@ -308,13 +308,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.BoolSequence) com.google.backstory.BoolSequenceOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_BoolSequence_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_BoolSequence_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_BoolSequence_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.BoolSequence.class, @@ -338,7 +338,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm.internal_static_google_backstory_BoolSequence_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_BoolSequence_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Browser.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Browser.java index ac2a562cb412..1bc832345715 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Browser.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Browser.java @@ -64,13 +64,13 @@ private Browser() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Browser_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Browser_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_Browser_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_Browser_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Browser.class, com.google.backstory.Browser.Builder.class); } @@ -1229,13 +1229,13 @@ private Cookie() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Browser_Cookie_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Browser_Cookie_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_Browser_Cookie_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Browser.Cookie.class, @@ -2109,13 +2109,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.Browser.Cookie) com.google.backstory.Browser.CookieOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Browser_Cookie_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Browser_Cookie_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_Browser_Cookie_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Browser.Cookie.class, @@ -2162,7 +2162,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm.internal_static_google_backstory_Browser_Cookie_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Browser_Cookie_descriptor; } @java.lang.Override @@ -4492,13 +4492,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.Browser) com.google.backstory.BrowserOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Browser_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Browser_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_Browser_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_Browser_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Browser.class, com.google.backstory.Browser.Builder.class); } @@ -4565,7 +4565,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm.internal_static_google_backstory_Browser_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Browser_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/BytesSequence.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/BytesSequence.java index 481570db39ca..f6c708067834 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/BytesSequence.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/BytesSequence.java @@ -56,13 +56,13 @@ private BytesSequence() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_BytesSequence_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_BytesSequence_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_BytesSequence_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.BytesSequence.class, @@ -301,13 +301,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.BytesSequence) com.google.backstory.BytesSequenceOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_BytesSequence_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_BytesSequence_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_BytesSequence_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.BytesSequence.class, @@ -331,7 +331,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm.internal_static_google_backstory_BytesSequence_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_BytesSequence_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Certificate.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Certificate.java index 0f7c9b65445b..c4b9b5b8eae8 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Certificate.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Certificate.java @@ -62,13 +62,13 @@ private Certificate() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Certificate_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Certificate_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_Certificate_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_Certificate_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Certificate.class, com.google.backstory.Certificate.Builder.class); } @@ -797,13 +797,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.Certificate) com.google.backstory.CertificateOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Certificate_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Certificate_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_Certificate_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Certificate.class, @@ -853,7 +853,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm.internal_static_google_backstory_Certificate_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Certificate_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Cloud.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Cloud.java index d7557a759387..8b7820c19adf 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Cloud.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Cloud.java @@ -57,13 +57,13 @@ private Cloud() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Cloud_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Cloud_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_Cloud_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_Cloud_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Cloud.class, com.google.backstory.Cloud.Builder.class); } @@ -680,13 +680,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.Cloud) com.google.backstory.CloudOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Cloud_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Cloud_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_Cloud_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_Cloud_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Cloud.class, com.google.backstory.Cloud.Builder.class); } @@ -729,7 +729,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm.internal_static_google_backstory_Cloud_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Cloud_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/CollectionOuterClass.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/CollectionOuterClass.java index 2b61b85f7e19..db440a9da9db 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/CollectionOuterClass.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/CollectionOuterClass.java @@ -190,7 +190,7 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { new com.google.protobuf.Descriptors.FileDescriptor[] { com.google.backstory.EntityProto.getDescriptor(), com.google.backstory.IdOuterClass.getDescriptor(), - com.google.backstory.Udm.getDescriptor(), + com.google.backstory.UdmProto.getDescriptor(), com.google.protobuf.DurationProto.getDescriptor(), com.google.protobuf.StructProto.getDescriptor(), com.google.protobuf.TimestampProto.getDescriptor(), @@ -289,7 +289,7 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { descriptor.resolveAllFeaturesImmutable(); com.google.backstory.EntityProto.getDescriptor(); com.google.backstory.IdOuterClass.getDescriptor(); - com.google.backstory.Udm.getDescriptor(); + com.google.backstory.UdmProto.getDescriptor(); com.google.protobuf.DurationProto.getDescriptor(); com.google.protobuf.StructProto.getDescriptor(); com.google.protobuf.TimestampProto.getDescriptor(); diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/DNSRecord.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/DNSRecord.java index f8886475be07..e2f331d0396c 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/DNSRecord.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/DNSRecord.java @@ -58,13 +58,13 @@ private DNSRecord() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_DNSRecord_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_DNSRecord_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_DNSRecord_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_DNSRecord_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.DNSRecord.class, com.google.backstory.DNSRecord.Builder.class); } @@ -755,13 +755,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.DNSRecord) com.google.backstory.DNSRecordOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_DNSRecord_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_DNSRecord_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_DNSRecord_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_DNSRecord_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.DNSRecord.class, com.google.backstory.DNSRecord.Builder.class); } @@ -820,7 +820,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm.internal_static_google_backstory_DNSRecord_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_DNSRecord_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Dhcp.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Dhcp.java index f183eea2da47..de6ad4b5afdf 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Dhcp.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Dhcp.java @@ -69,13 +69,13 @@ private Dhcp() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Dhcp_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Dhcp_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_Dhcp_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_Dhcp_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Dhcp.class, com.google.backstory.Dhcp.Builder.class); } @@ -669,13 +669,13 @@ private Option() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Dhcp_Option_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Dhcp_Option_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_Dhcp_Option_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Dhcp.Option.class, @@ -901,13 +901,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.Dhcp.Option) com.google.backstory.Dhcp.OptionOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Dhcp_Option_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Dhcp_Option_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_Dhcp_Option_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Dhcp.Option.class, @@ -932,7 +932,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm.internal_static_google_backstory_Dhcp_Option_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Dhcp_Option_descriptor; } @java.lang.Override @@ -2399,13 +2399,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.Dhcp) com.google.backstory.DhcpOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Dhcp_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Dhcp_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_Dhcp_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_Dhcp_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Dhcp.class, com.google.backstory.Dhcp.Builder.class); } @@ -2453,7 +2453,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm.internal_static_google_backstory_Dhcp_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Dhcp_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Dns.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Dns.java index e1ad1a8af6cb..698af41c5088 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Dns.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Dns.java @@ -59,13 +59,13 @@ private Dns() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Dns_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Dns_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_Dns_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_Dns_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Dns.class, com.google.backstory.Dns.Builder.class); } @@ -200,13 +200,13 @@ private Question() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Dns_Question_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Dns_Question_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_Dns_Question_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Dns.Question.class, @@ -562,13 +562,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.Dns.Question) com.google.backstory.Dns.QuestionOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Dns_Question_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Dns_Question_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_Dns_Question_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Dns.Question.class, @@ -608,7 +608,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm.internal_static_google_backstory_Dns_Question_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Dns_Question_descriptor; } @java.lang.Override @@ -1371,14 +1371,14 @@ private ResourceRecord() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_Dns_ResourceRecord_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_Dns_ResourceRecord_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Dns.ResourceRecord.class, @@ -1789,14 +1789,14 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.Dns.ResourceRecord) com.google.backstory.Dns.ResourceRecordOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_Dns_ResourceRecord_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_Dns_ResourceRecord_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Dns.ResourceRecord.class, @@ -1825,7 +1825,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_Dns_ResourceRecord_descriptor; } @@ -3248,13 +3248,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.Dns) com.google.backstory.DnsOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Dns_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Dns_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_Dns_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_Dns_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Dns.class, com.google.backstory.Dns.Builder.class); } @@ -3311,7 +3311,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm.internal_static_google_backstory_Dns_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Dns_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Domain.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Domain.java index 7e27ceefdcc0..f8c68b8f7ecd 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Domain.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Domain.java @@ -68,13 +68,13 @@ private Domain() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Domain_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Domain_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_Domain_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_Domain_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Domain.class, com.google.backstory.Domain.Builder.class); } @@ -2275,13 +2275,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.Domain) com.google.backstory.DomainOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Domain_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Domain_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_Domain_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_Domain_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Domain.class, com.google.backstory.Domain.Builder.class); } @@ -2441,7 +2441,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm.internal_static_google_backstory_Domain_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Domain_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/DoubleSequence.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/DoubleSequence.java index 3c5d47f6426d..498b122a2e52 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/DoubleSequence.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/DoubleSequence.java @@ -56,13 +56,13 @@ private DoubleSequence() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_DoubleSequence_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_DoubleSequence_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_DoubleSequence_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.DoubleSequence.class, @@ -309,13 +309,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.DoubleSequence) com.google.backstory.DoubleSequenceOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_DoubleSequence_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_DoubleSequence_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_DoubleSequence_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.DoubleSequence.class, @@ -339,7 +339,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm.internal_static_google_backstory_DoubleSequence_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_DoubleSequence_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Email.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Email.java index 9a07fe40056f..ed4066533af6 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Email.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Email.java @@ -63,13 +63,13 @@ private Email() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Email_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Email_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_Email_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_Email_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Email.class, com.google.backstory.Email.Builder.class); } @@ -823,13 +823,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.Email) com.google.backstory.EmailOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Email_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Email_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_Email_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_Email_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Email.class, com.google.backstory.Email.Builder.class); } @@ -858,7 +858,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm.internal_static_google_backstory_Email_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Email_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/EntityProto.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/EntityProto.java index e9df6d066235..53c461a987d2 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/EntityProto.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/EntityProto.java @@ -296,7 +296,7 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { descriptorData, new com.google.protobuf.Descriptors.FileDescriptor[] { com.google.backstory.EntityRiskProto.getDescriptor(), - com.google.backstory.Udm.getDescriptor(), + com.google.backstory.UdmProto.getDescriptor(), com.google.protobuf.StructProto.getDescriptor(), com.google.protobuf.TimestampProto.getDescriptor(), com.google.type.IntervalProto.getDescriptor(), @@ -387,7 +387,7 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { }); descriptor.resolveAllFeaturesImmutable(); com.google.backstory.EntityRiskProto.getDescriptor(); - com.google.backstory.Udm.getDescriptor(); + com.google.backstory.UdmProto.getDescriptor(); com.google.protobuf.StructProto.getDescriptor(); com.google.protobuf.TimestampProto.getDescriptor(); com.google.type.IntervalProto.getDescriptor(); diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/ExifInfo.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/ExifInfo.java index d991f715c1be..b26a877a192e 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/ExifInfo.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/ExifInfo.java @@ -59,13 +59,13 @@ private ExifInfo() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_ExifInfo_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_ExifInfo_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_ExifInfo_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_ExifInfo_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.ExifInfo.class, com.google.backstory.ExifInfo.Builder.class); } @@ -577,13 +577,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.ExifInfo) com.google.backstory.ExifInfoOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_ExifInfo_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_ExifInfo_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_ExifInfo_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_ExifInfo_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.ExifInfo.class, com.google.backstory.ExifInfo.Builder.class); } @@ -623,7 +623,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm.internal_static_google_backstory_ExifInfo_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_ExifInfo_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Extensions.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Extensions.java index 72b09be14960..755c25556da3 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Extensions.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Extensions.java @@ -54,13 +54,13 @@ private Extensions(com.google.protobuf.GeneratedMessage.Builder builder) { private Extensions() {} public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Extensions_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Extensions_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_Extensions_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_Extensions_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Extensions.class, com.google.backstory.Extensions.Builder.class); } @@ -902,13 +902,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.Extensions) com.google.backstory.ExtensionsOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Extensions_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Extensions_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_Extensions_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_Extensions_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Extensions.class, com.google.backstory.Extensions.Builder.class); } @@ -997,7 +997,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm.internal_static_google_backstory_Extensions_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Extensions_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Favicon.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Favicon.java index da9c541934f9..1819113d4d2f 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Favicon.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Favicon.java @@ -57,13 +57,13 @@ private Favicon() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Favicon_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Favicon_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_Favicon_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_Favicon_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Favicon.class, com.google.backstory.Favicon.Builder.class); } @@ -355,13 +355,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.Favicon) com.google.backstory.FaviconOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Favicon_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Favicon_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_Favicon_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_Favicon_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Favicon.class, com.google.backstory.Favicon.Builder.class); } @@ -384,7 +384,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm.internal_static_google_backstory_Favicon_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Favicon_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/File.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/File.java index 44d2727782ee..8341fc9010d5 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/File.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/File.java @@ -72,13 +72,13 @@ private File() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_File_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_File_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_File_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_File_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.File.class, com.google.backstory.File.Builder.class); } @@ -7157,13 +7157,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.File) com.google.backstory.FileOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_File_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_File_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_File_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_File_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.File.class, com.google.backstory.File.Builder.class); } @@ -7330,7 +7330,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm.internal_static_google_backstory_File_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_File_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/FileMetadata.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/FileMetadata.java index f5dfc8a98197..3a8f77feab1c 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/FileMetadata.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/FileMetadata.java @@ -57,13 +57,13 @@ private FileMetadata(com.google.protobuf.GeneratedMessage.Builder builder) { private FileMetadata() {} public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_FileMetadata_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_FileMetadata_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_FileMetadata_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_FileMetadata_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.FileMetadata.class, com.google.backstory.FileMetadata.Builder.class); @@ -307,13 +307,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.FileMetadata) com.google.backstory.FileMetadataOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_FileMetadata_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_FileMetadata_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_FileMetadata_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.FileMetadata.class, @@ -350,7 +350,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm.internal_static_google_backstory_FileMetadata_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_FileMetadata_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/FileMetadataCodesign.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/FileMetadataCodesign.java index ca1636d1e6d5..41a0680af51f 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/FileMetadataCodesign.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/FileMetadataCodesign.java @@ -58,14 +58,14 @@ private FileMetadataCodesign() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_FileMetadataCodesign_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_FileMetadataCodesign_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.FileMetadataCodesign.class, @@ -491,14 +491,14 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.FileMetadataCodesign) com.google.backstory.FileMetadataCodesignOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_FileMetadataCodesign_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_FileMetadataCodesign_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.FileMetadataCodesign.class, @@ -538,7 +538,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_FileMetadataCodesign_descriptor; } diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/FileMetadataImports.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/FileMetadataImports.java index 3b366287597a..b40de62006c1 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/FileMetadataImports.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/FileMetadataImports.java @@ -57,13 +57,13 @@ private FileMetadataImports() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_FileMetadataImports_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_FileMetadataImports_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_FileMetadataImports_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.FileMetadataImports.class, @@ -380,14 +380,14 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.FileMetadataImports) com.google.backstory.FileMetadataImportsOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_FileMetadataImports_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_FileMetadataImports_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.FileMetadataImports.class, @@ -412,7 +412,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_FileMetadataImports_descriptor; } diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/FileMetadataPE.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/FileMetadataPE.java index 0ea82f1cc9b9..df1e5cdc5551 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/FileMetadataPE.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/FileMetadataPE.java @@ -63,13 +63,13 @@ private FileMetadataPE() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_FileMetadataPE_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_FileMetadataPE_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_FileMetadataPE_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.FileMetadataPE.class, @@ -1235,13 +1235,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.FileMetadataPE) com.google.backstory.FileMetadataPEOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_FileMetadataPE_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_FileMetadataPE_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_FileMetadataPE_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.FileMetadataPE.class, @@ -1349,7 +1349,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm.internal_static_google_backstory_FileMetadataPE_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_FileMetadataPE_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/FileMetadataPeResourceInfo.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/FileMetadataPeResourceInfo.java index b21ea5e4afa9..70afbcf8a837 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/FileMetadataPeResourceInfo.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/FileMetadataPeResourceInfo.java @@ -59,14 +59,14 @@ private FileMetadataPeResourceInfo() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_FileMetadataPeResourceInfo_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_FileMetadataPeResourceInfo_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.FileMetadataPeResourceInfo.class, @@ -524,14 +524,14 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.FileMetadataPeResourceInfo) com.google.backstory.FileMetadataPeResourceInfoOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_FileMetadataPeResourceInfo_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_FileMetadataPeResourceInfo_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.FileMetadataPeResourceInfo.class, @@ -559,7 +559,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_FileMetadataPeResourceInfo_descriptor; } diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/FileMetadataSection.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/FileMetadataSection.java index 2111b807cead..e231d32196c0 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/FileMetadataSection.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/FileMetadataSection.java @@ -57,13 +57,13 @@ private FileMetadataSection() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_FileMetadataSection_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_FileMetadataSection_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_FileMetadataSection_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.FileMetadataSection.class, @@ -446,14 +446,14 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.FileMetadataSection) com.google.backstory.FileMetadataSectionOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_FileMetadataSection_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_FileMetadataSection_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.FileMetadataSection.class, @@ -481,7 +481,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_FileMetadataSection_descriptor; } diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/FileMetadataSignatureInfo.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/FileMetadataSignatureInfo.java index 2a9fe2b3eaad..c91f9846c8b9 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/FileMetadataSignatureInfo.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/FileMetadataSignatureInfo.java @@ -59,14 +59,14 @@ private FileMetadataSignatureInfo() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_FileMetadataSignatureInfo_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_FileMetadataSignatureInfo_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.FileMetadataSignatureInfo.class, @@ -611,14 +611,14 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.FileMetadataSignatureInfo) com.google.backstory.FileMetadataSignatureInfoOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_FileMetadataSignatureInfo_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_FileMetadataSignatureInfo_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.FileMetadataSignatureInfo.class, @@ -658,7 +658,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_FileMetadataSignatureInfo_descriptor; } diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/FindingVariable.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/FindingVariable.java index 3d4c9c85eb92..fefb170d9976 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/FindingVariable.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/FindingVariable.java @@ -59,13 +59,13 @@ private FindingVariable() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_FindingVariable_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_FindingVariable_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_FindingVariable_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.FindingVariable.class, @@ -1562,13 +1562,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.FindingVariable) com.google.backstory.FindingVariableOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_FindingVariable_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_FindingVariable_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_FindingVariable_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.FindingVariable.class, @@ -1617,7 +1617,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm.internal_static_google_backstory_FindingVariable_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_FindingVariable_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Ftp.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Ftp.java index e4acba02f5f3..b4330e50735a 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Ftp.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Ftp.java @@ -56,13 +56,13 @@ private Ftp() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Ftp_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Ftp_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_Ftp_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_Ftp_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Ftp.class, com.google.backstory.Ftp.Builder.class); } @@ -292,13 +292,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.Ftp) com.google.backstory.FtpOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Ftp_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Ftp_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_Ftp_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_Ftp_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Ftp.class, com.google.backstory.Ftp.Builder.class); } @@ -320,7 +320,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm.internal_static_google_backstory_Ftp_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Ftp_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Group.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Group.java index 52af1beb4e38..750a2bee5fb4 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Group.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Group.java @@ -59,13 +59,13 @@ private Group() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Group_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Group_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_Group_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_Group_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Group.class, com.google.backstory.Group.Builder.class); } @@ -647,13 +647,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.Group) com.google.backstory.GroupOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Group_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Group_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_Group_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_Group_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Group.class, com.google.backstory.Group.Builder.class); } @@ -698,7 +698,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm.internal_static_google_backstory_Group_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Group_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/GroupedFields.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/GroupedFields.java index 5b9f6fceb43f..2ce6f534c47d 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/GroupedFields.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/GroupedFields.java @@ -64,13 +64,13 @@ private GroupedFields() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_GroupedFields_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_GroupedFields_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_GroupedFields_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.GroupedFields.class, @@ -913,13 +913,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.GroupedFields) com.google.backstory.GroupedFieldsOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_GroupedFields_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_GroupedFields_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_GroupedFields_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.GroupedFields.class, @@ -950,7 +950,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm.internal_static_google_backstory_GroupedFields_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_GroupedFields_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Hardware.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Hardware.java index 199652cc51d3..202be2c839d7 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Hardware.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Hardware.java @@ -61,13 +61,13 @@ private Hardware() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Hardware_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Hardware_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_Hardware_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_Hardware_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Hardware.class, com.google.backstory.Hardware.Builder.class); } @@ -660,13 +660,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.Hardware) com.google.backstory.HardwareOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Hardware_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Hardware_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_Hardware_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_Hardware_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Hardware.class, com.google.backstory.Hardware.Builder.class); } @@ -696,7 +696,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm.internal_static_google_backstory_Hardware_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Hardware_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Http.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Http.java index bb37bf42bb3e..35e06cc29f02 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Http.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Http.java @@ -60,13 +60,13 @@ private Http() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Http_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Http_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_Http_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_Http_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Http.class, com.google.backstory.Http.Builder.class); } @@ -457,13 +457,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.Http) com.google.backstory.HttpOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Http_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Http_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_Http_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_Http_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Http.class, com.google.backstory.Http.Builder.class); } @@ -488,7 +488,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm.internal_static_google_backstory_Http_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Http_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Int64Sequence.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Int64Sequence.java index 6227887f22dc..fde30e78eaba 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Int64Sequence.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Int64Sequence.java @@ -56,13 +56,13 @@ private Int64Sequence() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Int64Sequence_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Int64Sequence_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_Int64Sequence_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Int64Sequence.class, @@ -312,13 +312,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.Int64Sequence) com.google.backstory.Int64SequenceOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Int64Sequence_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Int64Sequence_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_Int64Sequence_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Int64Sequence.class, @@ -342,7 +342,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm.internal_static_google_backstory_Int64Sequence_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Int64Sequence_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Investigation.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Investigation.java index ea2953017d12..9f58d6e336c8 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Investigation.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Investigation.java @@ -65,13 +65,13 @@ private Investigation() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Investigation_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Investigation_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_Investigation_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Investigation.class, @@ -922,13 +922,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.Investigation) com.google.backstory.InvestigationOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Investigation_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Investigation_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_Investigation_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Investigation.class, @@ -961,7 +961,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm.internal_static_google_backstory_Investigation_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Investigation_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Label.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Label.java index 0d6f992a10ae..27102619b079 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Label.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Label.java @@ -58,13 +58,13 @@ private Label() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Label_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Label_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_Label_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_Label_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Label.class, com.google.backstory.Label.Builder.class); } @@ -446,13 +446,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.Label) com.google.backstory.LabelOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Label_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Label_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_Label_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_Label_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Label.class, com.google.backstory.Label.Builder.class); } @@ -477,7 +477,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm.internal_static_google_backstory_Label_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Label_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/LinuxUtmp.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/LinuxUtmp.java index 43a302f9ef74..d13f79c6b2d5 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/LinuxUtmp.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/LinuxUtmp.java @@ -56,13 +56,13 @@ private LinuxUtmp() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_LinuxUtmp_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_LinuxUtmp_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_LinuxUtmp_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_LinuxUtmp_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.LinuxUtmp.class, com.google.backstory.LinuxUtmp.Builder.class); } @@ -608,13 +608,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.LinuxUtmp) com.google.backstory.LinuxUtmpOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_LinuxUtmp_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_LinuxUtmp_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_LinuxUtmp_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_LinuxUtmp_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.LinuxUtmp.class, com.google.backstory.LinuxUtmp.Builder.class); } @@ -636,7 +636,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm.internal_static_google_backstory_LinuxUtmp_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_LinuxUtmp_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Location.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Location.java index 1845fdadcf4a..b0cdb4246af2 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Location.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Location.java @@ -61,13 +61,13 @@ private Location() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Location_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Location_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_Location_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_Location_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Location.class, com.google.backstory.Location.Builder.class); } @@ -756,13 +756,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.Location) com.google.backstory.LocationOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Location_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Location_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_Location_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_Location_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Location.class, com.google.backstory.Location.Builder.class); } @@ -805,7 +805,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm.internal_static_google_backstory_Location_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Location_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Metadata.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Metadata.java index 3725b4b7c2b8..3bccd7b1a1d7 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Metadata.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Metadata.java @@ -70,13 +70,13 @@ private Metadata() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Metadata_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Metadata_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_Metadata_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_Metadata_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Metadata.class, com.google.backstory.Metadata.Builder.class); } @@ -6204,13 +6204,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.Metadata) com.google.backstory.MetadataOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Metadata_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Metadata_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_Metadata_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_Metadata_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Metadata.class, com.google.backstory.Metadata.Builder.class); } @@ -6303,7 +6303,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm.internal_static_google_backstory_Metadata_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Metadata_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Network.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Network.java index 3aec56ffbfb3..e1180ec6e44b 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Network.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Network.java @@ -68,13 +68,13 @@ private Network() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Network_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Network_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_Network_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_Network_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Network.class, com.google.backstory.Network.Builder.class); } @@ -4786,13 +4786,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.Network) com.google.backstory.NetworkOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Network_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Network_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_Network_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_Network_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Network.class, com.google.backstory.Network.Builder.class); } @@ -4895,7 +4895,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm.internal_static_google_backstory_Network_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Network_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Noun.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Noun.java index 136ceabe425f..796a1f8e680e 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Noun.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Noun.java @@ -79,13 +79,13 @@ private Noun() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Noun_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Noun_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_Noun_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_Noun_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Noun.class, com.google.backstory.Noun.Builder.class); } @@ -3257,13 +3257,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.Noun) com.google.backstory.NounOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Noun_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Noun_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_Noun_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_Noun_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Noun.class, com.google.backstory.Noun.Builder.class); } @@ -3460,7 +3460,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm.internal_static_google_backstory_Noun_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Noun_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/NtfsFileMetadata.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/NtfsFileMetadata.java index ef010f0fe023..9e90ba705f1d 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/NtfsFileMetadata.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/NtfsFileMetadata.java @@ -56,13 +56,13 @@ private NtfsFileMetadata() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_NtfsFileMetadata_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_NtfsFileMetadata_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_NtfsFileMetadata_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.NtfsFileMetadata.class, @@ -651,13 +651,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.NtfsFileMetadata) com.google.backstory.NtfsFileMetadataOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_NtfsFileMetadata_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_NtfsFileMetadata_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_NtfsFileMetadata_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.NtfsFileMetadata.class, @@ -726,7 +726,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm.internal_static_google_backstory_NtfsFileMetadata_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_NtfsFileMetadata_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/OutlookMetadata.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/OutlookMetadata.java index c7478b16f0b7..278ae5c0fe2d 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/OutlookMetadata.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/OutlookMetadata.java @@ -58,13 +58,13 @@ private OutlookMetadata() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_OutlookMetadata_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_OutlookMetadata_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_OutlookMetadata_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.OutlookMetadata.class, @@ -449,13 +449,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.OutlookMetadata) com.google.backstory.OutlookMetadataOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_OutlookMetadata_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_OutlookMetadata_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_OutlookMetadata_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.OutlookMetadata.class, @@ -482,7 +482,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm.internal_static_google_backstory_OutlookMetadata_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_OutlookMetadata_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/PDFInfo.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/PDFInfo.java index 88b1468effe5..7d9f665bfd4b 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/PDFInfo.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/PDFInfo.java @@ -57,13 +57,13 @@ private PDFInfo() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_PDFInfo_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_PDFInfo_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_PDFInfo_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_PDFInfo_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.PDFInfo.class, com.google.backstory.PDFInfo.Builder.class); } @@ -885,13 +885,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.PDFInfo) com.google.backstory.PDFInfoOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_PDFInfo_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_PDFInfo_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_PDFInfo_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_PDFInfo_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.PDFInfo.class, com.google.backstory.PDFInfo.Builder.class); } @@ -934,7 +934,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm.internal_static_google_backstory_PDFInfo_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_PDFInfo_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/PeFileMetadata.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/PeFileMetadata.java index 7a9faf052e8a..88522d3ad5b9 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/PeFileMetadata.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/PeFileMetadata.java @@ -56,13 +56,13 @@ private PeFileMetadata() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_PeFileMetadata_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_PeFileMetadata_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_PeFileMetadata_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.PeFileMetadata.class, @@ -294,13 +294,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.PeFileMetadata) com.google.backstory.PeFileMetadataOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_PeFileMetadata_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_PeFileMetadata_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_PeFileMetadata_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.PeFileMetadata.class, @@ -324,7 +324,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm.internal_static_google_backstory_PeFileMetadata_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_PeFileMetadata_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Permission.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Permission.java index 5762cfc61adf..e6668a792cea 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Permission.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Permission.java @@ -58,13 +58,13 @@ private Permission() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Permission_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Permission_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_Permission_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_Permission_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Permission.class, com.google.backstory.Permission.Builder.class); } @@ -619,13 +619,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.Permission) com.google.backstory.PermissionOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Permission_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Permission_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_Permission_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_Permission_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Permission.class, com.google.backstory.Permission.Builder.class); } @@ -649,7 +649,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm.internal_static_google_backstory_Permission_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Permission_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/PlatformSoftware.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/PlatformSoftware.java index a143bb0b322a..3843a45802c6 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/PlatformSoftware.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/PlatformSoftware.java @@ -58,13 +58,13 @@ private PlatformSoftware() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_PlatformSoftware_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_PlatformSoftware_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_PlatformSoftware_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.PlatformSoftware.class, @@ -408,13 +408,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.PlatformSoftware) com.google.backstory.PlatformSoftwareOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_PlatformSoftware_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_PlatformSoftware_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_PlatformSoftware_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.PlatformSoftware.class, @@ -440,7 +440,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm.internal_static_google_backstory_PlatformSoftware_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_PlatformSoftware_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/PopularityRank.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/PopularityRank.java index 688c44aa6523..b3bca7f8904c 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/PopularityRank.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/PopularityRank.java @@ -57,13 +57,13 @@ private PopularityRank() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_PopularityRank_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_PopularityRank_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_PopularityRank_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.PopularityRank.class, @@ -392,13 +392,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.PopularityRank) com.google.backstory.PopularityRankOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_PopularityRank_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_PopularityRank_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_PopularityRank_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.PopularityRank.class, @@ -437,7 +437,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm.internal_static_google_backstory_PopularityRank_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_PopularityRank_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/PrefetchFileMetadata.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/PrefetchFileMetadata.java index adaf5a961e4c..8d1fe5c047a4 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/PrefetchFileMetadata.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/PrefetchFileMetadata.java @@ -56,14 +56,14 @@ private PrefetchFileMetadata() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_PrefetchFileMetadata_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_PrefetchFileMetadata_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.PrefetchFileMetadata.class, @@ -325,14 +325,14 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.PrefetchFileMetadata) com.google.backstory.PrefetchFileMetadataOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_PrefetchFileMetadata_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_PrefetchFileMetadata_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.PrefetchFileMetadata.class, @@ -357,7 +357,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_PrefetchFileMetadata_descriptor; } diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Prevalence.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Prevalence.java index 78b0592b7f8f..299e3de33882 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Prevalence.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Prevalence.java @@ -55,13 +55,13 @@ private Prevalence(com.google.protobuf.GeneratedMessage.Builder builder) { private Prevalence() {} public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Prevalence_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Prevalence_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_Prevalence_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_Prevalence_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Prevalence.class, com.google.backstory.Prevalence.Builder.class); } @@ -374,13 +374,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.Prevalence) com.google.backstory.PrevalenceOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Prevalence_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Prevalence_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_Prevalence_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_Prevalence_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Prevalence.class, com.google.backstory.Prevalence.Builder.class); } @@ -406,7 +406,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm.internal_static_google_backstory_Prevalence_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Prevalence_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Priority.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Priority.java index e946c7f4383a..026c1a91aa5a 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Priority.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Priority.java @@ -235,7 +235,7 @@ public final com.google.protobuf.Descriptors.EnumDescriptor getDescriptorForType } public static com.google.protobuf.Descriptors.EnumDescriptor getDescriptor() { - return com.google.backstory.Udm.getDescriptor().getEnumTypes().get(3); + return com.google.backstory.UdmProto.getDescriptor().getEnumTypes().get(3); } private static final Priority[] VALUES = values(); diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Process.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Process.java index 094ee74a0de0..3ec71a27ce01 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Process.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Process.java @@ -70,13 +70,13 @@ private Process() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Process_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Process_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_Process_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_Process_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Process.class, com.google.backstory.Process.Builder.class); } @@ -2256,13 +2256,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.Process) com.google.backstory.ProcessOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Process_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Process_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_Process_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_Process_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Process.class, com.google.backstory.Process.Builder.class); } @@ -2339,7 +2339,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm.internal_static_google_backstory_Process_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Process_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/ProxyInfo.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/ProxyInfo.java index 526b6143c201..13430f422b7d 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/ProxyInfo.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/ProxyInfo.java @@ -56,13 +56,13 @@ private ProxyInfo() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_ProxyInfo_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_ProxyInfo_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_ProxyInfo_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_ProxyInfo_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.ProxyInfo.class, com.google.backstory.ProxyInfo.Builder.class); } @@ -572,13 +572,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.ProxyInfo) com.google.backstory.ProxyInfoOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_ProxyInfo_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_ProxyInfo_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_ProxyInfo_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_ProxyInfo_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.ProxyInfo.class, com.google.backstory.ProxyInfo.Builder.class); } @@ -610,7 +610,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm.internal_static_google_backstory_ProxyInfo_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_ProxyInfo_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Reason.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Reason.java index d2dd21e1ce9b..79b399b160cf 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Reason.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Reason.java @@ -189,7 +189,7 @@ public final com.google.protobuf.Descriptors.EnumDescriptor getDescriptorForType } public static com.google.protobuf.Descriptors.EnumDescriptor getDescriptor() { - return com.google.backstory.Udm.getDescriptor().getEnumTypes().get(4); + return com.google.backstory.UdmProto.getDescriptor().getEnumTypes().get(4); } private static final Reason[] VALUES = values(); diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Registry.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Registry.java index ca921785f73b..fed0ab3dcb33 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Registry.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Registry.java @@ -60,13 +60,13 @@ private Registry() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Registry_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Registry_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_Registry_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_Registry_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Registry.class, com.google.backstory.Registry.Builder.class); } @@ -908,13 +908,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.Registry) com.google.backstory.RegistryOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Registry_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Registry_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_Registry_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_Registry_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Registry.class, com.google.backstory.Registry.Builder.class); } @@ -940,7 +940,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm.internal_static_google_backstory_Registry_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Registry_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Reputation.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Reputation.java index c8cac410fa9d..0a9c5af9fcc8 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Reputation.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Reputation.java @@ -166,7 +166,7 @@ public final com.google.protobuf.Descriptors.EnumDescriptor getDescriptorForType } public static com.google.protobuf.Descriptors.EnumDescriptor getDescriptor() { - return com.google.backstory.Udm.getDescriptor().getEnumTypes().get(1); + return com.google.backstory.UdmProto.getDescriptor().getEnumTypes().get(1); } private static final Reputation[] VALUES = values(); diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Resource.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Resource.java index 014dade447db..1e1b090760ed 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Resource.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Resource.java @@ -63,13 +63,13 @@ private Resource() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Resource_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Resource_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_Resource_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_Resource_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Resource.class, com.google.backstory.Resource.Builder.class); } @@ -2104,13 +2104,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.Resource) com.google.backstory.ResourceOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Resource_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Resource_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_Resource_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_Resource_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Resource.class, com.google.backstory.Resource.Builder.class); } @@ -2188,7 +2188,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm.internal_static_google_backstory_Resource_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Resource_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/ResourceUsage.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/ResourceUsage.java index 9fb7d44d1978..3068cb6c71e8 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/ResourceUsage.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/ResourceUsage.java @@ -57,13 +57,13 @@ private ResourceUsage() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_ResourceUsage_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_ResourceUsage_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_ResourceUsage_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.ResourceUsage.class, @@ -357,13 +357,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.ResourceUsage) com.google.backstory.ResourceUsageOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_ResourceUsage_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_ResourceUsage_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_ResourceUsage_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.ResourceUsage.class, @@ -388,7 +388,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm.internal_static_google_backstory_ResourceUsage_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_ResourceUsage_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Role.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Role.java index 539a5d2577b6..e61ff3d9ab1f 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Role.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Role.java @@ -58,13 +58,13 @@ private Role() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Role_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Role_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_Role_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_Role_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Role.class, com.google.backstory.Role.Builder.class); } @@ -570,13 +570,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.Role) com.google.backstory.RoleOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Role_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Role_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_Role_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_Role_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Role.class, com.google.backstory.Role.Builder.class); } @@ -600,7 +600,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm.internal_static_google_backstory_Role_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Role_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/SSLCertificate.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/SSLCertificate.java index 66ae92a66283..90099b13fbb2 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/SSLCertificate.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/SSLCertificate.java @@ -60,13 +60,13 @@ private SSLCertificate() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_SSLCertificate_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_SSLCertificate_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SSLCertificate_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.SSLCertificate.class, @@ -167,14 +167,14 @@ private CertSignature() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SSLCertificate_CertSignature_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SSLCertificate_CertSignature_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.SSLCertificate.CertSignature.class, @@ -470,14 +470,14 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.SSLCertificate.CertSignature) com.google.backstory.SSLCertificate.CertSignatureOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SSLCertificate_CertSignature_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SSLCertificate_CertSignature_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.SSLCertificate.CertSignature.class, @@ -502,7 +502,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SSLCertificate_CertSignature_descriptor; } @@ -990,14 +990,14 @@ private AuthorityKeyId() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SSLCertificate_AuthorityKeyId_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SSLCertificate_AuthorityKeyId_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.SSLCertificate.AuthorityKeyId.class, @@ -1294,14 +1294,14 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.SSLCertificate.AuthorityKeyId) com.google.backstory.SSLCertificate.AuthorityKeyIdOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SSLCertificate_AuthorityKeyId_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SSLCertificate_AuthorityKeyId_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.SSLCertificate.AuthorityKeyId.class, @@ -1326,7 +1326,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SSLCertificate_AuthorityKeyId_descriptor; } @@ -2109,14 +2109,14 @@ private Extension() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SSLCertificate_Extension_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SSLCertificate_Extension_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.SSLCertificate.Extension.class, @@ -3045,14 +3045,14 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.SSLCertificate.Extension) com.google.backstory.SSLCertificate.ExtensionOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SSLCertificate_Extension_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SSLCertificate_Extension_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.SSLCertificate.Extension.class, @@ -3102,7 +3102,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SSLCertificate_Extension_descriptor; } @@ -5105,14 +5105,14 @@ private Subject() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SSLCertificate_Subject_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SSLCertificate_Subject_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.SSLCertificate.Subject.class, @@ -5656,14 +5656,14 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.SSLCertificate.Subject) com.google.backstory.SSLCertificate.SubjectOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SSLCertificate_Subject_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SSLCertificate_Subject_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.SSLCertificate.Subject.class, @@ -5692,7 +5692,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SSLCertificate_Subject_descriptor; } @@ -6691,14 +6691,14 @@ private RSA() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SSLCertificate_RSA_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SSLCertificate_RSA_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.SSLCertificate.RSA.class, @@ -7021,14 +7021,14 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.SSLCertificate.RSA) com.google.backstory.SSLCertificate.RSAOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SSLCertificate_RSA_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SSLCertificate_RSA_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.SSLCertificate.RSA.class, @@ -7054,7 +7054,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SSLCertificate_RSA_descriptor; } @@ -7608,13 +7608,13 @@ private EC() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_SSLCertificate_EC_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_SSLCertificate_EC_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SSLCertificate_EC_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.SSLCertificate.EC.class, @@ -7909,14 +7909,14 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.SSLCertificate.EC) com.google.backstory.SSLCertificate.ECOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SSLCertificate_EC_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SSLCertificate_EC_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.SSLCertificate.EC.class, @@ -7941,7 +7941,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SSLCertificate_EC_descriptor; } @@ -8439,14 +8439,14 @@ private PublicKey() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SSLCertificate_PublicKey_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SSLCertificate_PublicKey_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.SSLCertificate.PublicKey.class, @@ -8746,14 +8746,14 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.SSLCertificate.PublicKey) com.google.backstory.SSLCertificate.PublicKeyOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SSLCertificate_PublicKey_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SSLCertificate_PublicKey_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.SSLCertificate.PublicKey.class, @@ -8791,7 +8791,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SSLCertificate_PublicKey_descriptor; } @@ -9382,14 +9382,14 @@ private Validity(com.google.protobuf.GeneratedMessage.Builder builder) { private Validity() {} public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SSLCertificate_Validity_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SSLCertificate_Validity_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.SSLCertificate.Validity.class, @@ -9688,14 +9688,14 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.SSLCertificate.Validity) com.google.backstory.SSLCertificate.ValidityOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SSLCertificate_Validity_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SSLCertificate_Validity_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.SSLCertificate.Validity.class, @@ -9738,7 +9738,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SSLCertificate_Validity_descriptor; } @@ -11407,13 +11407,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.SSLCertificate) com.google.backstory.SSLCertificateOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_SSLCertificate_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_SSLCertificate_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SSLCertificate_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.SSLCertificate.class, @@ -11504,7 +11504,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm.internal_static_google_backstory_SSLCertificate_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_SSLCertificate_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/ScheduledAnacronTask.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/ScheduledAnacronTask.java index b73f984d468d..4aa5e266d767 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/ScheduledAnacronTask.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/ScheduledAnacronTask.java @@ -59,14 +59,14 @@ private ScheduledAnacronTask() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_ScheduledAnacronTask_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_ScheduledAnacronTask_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.ScheduledAnacronTask.class, @@ -516,14 +516,14 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.ScheduledAnacronTask) com.google.backstory.ScheduledAnacronTaskOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_ScheduledAnacronTask_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_ScheduledAnacronTask_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.ScheduledAnacronTask.class, @@ -551,7 +551,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_ScheduledAnacronTask_descriptor; } diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/ScheduledCronTask.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/ScheduledCronTask.java index 60ffafd8da3d..d09b91a0c324 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/ScheduledCronTask.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/ScheduledCronTask.java @@ -64,13 +64,13 @@ private ScheduledCronTask() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_ScheduledCronTask_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_ScheduledCronTask_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_ScheduledCronTask_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.ScheduledCronTask.class, @@ -823,13 +823,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.ScheduledCronTask) com.google.backstory.ScheduledCronTaskOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_ScheduledCronTask_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_ScheduledCronTask_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_ScheduledCronTask_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.ScheduledCronTask.class, @@ -861,7 +861,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm.internal_static_google_backstory_ScheduledCronTask_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_ScheduledCronTask_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/ScheduledTask.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/ScheduledTask.java index 0aefee5f0dca..1d42d25d0dd0 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/ScheduledTask.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/ScheduledTask.java @@ -60,13 +60,13 @@ private ScheduledTask() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_ScheduledTask_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_ScheduledTask_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_ScheduledTask_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.ScheduledTask.class, @@ -502,13 +502,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.ScheduledTask) com.google.backstory.ScheduledTaskOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_ScheduledTask_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_ScheduledTask_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_ScheduledTask_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.ScheduledTask.class, @@ -538,7 +538,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm.internal_static_google_backstory_ScheduledTask_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_ScheduledTask_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/SecurityResult.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/SecurityResult.java index bf4a3354104d..140fa3b33a64 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/SecurityResult.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/SecurityResult.java @@ -103,7 +103,7 @@ private SecurityResult() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_SecurityResult_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_SecurityResult_descriptor; } @SuppressWarnings({"rawtypes"}) @@ -121,7 +121,7 @@ protected com.google.protobuf.MapFieldReflectionAccessor internalGetMapFieldRefl @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SecurityResult_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.SecurityResult.class, @@ -3491,14 +3491,14 @@ private Association() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SecurityResult_Association_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SecurityResult_Association_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.SecurityResult.Association.class, @@ -3797,14 +3797,14 @@ private AssociationAlias() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SecurityResult_Association_AssociationAlias_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SecurityResult_Association_AssociationAlias_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.SecurityResult.Association.AssociationAlias.class, @@ -4105,14 +4105,14 @@ public static final class Builder // @@protoc_insertion_point(builder_implements:google.backstory.SecurityResult.Association.AssociationAlias) com.google.backstory.SecurityResult.Association.AssociationAliasOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SecurityResult_Association_AssociationAlias_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SecurityResult_Association_AssociationAlias_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.SecurityResult.Association.AssociationAlias.class, @@ -4138,7 +4138,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SecurityResult_Association_AssociationAlias_descriptor; } @@ -5873,14 +5873,14 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.SecurityResult.Association) com.google.backstory.SecurityResult.AssociationOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SecurityResult_Association_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SecurityResult_Association_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.SecurityResult.Association.class, @@ -5968,7 +5968,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SecurityResult_Association_descriptor; } @@ -9854,14 +9854,14 @@ private Source() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SecurityResult_Source_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SecurityResult_Source_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.SecurityResult.Source.class, @@ -10356,14 +10356,14 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.SecurityResult.Source) com.google.backstory.SecurityResult.SourceOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SecurityResult_Source_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SecurityResult_Source_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.SecurityResult.Source.class, @@ -10399,7 +10399,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SecurityResult_Source_descriptor; } @@ -11722,14 +11722,14 @@ private ProviderMLVerdict() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SecurityResult_ProviderMLVerdict_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SecurityResult_ProviderMLVerdict_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.SecurityResult.ProviderMLVerdict.class, @@ -12228,14 +12228,14 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.SecurityResult.ProviderMLVerdict) com.google.backstory.SecurityResult.ProviderMLVerdictOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SecurityResult_ProviderMLVerdict_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SecurityResult_ProviderMLVerdict_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.SecurityResult.ProviderMLVerdict.class, @@ -12276,7 +12276,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SecurityResult_ProviderMLVerdict_descriptor; } @@ -13722,14 +13722,14 @@ private AnalystVerdict() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SecurityResult_AnalystVerdict_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SecurityResult_AnalystVerdict_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.SecurityResult.AnalystVerdict.class, @@ -14050,14 +14050,14 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.SecurityResult.AnalystVerdict) com.google.backstory.SecurityResult.AnalystVerdictOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SecurityResult_AnalystVerdict_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SecurityResult_AnalystVerdict_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.SecurityResult.AnalystVerdict.class, @@ -14096,7 +14096,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SecurityResult_AnalystVerdict_descriptor; } @@ -14830,14 +14830,14 @@ private IoCStats() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SecurityResult_IoCStats_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SecurityResult_IoCStats_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.SecurityResult.IoCStats.class, @@ -15350,14 +15350,14 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.SecurityResult.IoCStats) com.google.backstory.SecurityResult.IoCStatsOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SecurityResult_IoCStats_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SecurityResult_IoCStats_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.SecurityResult.IoCStats.class, @@ -15388,7 +15388,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SecurityResult_IoCStats_descriptor; } @@ -16687,14 +16687,14 @@ private VerdictInfo() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SecurityResult_VerdictInfo_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SecurityResult_VerdictInfo_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.SecurityResult.VerdictInfo.class, @@ -17601,14 +17601,14 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.SecurityResult.VerdictInfo) com.google.backstory.SecurityResult.VerdictInfoOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SecurityResult_VerdictInfo_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SecurityResult_VerdictInfo_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.SecurityResult.VerdictInfo.class, @@ -17672,7 +17672,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SecurityResult_VerdictInfo_descriptor; } @@ -19968,14 +19968,14 @@ private Verdict() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SecurityResult_Verdict_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SecurityResult_Verdict_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.SecurityResult.Verdict.class, @@ -20403,14 +20403,14 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.SecurityResult.Verdict) com.google.backstory.SecurityResult.VerdictOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SecurityResult_Verdict_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SecurityResult_Verdict_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.SecurityResult.Verdict.class, @@ -20456,7 +20456,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SecurityResult_Verdict_descriptor; } @@ -21432,14 +21432,14 @@ private ThreatCollectionItem() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SecurityResult_ThreatCollectionItem_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SecurityResult_ThreatCollectionItem_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.SecurityResult.ThreatCollectionItem.class, @@ -21812,14 +21812,14 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.SecurityResult.ThreatCollectionItem) com.google.backstory.SecurityResult.ThreatCollectionItemOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SecurityResult_ThreatCollectionItem_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SecurityResult_ThreatCollectionItem_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.SecurityResult.ThreatCollectionItem.class, @@ -21845,7 +21845,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SecurityResult_ThreatCollectionItem_descriptor; } @@ -23565,7 +23565,7 @@ private static final class VariablesDefaultEntryHolder { defaultEntry = com.google.protobuf.MapEntry .newDefaultInstance( - com.google.backstory.Udm + com.google.backstory.UdmProto .internal_static_google_backstory_SecurityResult_VariablesEntry_descriptor, com.google.protobuf.WireFormat.FieldType.STRING, "", @@ -26100,7 +26100,7 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.SecurityResult) com.google.backstory.SecurityResultOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_SecurityResult_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_SecurityResult_descriptor; } @SuppressWarnings({"rawtypes"}) @@ -26128,7 +26128,7 @@ protected com.google.protobuf.MapFieldReflectionAccessor internalGetMutableMapFi @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SecurityResult_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.SecurityResult.class, @@ -26287,7 +26287,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm.internal_static_google_backstory_SecurityResult_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_SecurityResult_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Service.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Service.java index 595c8120f9bb..eff9b17b46bd 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Service.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Service.java @@ -60,13 +60,13 @@ private Service() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Service_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Service_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_Service_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_Service_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Service.class, com.google.backstory.Service.Builder.class); } @@ -1361,13 +1361,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.Service) com.google.backstory.ServiceOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Service_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Service_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_Service_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_Service_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Service.class, com.google.backstory.Service.Builder.class); } @@ -1393,7 +1393,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm.internal_static_google_backstory_Service_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Service_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/SignatureInfo.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/SignatureInfo.java index f0c42a2eeab1..da3e5ea8cd59 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/SignatureInfo.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/SignatureInfo.java @@ -54,13 +54,13 @@ private SignatureInfo(com.google.protobuf.GeneratedMessage.Builder builder) { private SignatureInfo() {} public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_SignatureInfo_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_SignatureInfo_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SignatureInfo_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.SignatureInfo.class, @@ -365,13 +365,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.SignatureInfo) com.google.backstory.SignatureInfoOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_SignatureInfo_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_SignatureInfo_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SignatureInfo_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.SignatureInfo.class, @@ -414,7 +414,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm.internal_static_google_backstory_SignatureInfo_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_SignatureInfo_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/SignerInfo.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/SignerInfo.java index 8c1044d1cf66..e52d08c20c34 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/SignerInfo.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/SignerInfo.java @@ -59,13 +59,13 @@ private SignerInfo() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_SignerInfo_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_SignerInfo_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_SignerInfo_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_SignerInfo_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.SignerInfo.class, com.google.backstory.SignerInfo.Builder.class); } @@ -581,13 +581,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.SignerInfo) com.google.backstory.SignerInfoOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_SignerInfo_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_SignerInfo_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_SignerInfo_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_SignerInfo_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.SignerInfo.class, com.google.backstory.SignerInfo.Builder.class); } @@ -612,7 +612,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm.internal_static_google_backstory_SignerInfo_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_SignerInfo_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Smtp.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Smtp.java index f097131fa200..e19be6d6833f 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Smtp.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Smtp.java @@ -60,13 +60,13 @@ private Smtp() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Smtp_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Smtp_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_Smtp_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_Smtp_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Smtp.class, com.google.backstory.Smtp.Builder.class); } @@ -644,13 +644,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.Smtp) com.google.backstory.SmtpOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Smtp_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Smtp_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_Smtp_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_Smtp_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Smtp.class, com.google.backstory.Smtp.Builder.class); } @@ -678,7 +678,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm.internal_static_google_backstory_Smtp_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Smtp_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Software.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Software.java index 270c7f2e4a4b..fdbe4cdbf35e 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Software.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Software.java @@ -60,13 +60,13 @@ private Software() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Software_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Software_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_Software_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_Software_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Software.class, com.google.backstory.Software.Builder.class); } @@ -574,13 +574,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.Software) com.google.backstory.SoftwareOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Software_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Software_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_Software_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_Software_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Software.class, com.google.backstory.Software.Builder.class); } @@ -612,7 +612,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm.internal_static_google_backstory_Software_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Software_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Srum.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Srum.java index 46d15646d349..b454c6899256 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Srum.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Srum.java @@ -58,13 +58,13 @@ private Srum() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Srum_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Srum_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_Srum_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_Srum_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Srum.class, com.google.backstory.Srum.Builder.class); } @@ -564,13 +564,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.Srum) com.google.backstory.SrumOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Srum_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Srum_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_Srum_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_Srum_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Srum.class, com.google.backstory.Srum.Builder.class); } @@ -600,7 +600,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm.internal_static_google_backstory_Srum_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Srum_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Status.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Status.java index 0003813dd8e8..62db8d52ea5c 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Status.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Status.java @@ -212,7 +212,7 @@ public final com.google.protobuf.Descriptors.EnumDescriptor getDescriptorForType } public static com.google.protobuf.Descriptors.EnumDescriptor getDescriptor() { - return com.google.backstory.Udm.getDescriptor().getEnumTypes().get(2); + return com.google.backstory.UdmProto.getDescriptor().getEnumTypes().get(2); } private static final Status[] VALUES = values(); diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/StringSequence.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/StringSequence.java index e4cf934ddae7..df5168af92b9 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/StringSequence.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/StringSequence.java @@ -56,13 +56,13 @@ private StringSequence() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_StringSequence_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_StringSequence_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_StringSequence_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.StringSequence.class, @@ -316,13 +316,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.StringSequence) com.google.backstory.StringSequenceOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_StringSequence_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_StringSequence_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_StringSequence_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.StringSequence.class, @@ -346,7 +346,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm.internal_static_google_backstory_StringSequence_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_StringSequence_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/StringToInt64MapEntry.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/StringToInt64MapEntry.java index 28d7155bbfc0..4794463b5414 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/StringToInt64MapEntry.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/StringToInt64MapEntry.java @@ -48,14 +48,14 @@ private StringToInt64MapEntry() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_StringToInt64MapEntry_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_StringToInt64MapEntry_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.StringToInt64MapEntry.class, @@ -352,14 +352,14 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.StringToInt64MapEntry) com.google.backstory.StringToInt64MapEntryOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_StringToInt64MapEntry_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_StringToInt64MapEntry_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.StringToInt64MapEntry.class, @@ -384,7 +384,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_StringToInt64MapEntry_descriptor; } diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/SystemEventDetails.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/SystemEventDetails.java index da81d68e2fa0..6c0462da6394 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/SystemEventDetails.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/SystemEventDetails.java @@ -58,13 +58,13 @@ private SystemEventDetails() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_SystemEventDetails_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_SystemEventDetails_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SystemEventDetails_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.SystemEventDetails.class, @@ -421,14 +421,14 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.SystemEventDetails) com.google.backstory.SystemEventDetailsOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SystemEventDetails_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SystemEventDetails_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.SystemEventDetails.class, @@ -454,7 +454,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SystemEventDetails_descriptor; } diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Tags.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Tags.java index eb13112809dd..f9daa79704a7 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Tags.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Tags.java @@ -59,13 +59,13 @@ private Tags() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Tags_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Tags_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_Tags_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_Tags_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Tags.class, com.google.backstory.Tags.Builder.class); } @@ -388,13 +388,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.Tags) com.google.backstory.TagsOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Tags_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Tags_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_Tags_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_Tags_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Tags.class, com.google.backstory.Tags.Builder.class); } @@ -417,7 +417,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm.internal_static_google_backstory_Tags_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Tags_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/ThreatVerdict.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/ThreatVerdict.java index 3f918a68b9a3..cd1db25700a4 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/ThreatVerdict.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/ThreatVerdict.java @@ -189,7 +189,7 @@ public final com.google.protobuf.Descriptors.EnumDescriptor getDescriptorForType } public static com.google.protobuf.Descriptors.EnumDescriptor getDescriptor() { - return com.google.backstory.Udm.getDescriptor().getEnumTypes().get(5); + return com.google.backstory.UdmProto.getDescriptor().getEnumTypes().get(5); } private static final ThreatVerdict[] VALUES = values(); diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/TimeOff.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/TimeOff.java index a2803187a400..fc90cd1065d9 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/TimeOff.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/TimeOff.java @@ -57,13 +57,13 @@ private TimeOff() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_TimeOff_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_TimeOff_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_TimeOff_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_TimeOff_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.TimeOff.class, com.google.backstory.TimeOff.Builder.class); } @@ -358,13 +358,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.TimeOff) com.google.backstory.TimeOffOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_TimeOff_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_TimeOff_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_TimeOff_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_TimeOff_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.TimeOff.class, com.google.backstory.TimeOff.Builder.class); } @@ -400,7 +400,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm.internal_static_google_backstory_TimeOff_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_TimeOff_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Tls.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Tls.java index 0d4c096fca81..a2e80c5b8264 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Tls.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Tls.java @@ -60,13 +60,13 @@ private Tls() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Tls_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Tls_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_Tls_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_Tls_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Tls.class, com.google.backstory.Tls.Builder.class); } @@ -285,13 +285,13 @@ private Client() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Tls_Client_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Tls_Client_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_Tls_Client_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_Tls_Client_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Tls.Client.class, com.google.backstory.Tls.Client.Builder.class); } @@ -798,13 +798,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.Tls.Client) com.google.backstory.Tls.ClientOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Tls_Client_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Tls_Client_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_Tls_Client_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Tls.Client.class, @@ -845,7 +845,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm.internal_static_google_backstory_Tls_Client_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Tls_Client_descriptor; } @java.lang.Override @@ -1907,13 +1907,13 @@ private Server() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Tls_Server_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Tls_Server_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_Tls_Server_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_Tls_Server_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Tls.Server.class, com.google.backstory.Tls.Server.Builder.class); } @@ -2274,13 +2274,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.Tls.Server) com.google.backstory.Tls.ServerOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Tls_Server_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Tls_Server_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_Tls_Server_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Tls.Server.class, @@ -2319,7 +2319,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm.internal_static_google_backstory_Tls_Server_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Tls_Server_descriptor; } @java.lang.Override @@ -3577,13 +3577,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.Tls) com.google.backstory.TlsOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Tls_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Tls_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_Tls_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_Tls_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Tls.class, com.google.backstory.Tls.Builder.class); } @@ -3631,7 +3631,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm.internal_static_google_backstory_Tls_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Tls_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Tracker.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Tracker.java index a60b69943c8a..265d6f87be9a 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Tracker.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Tracker.java @@ -58,13 +58,13 @@ private Tracker() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Tracker_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Tracker_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_Tracker_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_Tracker_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Tracker.class, com.google.backstory.Tracker.Builder.class); } @@ -482,13 +482,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.Tracker) com.google.backstory.TrackerOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Tracker_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Tracker_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_Tracker_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_Tracker_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Tracker.class, com.google.backstory.Tracker.Builder.class); } @@ -526,7 +526,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm.internal_static_google_backstory_Tracker_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Tracker_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Tunnels.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Tunnels.java index a7310ff5fb79..594b3a921777 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Tunnels.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Tunnels.java @@ -57,13 +57,13 @@ private Tunnels() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Tunnels_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Tunnels_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_Tunnels_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_Tunnels_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Tunnels.class, com.google.backstory.Tunnels.Builder.class); } @@ -355,13 +355,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.Tunnels) com.google.backstory.TunnelsOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Tunnels_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Tunnels_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_Tunnels_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_Tunnels_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Tunnels.class, com.google.backstory.Tunnels.Builder.class); } @@ -384,7 +384,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm.internal_static_google_backstory_Tunnels_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Tunnels_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/UDM.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/UDM.java index f15e2a6e5fa5..66831dc45392 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/UDM.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/UDM.java @@ -58,13 +58,13 @@ private UDM() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_UDM_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_UDM_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_UDM_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_UDM_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.UDM.class, com.google.backstory.UDM.Builder.class); } @@ -1242,13 +1242,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.UDM) com.google.backstory.UDMOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_UDM_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_UDM_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_UDM_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_UDM_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.UDM.class, com.google.backstory.UDM.Builder.class); } @@ -1361,7 +1361,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm.internal_static_google_backstory_UDM_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_UDM_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Udm.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/UdmProto.java similarity index 99% rename from java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Udm.java rename to java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/UdmProto.java index c6a6d75b74f2..af097d223cf2 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Udm.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/UdmProto.java @@ -21,8 +21,8 @@ package com.google.backstory; @com.google.protobuf.Generated -public final class Udm extends com.google.protobuf.GeneratedFile { - private Udm() {} +public final class UdmProto extends com.google.protobuf.GeneratedFile { + private UdmProto() {} static { com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( @@ -31,7 +31,7 @@ private Udm() {} /* minor= */ 33, /* patch= */ 6, /* suffix= */ "", - "Udm"); + "UdmProto"); } public static void registerAllExtensions(com.google.protobuf.ExtensionRegistryLite registry) {} diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Uint64Sequence.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Uint64Sequence.java index 6cd3fe13a4a7..a2aa7a745d8c 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Uint64Sequence.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Uint64Sequence.java @@ -56,13 +56,13 @@ private Uint64Sequence() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Uint64Sequence_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Uint64Sequence_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_Uint64Sequence_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Uint64Sequence.class, @@ -312,13 +312,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.Uint64Sequence) com.google.backstory.Uint64SequenceOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Uint64Sequence_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Uint64Sequence_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_Uint64Sequence_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Uint64Sequence.class, @@ -342,7 +342,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm.internal_static_google_backstory_Uint64Sequence_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Uint64Sequence_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Url.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Url.java index d13a0d84ce76..b2a0258c0f60 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Url.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Url.java @@ -62,13 +62,13 @@ private Url() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Url_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Url_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_Url_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_Url_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Url.class, com.google.backstory.Url.Builder.class); } @@ -1063,13 +1063,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.Url) com.google.backstory.UrlOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Url_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Url_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_Url_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_Url_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Url.class, com.google.backstory.Url.Builder.class); } @@ -1138,7 +1138,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm.internal_static_google_backstory_Url_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Url_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/User.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/User.java index e82c2277414d..56ac8ff14f45 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/User.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/User.java @@ -77,13 +77,13 @@ private User() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_User_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_User_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_User_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_User_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.User.class, com.google.backstory.User.Builder.class); } @@ -2989,13 +2989,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.User) com.google.backstory.UserOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_User_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_User_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_User_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_User_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.User.class, com.google.backstory.User.Builder.class); } @@ -3133,7 +3133,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm.internal_static_google_backstory_User_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_User_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/UserAssist.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/UserAssist.java index aa7a406af22a..5339b78b4391 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/UserAssist.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/UserAssist.java @@ -55,13 +55,13 @@ private UserAssist(com.google.protobuf.GeneratedMessage.Builder builder) { private UserAssist() {} public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_UserAssist_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_UserAssist_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_UserAssist_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_UserAssist_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.UserAssist.class, com.google.backstory.UserAssist.Builder.class); } @@ -386,13 +386,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.UserAssist) com.google.backstory.UserAssistOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_UserAssist_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_UserAssist_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_UserAssist_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_UserAssist_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.UserAssist.class, com.google.backstory.UserAssist.Builder.class); } @@ -430,7 +430,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm.internal_static_google_backstory_UserAssist_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_UserAssist_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/UsnJournal.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/UsnJournal.java index 8b00c2642622..3bc1322a14c0 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/UsnJournal.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/UsnJournal.java @@ -60,13 +60,13 @@ private UsnJournal() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_UsnJournal_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_UsnJournal_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_UsnJournal_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_UsnJournal_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.UsnJournal.class, com.google.backstory.UsnJournal.Builder.class); } @@ -2012,13 +2012,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.UsnJournal) com.google.backstory.UsnJournalOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_UsnJournal_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_UsnJournal_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_UsnJournal_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_UsnJournal_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.UsnJournal.class, com.google.backstory.UsnJournal.Builder.class); } @@ -2045,7 +2045,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm.internal_static_google_backstory_UsnJournal_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_UsnJournal_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Verdict.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Verdict.java index 3ac218719f90..b9a50be63fe7 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Verdict.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Verdict.java @@ -167,7 +167,7 @@ public final com.google.protobuf.Descriptors.EnumDescriptor getDescriptorForType } public static com.google.protobuf.Descriptors.EnumDescriptor getDescriptor() { - return com.google.backstory.Udm.getDescriptor().getEnumTypes().get(0); + return com.google.backstory.UdmProto.getDescriptor().getEnumTypes().get(0); } private static final Verdict[] VALUES = values(); diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Volume.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Volume.java index d97525f0be11..d1bc2e57f3f8 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Volume.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Volume.java @@ -59,13 +59,13 @@ private Volume() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Volume_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Volume_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_Volume_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_Volume_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Volume.class, com.google.backstory.Volume.Builder.class); } @@ -537,13 +537,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.Volume) com.google.backstory.VolumeOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Volume_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Volume_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_Volume_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_Volume_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Volume.class, com.google.backstory.Volume.Builder.class); } @@ -570,7 +570,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm.internal_static_google_backstory_Volume_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Volume_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Vulnerabilities.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Vulnerabilities.java index d10c0ea93562..bd647d4b4e5e 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Vulnerabilities.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Vulnerabilities.java @@ -57,13 +57,13 @@ private Vulnerabilities() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Vulnerabilities_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Vulnerabilities_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_Vulnerabilities_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Vulnerabilities.class, @@ -321,13 +321,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.Vulnerabilities) com.google.backstory.VulnerabilitiesOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Vulnerabilities_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Vulnerabilities_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_Vulnerabilities_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Vulnerabilities.class, @@ -357,7 +357,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm.internal_static_google_backstory_Vulnerabilities_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Vulnerabilities_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Vulnerability.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Vulnerability.java index c6d01e3b43d9..7dba393b2424 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Vulnerability.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Vulnerability.java @@ -66,13 +66,13 @@ private Vulnerability() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Vulnerability_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Vulnerability_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_Vulnerability_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Vulnerability.class, @@ -1516,13 +1516,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.Vulnerability) com.google.backstory.VulnerabilityOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Vulnerability_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Vulnerability_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_Vulnerability_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Vulnerability.class, @@ -1595,7 +1595,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm.internal_static_google_backstory_Vulnerability_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Vulnerability_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/WindowsEventLog.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/WindowsEventLog.java index 001471430ba6..cfbbdf566912 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/WindowsEventLog.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/WindowsEventLog.java @@ -59,13 +59,13 @@ private WindowsEventLog() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_WindowsEventLog_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_WindowsEventLog_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_WindowsEventLog_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.WindowsEventLog.class, @@ -669,13 +669,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.WindowsEventLog) com.google.backstory.WindowsEventLogOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_WindowsEventLog_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_WindowsEventLog_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_WindowsEventLog_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.WindowsEventLog.class, @@ -701,7 +701,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm.internal_static_google_backstory_WindowsEventLog_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_WindowsEventLog_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/WindowsScheduledTask.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/WindowsScheduledTask.java index 103861c5b3ef..0208a43ede16 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/WindowsScheduledTask.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/WindowsScheduledTask.java @@ -61,14 +61,14 @@ private WindowsScheduledTask() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_WindowsScheduledTask_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_WindowsScheduledTask_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.WindowsScheduledTask.class, @@ -784,14 +784,14 @@ private TaskAction() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_WindowsScheduledTask_TaskAction_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_WindowsScheduledTask_TaskAction_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.WindowsScheduledTask.TaskAction.class, @@ -1525,14 +1525,14 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.WindowsScheduledTask.TaskAction) com.google.backstory.WindowsScheduledTask.TaskActionOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_WindowsScheduledTask_TaskAction_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_WindowsScheduledTask_TaskAction_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.WindowsScheduledTask.TaskAction.class, @@ -1560,7 +1560,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_WindowsScheduledTask_TaskAction_descriptor; } @@ -2568,14 +2568,14 @@ private TaskTrigger() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_WindowsScheduledTask_TaskTrigger_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_WindowsScheduledTask_TaskTrigger_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.WindowsScheduledTask.TaskTrigger.class, @@ -3376,14 +3376,14 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.WindowsScheduledTask.TaskTrigger) com.google.backstory.WindowsScheduledTask.TaskTriggerOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_WindowsScheduledTask_TaskTrigger_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_WindowsScheduledTask_TaskTrigger_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.WindowsScheduledTask.TaskTrigger.class, @@ -3423,7 +3423,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_WindowsScheduledTask_TaskTrigger_descriptor; } @@ -4697,14 +4697,14 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.WindowsScheduledTask) com.google.backstory.WindowsScheduledTaskOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_WindowsScheduledTask_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_WindowsScheduledTask_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.WindowsScheduledTask.class, @@ -4746,7 +4746,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_WindowsScheduledTask_descriptor; } diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/WmiPersistenceItem.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/WmiPersistenceItem.java index c02fe11d21fd..7f1d2a7abc15 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/WmiPersistenceItem.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/WmiPersistenceItem.java @@ -63,13 +63,13 @@ private WmiPersistenceItem() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_WmiPersistenceItem_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_WmiPersistenceItem_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_WmiPersistenceItem_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.WmiPersistenceItem.class, @@ -794,14 +794,14 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.WmiPersistenceItem) com.google.backstory.WmiPersistenceItemOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_WmiPersistenceItem_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_WmiPersistenceItem_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.WmiPersistenceItem.class, @@ -834,7 +834,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_WmiPersistenceItem_descriptor; } diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/X509.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/X509.java index c3c108e399f8..f9b045cf7e95 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/X509.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/X509.java @@ -60,13 +60,13 @@ private X509() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_X509_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_X509_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_X509_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_X509_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.X509.class, com.google.backstory.X509.Builder.class); } @@ -544,13 +544,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.X509) com.google.backstory.X509OrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_X509_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_X509_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_X509_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_X509_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.X509.class, com.google.backstory.X509.Builder.class); } @@ -576,7 +576,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm.internal_static_google_backstory_X509_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_X509_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/proto/backstory/udm.proto b/java-backstory/proto-google-cloud-backstory/src/main/proto/backstory/udm.proto index d4337b32aa3d..c444827142a6 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/proto/backstory/udm.proto +++ b/java-backstory/proto-google-cloud-backstory/src/main/proto/backstory/udm.proto @@ -31,6 +31,7 @@ option java_multiple_files = true; option java_package = "com.google.backstory"; option php_namespace = "Google\\Backstory"; option ruby_package = "Google::Backstory"; +option java_outer_classname = "UdmProto"; // A Unified Data Model event. message UDM { diff --git a/java-storage/google-cloud-storage/src/test/java/com/google/cloud/storage/it/ITStorageOptionsTest.java b/java-storage/google-cloud-storage/src/test/java/com/google/cloud/storage/it/ITStorageOptionsTest.java index 55ae7ff4154a..898725de2633 100644 --- a/java-storage/google-cloud-storage/src/test/java/com/google/cloud/storage/it/ITStorageOptionsTest.java +++ b/java-storage/google-cloud-storage/src/test/java/com/google/cloud/storage/it/ITStorageOptionsTest.java @@ -95,7 +95,6 @@ public void clientShouldConstructCleanly_directPathXdsOverInterconnect() throws doTest(options); } - @Test public void lackOfProjectIdDoesNotPreventConstruction_http() throws Exception { StorageOptions options = StorageOptions.http().setCredentials(credentials).build(); @@ -118,4 +117,3 @@ private static void doTest(StorageOptions options) throws Exception { try (Storage ignore = options.getService()) {} } } - From 41c06de68a92da9ab5a5f0a02185299e52ef317a Mon Sep 17 00:00:00 2001 From: Nidhi Nandwani Date: Thu, 6 Aug 2026 07:35:31 +0000 Subject: [PATCH 08/13] Revert "fix: rename outer class Udm to UdmProto to resolve Windows case-insensitivity clash with UDM" This reverts commit 12d52bc8f9bf2eca498ae683e3659321120b14c2. --- .../google/backstory/AnalyticsMetadata.java | 10 +- .../google/backstory/AppCompatMetadata.java | 10 +- .../java/com/google/backstory/Artifact.java | 10 +- .../com/google/backstory/ArtifactClient.java | 10 +- .../main/java/com/google/backstory/Asset.java | 10 +- .../com/google/backstory/AttackDetails.java | 30 +++--- .../java/com/google/backstory/Attribute.java | 10 +- .../com/google/backstory/Authentication.java | 10 +- .../com/google/backstory/BoolSequence.java | 10 +- .../java/com/google/backstory/Browser.java | 20 ++-- .../com/google/backstory/BytesSequence.java | 10 +- .../com/google/backstory/Certificate.java | 10 +- .../main/java/com/google/backstory/Cloud.java | 10 +- .../backstory/CollectionOuterClass.java | 4 +- .../java/com/google/backstory/DNSRecord.java | 10 +- .../main/java/com/google/backstory/Dhcp.java | 20 ++-- .../main/java/com/google/backstory/Dns.java | 30 +++--- .../java/com/google/backstory/Domain.java | 10 +- .../com/google/backstory/DoubleSequence.java | 10 +- .../main/java/com/google/backstory/Email.java | 10 +- .../com/google/backstory/EntityProto.java | 4 +- .../java/com/google/backstory/ExifInfo.java | 10 +- .../java/com/google/backstory/Extensions.java | 10 +- .../java/com/google/backstory/Favicon.java | 10 +- .../main/java/com/google/backstory/File.java | 10 +- .../com/google/backstory/FileMetadata.java | 10 +- .../backstory/FileMetadataCodesign.java | 10 +- .../google/backstory/FileMetadataImports.java | 10 +- .../com/google/backstory/FileMetadataPE.java | 10 +- .../backstory/FileMetadataPeResourceInfo.java | 10 +- .../google/backstory/FileMetadataSection.java | 10 +- .../backstory/FileMetadataSignatureInfo.java | 10 +- .../com/google/backstory/FindingVariable.java | 10 +- .../main/java/com/google/backstory/Ftp.java | 10 +- .../main/java/com/google/backstory/Group.java | 10 +- .../com/google/backstory/GroupedFields.java | 10 +- .../java/com/google/backstory/Hardware.java | 10 +- .../main/java/com/google/backstory/Http.java | 10 +- .../com/google/backstory/Int64Sequence.java | 10 +- .../com/google/backstory/Investigation.java | 10 +- .../main/java/com/google/backstory/Label.java | 10 +- .../java/com/google/backstory/LinuxUtmp.java | 10 +- .../java/com/google/backstory/Location.java | 10 +- .../java/com/google/backstory/Metadata.java | 10 +- .../java/com/google/backstory/Network.java | 10 +- .../main/java/com/google/backstory/Noun.java | 10 +- .../google/backstory/NtfsFileMetadata.java | 10 +- .../com/google/backstory/OutlookMetadata.java | 10 +- .../java/com/google/backstory/PDFInfo.java | 10 +- .../com/google/backstory/PeFileMetadata.java | 10 +- .../java/com/google/backstory/Permission.java | 10 +- .../google/backstory/PlatformSoftware.java | 10 +- .../com/google/backstory/PopularityRank.java | 10 +- .../backstory/PrefetchFileMetadata.java | 10 +- .../java/com/google/backstory/Prevalence.java | 10 +- .../java/com/google/backstory/Priority.java | 2 +- .../java/com/google/backstory/Process.java | 10 +- .../java/com/google/backstory/ProxyInfo.java | 10 +- .../java/com/google/backstory/Reason.java | 2 +- .../java/com/google/backstory/Registry.java | 10 +- .../java/com/google/backstory/Reputation.java | 2 +- .../java/com/google/backstory/Resource.java | 10 +- .../com/google/backstory/ResourceUsage.java | 10 +- .../main/java/com/google/backstory/Role.java | 10 +- .../com/google/backstory/SSLCertificate.java | 90 ++++++++-------- .../backstory/ScheduledAnacronTask.java | 10 +- .../google/backstory/ScheduledCronTask.java | 10 +- .../com/google/backstory/ScheduledTask.java | 10 +- .../com/google/backstory/SecurityResult.java | 102 +++++++++--------- .../java/com/google/backstory/Service.java | 10 +- .../com/google/backstory/SignatureInfo.java | 10 +- .../java/com/google/backstory/SignerInfo.java | 10 +- .../main/java/com/google/backstory/Smtp.java | 10 +- .../java/com/google/backstory/Software.java | 10 +- .../main/java/com/google/backstory/Srum.java | 10 +- .../java/com/google/backstory/Status.java | 2 +- .../com/google/backstory/StringSequence.java | 10 +- .../backstory/StringToInt64MapEntry.java | 10 +- .../google/backstory/SystemEventDetails.java | 10 +- .../main/java/com/google/backstory/Tags.java | 10 +- .../com/google/backstory/ThreatVerdict.java | 2 +- .../java/com/google/backstory/TimeOff.java | 10 +- .../main/java/com/google/backstory/Tls.java | 30 +++--- .../java/com/google/backstory/Tracker.java | 10 +- .../java/com/google/backstory/Tunnels.java | 10 +- .../main/java/com/google/backstory/UDM.java | 10 +- .../backstory/{UdmProto.java => Udm.java} | 6 +- .../com/google/backstory/Uint64Sequence.java | 10 +- .../main/java/com/google/backstory/Url.java | 10 +- .../main/java/com/google/backstory/User.java | 10 +- .../java/com/google/backstory/UserAssist.java | 10 +- .../java/com/google/backstory/UsnJournal.java | 10 +- .../java/com/google/backstory/Verdict.java | 2 +- .../java/com/google/backstory/Volume.java | 10 +- .../com/google/backstory/Vulnerabilities.java | 10 +- .../com/google/backstory/Vulnerability.java | 10 +- .../com/google/backstory/WindowsEventLog.java | 10 +- .../backstory/WindowsScheduledTask.java | 30 +++--- .../google/backstory/WmiPersistenceItem.java | 10 +- .../main/java/com/google/backstory/X509.java | 10 +- .../src/main/proto/backstory/udm.proto | 1 - .../storage/it/ITStorageOptionsTest.java | 2 + 102 files changed, 606 insertions(+), 605 deletions(-) rename java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/{UdmProto.java => Udm.java} (99%) diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/AnalyticsMetadata.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/AnalyticsMetadata.java index d846b5a3e104..5ea9d3a67163 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/AnalyticsMetadata.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/AnalyticsMetadata.java @@ -56,13 +56,13 @@ private AnalyticsMetadata() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_AnalyticsMetadata_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_AnalyticsMetadata_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_AnalyticsMetadata_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.AnalyticsMetadata.class, @@ -295,13 +295,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.AnalyticsMetadata) com.google.backstory.AnalyticsMetadataOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_AnalyticsMetadata_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_AnalyticsMetadata_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_AnalyticsMetadata_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.AnalyticsMetadata.class, @@ -325,7 +325,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.UdmProto.internal_static_google_backstory_AnalyticsMetadata_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_AnalyticsMetadata_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/AppCompatMetadata.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/AppCompatMetadata.java index 2da111c67d9c..32f4bd093202 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/AppCompatMetadata.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/AppCompatMetadata.java @@ -56,13 +56,13 @@ private AppCompatMetadata() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_AppCompatMetadata_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_AppCompatMetadata_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_AppCompatMetadata_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.AppCompatMetadata.class, @@ -354,13 +354,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.AppCompatMetadata) com.google.backstory.AppCompatMetadataOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_AppCompatMetadata_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_AppCompatMetadata_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_AppCompatMetadata_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.AppCompatMetadata.class, @@ -386,7 +386,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.UdmProto.internal_static_google_backstory_AppCompatMetadata_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_AppCompatMetadata_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Artifact.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Artifact.java index 74c5c0d0ffb6..2a9453908df6 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Artifact.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Artifact.java @@ -63,13 +63,13 @@ private Artifact() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Artifact_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_Artifact_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Artifact_fieldAccessorTable + return com.google.backstory.Udm.internal_static_google_backstory_Artifact_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Artifact.class, com.google.backstory.Artifact.Builder.class); } @@ -1454,13 +1454,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.Artifact) com.google.backstory.ArtifactOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Artifact_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_Artifact_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Artifact_fieldAccessorTable + return com.google.backstory.Udm.internal_static_google_backstory_Artifact_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Artifact.class, com.google.backstory.Artifact.Builder.class); } @@ -1560,7 +1560,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Artifact_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_Artifact_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/ArtifactClient.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/ArtifactClient.java index d6ee2654e6f8..9ebcc116ba15 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/ArtifactClient.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/ArtifactClient.java @@ -57,13 +57,13 @@ private ArtifactClient() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_ArtifactClient_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_ArtifactClient_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_ArtifactClient_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.ArtifactClient.class, @@ -401,13 +401,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.ArtifactClient) com.google.backstory.ArtifactClientOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_ArtifactClient_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_ArtifactClient_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_ArtifactClient_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.ArtifactClient.class, @@ -432,7 +432,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.UdmProto.internal_static_google_backstory_ArtifactClient_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_ArtifactClient_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Asset.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Asset.java index 24c97c1bbb7d..96f6cbd0c76a 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Asset.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Asset.java @@ -70,13 +70,13 @@ private Asset() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Asset_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_Asset_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Asset_fieldAccessorTable + return com.google.backstory.Udm.internal_static_google_backstory_Asset_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Asset.class, com.google.backstory.Asset.Builder.class); } @@ -2493,13 +2493,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.Asset) com.google.backstory.AssetOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Asset_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_Asset_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Asset_fieldAccessorTable + return com.google.backstory.Udm.internal_static_google_backstory_Asset_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Asset.class, com.google.backstory.Asset.Builder.class); } @@ -2630,7 +2630,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Asset_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_Asset_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/AttackDetails.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/AttackDetails.java index 98d4ccaa235f..293bd084ad87 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/AttackDetails.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/AttackDetails.java @@ -58,13 +58,13 @@ private AttackDetails() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_AttackDetails_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_AttackDetails_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_AttackDetails_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.AttackDetails.class, @@ -165,14 +165,14 @@ private Tactic() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_AttackDetails_Tactic_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_AttackDetails_Tactic_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.AttackDetails.Tactic.class, @@ -468,14 +468,14 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.AttackDetails.Tactic) com.google.backstory.AttackDetails.TacticOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_AttackDetails_Tactic_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_AttackDetails_Tactic_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.AttackDetails.Tactic.class, @@ -500,7 +500,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_AttackDetails_Tactic_descriptor; } @@ -1040,14 +1040,14 @@ private Technique() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_AttackDetails_Technique_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_AttackDetails_Technique_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.AttackDetails.Technique.class, @@ -1467,14 +1467,14 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.AttackDetails.Technique) com.google.backstory.AttackDetails.TechniqueOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_AttackDetails_Technique_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_AttackDetails_Technique_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.AttackDetails.Technique.class, @@ -1501,7 +1501,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_AttackDetails_Technique_descriptor; } @@ -2542,13 +2542,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.AttackDetails) com.google.backstory.AttackDetailsOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_AttackDetails_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_AttackDetails_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_AttackDetails_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.AttackDetails.class, @@ -2586,7 +2586,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.UdmProto.internal_static_google_backstory_AttackDetails_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_AttackDetails_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Attribute.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Attribute.java index f7e7bf5fbbb3..5811d574c65b 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Attribute.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Attribute.java @@ -61,13 +61,13 @@ private Attribute() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Attribute_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_Attribute_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Attribute_fieldAccessorTable + return com.google.backstory.Udm.internal_static_google_backstory_Attribute_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Attribute.class, com.google.backstory.Attribute.Builder.class); } @@ -718,13 +718,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.Attribute) com.google.backstory.AttributeOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Attribute_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_Attribute_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Attribute_fieldAccessorTable + return com.google.backstory.Udm.internal_static_google_backstory_Attribute_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Attribute.class, com.google.backstory.Attribute.Builder.class); } @@ -795,7 +795,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Attribute_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_Attribute_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Authentication.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Authentication.java index 32958e04e14f..100787b21d30 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Authentication.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Authentication.java @@ -74,13 +74,13 @@ private Authentication() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Authentication_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_Authentication_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_Authentication_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Authentication.class, @@ -1760,13 +1760,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.Authentication) com.google.backstory.AuthenticationOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Authentication_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_Authentication_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_Authentication_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Authentication.class, @@ -1793,7 +1793,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Authentication_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_Authentication_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/BoolSequence.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/BoolSequence.java index a9afd0e8d0ef..c30e66aa1a04 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/BoolSequence.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/BoolSequence.java @@ -56,13 +56,13 @@ private BoolSequence() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_BoolSequence_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_BoolSequence_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto.internal_static_google_backstory_BoolSequence_fieldAccessorTable + return com.google.backstory.Udm.internal_static_google_backstory_BoolSequence_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.BoolSequence.class, com.google.backstory.BoolSequence.Builder.class); @@ -308,13 +308,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.BoolSequence) com.google.backstory.BoolSequenceOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_BoolSequence_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_BoolSequence_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_BoolSequence_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.BoolSequence.class, @@ -338,7 +338,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.UdmProto.internal_static_google_backstory_BoolSequence_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_BoolSequence_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Browser.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Browser.java index 1bc832345715..ac2a562cb412 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Browser.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Browser.java @@ -64,13 +64,13 @@ private Browser() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Browser_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_Browser_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Browser_fieldAccessorTable + return com.google.backstory.Udm.internal_static_google_backstory_Browser_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Browser.class, com.google.backstory.Browser.Builder.class); } @@ -1229,13 +1229,13 @@ private Cookie() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Browser_Cookie_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_Browser_Cookie_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_Browser_Cookie_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Browser.Cookie.class, @@ -2109,13 +2109,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.Browser.Cookie) com.google.backstory.Browser.CookieOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Browser_Cookie_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_Browser_Cookie_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_Browser_Cookie_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Browser.Cookie.class, @@ -2162,7 +2162,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Browser_Cookie_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_Browser_Cookie_descriptor; } @java.lang.Override @@ -4492,13 +4492,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.Browser) com.google.backstory.BrowserOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Browser_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_Browser_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Browser_fieldAccessorTable + return com.google.backstory.Udm.internal_static_google_backstory_Browser_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Browser.class, com.google.backstory.Browser.Builder.class); } @@ -4565,7 +4565,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Browser_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_Browser_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/BytesSequence.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/BytesSequence.java index f6c708067834..481570db39ca 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/BytesSequence.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/BytesSequence.java @@ -56,13 +56,13 @@ private BytesSequence() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_BytesSequence_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_BytesSequence_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_BytesSequence_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.BytesSequence.class, @@ -301,13 +301,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.BytesSequence) com.google.backstory.BytesSequenceOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_BytesSequence_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_BytesSequence_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_BytesSequence_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.BytesSequence.class, @@ -331,7 +331,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.UdmProto.internal_static_google_backstory_BytesSequence_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_BytesSequence_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Certificate.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Certificate.java index c4b9b5b8eae8..0f7c9b65445b 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Certificate.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Certificate.java @@ -62,13 +62,13 @@ private Certificate() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Certificate_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_Certificate_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Certificate_fieldAccessorTable + return com.google.backstory.Udm.internal_static_google_backstory_Certificate_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Certificate.class, com.google.backstory.Certificate.Builder.class); } @@ -797,13 +797,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.Certificate) com.google.backstory.CertificateOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Certificate_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_Certificate_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_Certificate_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Certificate.class, @@ -853,7 +853,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Certificate_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_Certificate_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Cloud.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Cloud.java index 8b7820c19adf..d7557a759387 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Cloud.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Cloud.java @@ -57,13 +57,13 @@ private Cloud() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Cloud_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_Cloud_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Cloud_fieldAccessorTable + return com.google.backstory.Udm.internal_static_google_backstory_Cloud_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Cloud.class, com.google.backstory.Cloud.Builder.class); } @@ -680,13 +680,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.Cloud) com.google.backstory.CloudOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Cloud_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_Cloud_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Cloud_fieldAccessorTable + return com.google.backstory.Udm.internal_static_google_backstory_Cloud_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Cloud.class, com.google.backstory.Cloud.Builder.class); } @@ -729,7 +729,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Cloud_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_Cloud_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/CollectionOuterClass.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/CollectionOuterClass.java index db440a9da9db..2b61b85f7e19 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/CollectionOuterClass.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/CollectionOuterClass.java @@ -190,7 +190,7 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { new com.google.protobuf.Descriptors.FileDescriptor[] { com.google.backstory.EntityProto.getDescriptor(), com.google.backstory.IdOuterClass.getDescriptor(), - com.google.backstory.UdmProto.getDescriptor(), + com.google.backstory.Udm.getDescriptor(), com.google.protobuf.DurationProto.getDescriptor(), com.google.protobuf.StructProto.getDescriptor(), com.google.protobuf.TimestampProto.getDescriptor(), @@ -289,7 +289,7 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { descriptor.resolveAllFeaturesImmutable(); com.google.backstory.EntityProto.getDescriptor(); com.google.backstory.IdOuterClass.getDescriptor(); - com.google.backstory.UdmProto.getDescriptor(); + com.google.backstory.Udm.getDescriptor(); com.google.protobuf.DurationProto.getDescriptor(); com.google.protobuf.StructProto.getDescriptor(); com.google.protobuf.TimestampProto.getDescriptor(); diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/DNSRecord.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/DNSRecord.java index e2f331d0396c..f8886475be07 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/DNSRecord.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/DNSRecord.java @@ -58,13 +58,13 @@ private DNSRecord() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_DNSRecord_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_DNSRecord_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto.internal_static_google_backstory_DNSRecord_fieldAccessorTable + return com.google.backstory.Udm.internal_static_google_backstory_DNSRecord_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.DNSRecord.class, com.google.backstory.DNSRecord.Builder.class); } @@ -755,13 +755,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.DNSRecord) com.google.backstory.DNSRecordOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_DNSRecord_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_DNSRecord_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto.internal_static_google_backstory_DNSRecord_fieldAccessorTable + return com.google.backstory.Udm.internal_static_google_backstory_DNSRecord_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.DNSRecord.class, com.google.backstory.DNSRecord.Builder.class); } @@ -820,7 +820,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.UdmProto.internal_static_google_backstory_DNSRecord_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_DNSRecord_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Dhcp.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Dhcp.java index de6ad4b5afdf..f183eea2da47 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Dhcp.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Dhcp.java @@ -69,13 +69,13 @@ private Dhcp() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Dhcp_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_Dhcp_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Dhcp_fieldAccessorTable + return com.google.backstory.Udm.internal_static_google_backstory_Dhcp_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Dhcp.class, com.google.backstory.Dhcp.Builder.class); } @@ -669,13 +669,13 @@ private Option() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Dhcp_Option_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_Dhcp_Option_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_Dhcp_Option_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Dhcp.Option.class, @@ -901,13 +901,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.Dhcp.Option) com.google.backstory.Dhcp.OptionOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Dhcp_Option_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_Dhcp_Option_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_Dhcp_Option_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Dhcp.Option.class, @@ -932,7 +932,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Dhcp_Option_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_Dhcp_Option_descriptor; } @java.lang.Override @@ -2399,13 +2399,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.Dhcp) com.google.backstory.DhcpOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Dhcp_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_Dhcp_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Dhcp_fieldAccessorTable + return com.google.backstory.Udm.internal_static_google_backstory_Dhcp_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Dhcp.class, com.google.backstory.Dhcp.Builder.class); } @@ -2453,7 +2453,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Dhcp_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_Dhcp_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Dns.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Dns.java index 698af41c5088..e1ad1a8af6cb 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Dns.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Dns.java @@ -59,13 +59,13 @@ private Dns() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Dns_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_Dns_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Dns_fieldAccessorTable + return com.google.backstory.Udm.internal_static_google_backstory_Dns_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Dns.class, com.google.backstory.Dns.Builder.class); } @@ -200,13 +200,13 @@ private Question() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Dns_Question_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_Dns_Question_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_Dns_Question_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Dns.Question.class, @@ -562,13 +562,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.Dns.Question) com.google.backstory.Dns.QuestionOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Dns_Question_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_Dns_Question_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_Dns_Question_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Dns.Question.class, @@ -608,7 +608,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Dns_Question_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_Dns_Question_descriptor; } @java.lang.Override @@ -1371,14 +1371,14 @@ private ResourceRecord() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_Dns_ResourceRecord_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_Dns_ResourceRecord_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Dns.ResourceRecord.class, @@ -1789,14 +1789,14 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.Dns.ResourceRecord) com.google.backstory.Dns.ResourceRecordOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_Dns_ResourceRecord_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_Dns_ResourceRecord_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Dns.ResourceRecord.class, @@ -1825,7 +1825,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_Dns_ResourceRecord_descriptor; } @@ -3248,13 +3248,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.Dns) com.google.backstory.DnsOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Dns_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_Dns_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Dns_fieldAccessorTable + return com.google.backstory.Udm.internal_static_google_backstory_Dns_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Dns.class, com.google.backstory.Dns.Builder.class); } @@ -3311,7 +3311,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Dns_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_Dns_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Domain.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Domain.java index f8c68b8f7ecd..7e27ceefdcc0 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Domain.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Domain.java @@ -68,13 +68,13 @@ private Domain() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Domain_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_Domain_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Domain_fieldAccessorTable + return com.google.backstory.Udm.internal_static_google_backstory_Domain_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Domain.class, com.google.backstory.Domain.Builder.class); } @@ -2275,13 +2275,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.Domain) com.google.backstory.DomainOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Domain_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_Domain_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Domain_fieldAccessorTable + return com.google.backstory.Udm.internal_static_google_backstory_Domain_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Domain.class, com.google.backstory.Domain.Builder.class); } @@ -2441,7 +2441,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Domain_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_Domain_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/DoubleSequence.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/DoubleSequence.java index 498b122a2e52..3c5d47f6426d 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/DoubleSequence.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/DoubleSequence.java @@ -56,13 +56,13 @@ private DoubleSequence() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_DoubleSequence_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_DoubleSequence_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_DoubleSequence_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.DoubleSequence.class, @@ -309,13 +309,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.DoubleSequence) com.google.backstory.DoubleSequenceOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_DoubleSequence_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_DoubleSequence_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_DoubleSequence_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.DoubleSequence.class, @@ -339,7 +339,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.UdmProto.internal_static_google_backstory_DoubleSequence_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_DoubleSequence_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Email.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Email.java index ed4066533af6..9a07fe40056f 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Email.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Email.java @@ -63,13 +63,13 @@ private Email() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Email_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_Email_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Email_fieldAccessorTable + return com.google.backstory.Udm.internal_static_google_backstory_Email_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Email.class, com.google.backstory.Email.Builder.class); } @@ -823,13 +823,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.Email) com.google.backstory.EmailOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Email_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_Email_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Email_fieldAccessorTable + return com.google.backstory.Udm.internal_static_google_backstory_Email_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Email.class, com.google.backstory.Email.Builder.class); } @@ -858,7 +858,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Email_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_Email_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/EntityProto.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/EntityProto.java index 53c461a987d2..e9df6d066235 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/EntityProto.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/EntityProto.java @@ -296,7 +296,7 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { descriptorData, new com.google.protobuf.Descriptors.FileDescriptor[] { com.google.backstory.EntityRiskProto.getDescriptor(), - com.google.backstory.UdmProto.getDescriptor(), + com.google.backstory.Udm.getDescriptor(), com.google.protobuf.StructProto.getDescriptor(), com.google.protobuf.TimestampProto.getDescriptor(), com.google.type.IntervalProto.getDescriptor(), @@ -387,7 +387,7 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { }); descriptor.resolveAllFeaturesImmutable(); com.google.backstory.EntityRiskProto.getDescriptor(); - com.google.backstory.UdmProto.getDescriptor(); + com.google.backstory.Udm.getDescriptor(); com.google.protobuf.StructProto.getDescriptor(); com.google.protobuf.TimestampProto.getDescriptor(); com.google.type.IntervalProto.getDescriptor(); diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/ExifInfo.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/ExifInfo.java index b26a877a192e..d991f715c1be 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/ExifInfo.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/ExifInfo.java @@ -59,13 +59,13 @@ private ExifInfo() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_ExifInfo_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_ExifInfo_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto.internal_static_google_backstory_ExifInfo_fieldAccessorTable + return com.google.backstory.Udm.internal_static_google_backstory_ExifInfo_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.ExifInfo.class, com.google.backstory.ExifInfo.Builder.class); } @@ -577,13 +577,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.ExifInfo) com.google.backstory.ExifInfoOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_ExifInfo_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_ExifInfo_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto.internal_static_google_backstory_ExifInfo_fieldAccessorTable + return com.google.backstory.Udm.internal_static_google_backstory_ExifInfo_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.ExifInfo.class, com.google.backstory.ExifInfo.Builder.class); } @@ -623,7 +623,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.UdmProto.internal_static_google_backstory_ExifInfo_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_ExifInfo_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Extensions.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Extensions.java index 755c25556da3..72b09be14960 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Extensions.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Extensions.java @@ -54,13 +54,13 @@ private Extensions(com.google.protobuf.GeneratedMessage.Builder builder) { private Extensions() {} public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Extensions_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_Extensions_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Extensions_fieldAccessorTable + return com.google.backstory.Udm.internal_static_google_backstory_Extensions_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Extensions.class, com.google.backstory.Extensions.Builder.class); } @@ -902,13 +902,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.Extensions) com.google.backstory.ExtensionsOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Extensions_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_Extensions_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Extensions_fieldAccessorTable + return com.google.backstory.Udm.internal_static_google_backstory_Extensions_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Extensions.class, com.google.backstory.Extensions.Builder.class); } @@ -997,7 +997,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Extensions_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_Extensions_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Favicon.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Favicon.java index 1819113d4d2f..da9c541934f9 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Favicon.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Favicon.java @@ -57,13 +57,13 @@ private Favicon() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Favicon_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_Favicon_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Favicon_fieldAccessorTable + return com.google.backstory.Udm.internal_static_google_backstory_Favicon_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Favicon.class, com.google.backstory.Favicon.Builder.class); } @@ -355,13 +355,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.Favicon) com.google.backstory.FaviconOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Favicon_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_Favicon_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Favicon_fieldAccessorTable + return com.google.backstory.Udm.internal_static_google_backstory_Favicon_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Favicon.class, com.google.backstory.Favicon.Builder.class); } @@ -384,7 +384,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Favicon_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_Favicon_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/File.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/File.java index 8341fc9010d5..44d2727782ee 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/File.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/File.java @@ -72,13 +72,13 @@ private File() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_File_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_File_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto.internal_static_google_backstory_File_fieldAccessorTable + return com.google.backstory.Udm.internal_static_google_backstory_File_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.File.class, com.google.backstory.File.Builder.class); } @@ -7157,13 +7157,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.File) com.google.backstory.FileOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_File_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_File_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto.internal_static_google_backstory_File_fieldAccessorTable + return com.google.backstory.Udm.internal_static_google_backstory_File_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.File.class, com.google.backstory.File.Builder.class); } @@ -7330,7 +7330,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.UdmProto.internal_static_google_backstory_File_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_File_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/FileMetadata.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/FileMetadata.java index 3a8f77feab1c..f5dfc8a98197 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/FileMetadata.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/FileMetadata.java @@ -57,13 +57,13 @@ private FileMetadata(com.google.protobuf.GeneratedMessage.Builder builder) { private FileMetadata() {} public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_FileMetadata_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_FileMetadata_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto.internal_static_google_backstory_FileMetadata_fieldAccessorTable + return com.google.backstory.Udm.internal_static_google_backstory_FileMetadata_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.FileMetadata.class, com.google.backstory.FileMetadata.Builder.class); @@ -307,13 +307,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.FileMetadata) com.google.backstory.FileMetadataOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_FileMetadata_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_FileMetadata_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_FileMetadata_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.FileMetadata.class, @@ -350,7 +350,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.UdmProto.internal_static_google_backstory_FileMetadata_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_FileMetadata_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/FileMetadataCodesign.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/FileMetadataCodesign.java index 41a0680af51f..ca1636d1e6d5 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/FileMetadataCodesign.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/FileMetadataCodesign.java @@ -58,14 +58,14 @@ private FileMetadataCodesign() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_FileMetadataCodesign_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_FileMetadataCodesign_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.FileMetadataCodesign.class, @@ -491,14 +491,14 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.FileMetadataCodesign) com.google.backstory.FileMetadataCodesignOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_FileMetadataCodesign_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_FileMetadataCodesign_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.FileMetadataCodesign.class, @@ -538,7 +538,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_FileMetadataCodesign_descriptor; } diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/FileMetadataImports.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/FileMetadataImports.java index b40de62006c1..3b366287597a 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/FileMetadataImports.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/FileMetadataImports.java @@ -57,13 +57,13 @@ private FileMetadataImports() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_FileMetadataImports_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_FileMetadataImports_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_FileMetadataImports_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.FileMetadataImports.class, @@ -380,14 +380,14 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.FileMetadataImports) com.google.backstory.FileMetadataImportsOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_FileMetadataImports_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_FileMetadataImports_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.FileMetadataImports.class, @@ -412,7 +412,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_FileMetadataImports_descriptor; } diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/FileMetadataPE.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/FileMetadataPE.java index df1e5cdc5551..0ea82f1cc9b9 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/FileMetadataPE.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/FileMetadataPE.java @@ -63,13 +63,13 @@ private FileMetadataPE() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_FileMetadataPE_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_FileMetadataPE_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_FileMetadataPE_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.FileMetadataPE.class, @@ -1235,13 +1235,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.FileMetadataPE) com.google.backstory.FileMetadataPEOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_FileMetadataPE_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_FileMetadataPE_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_FileMetadataPE_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.FileMetadataPE.class, @@ -1349,7 +1349,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.UdmProto.internal_static_google_backstory_FileMetadataPE_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_FileMetadataPE_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/FileMetadataPeResourceInfo.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/FileMetadataPeResourceInfo.java index 70afbcf8a837..b21ea5e4afa9 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/FileMetadataPeResourceInfo.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/FileMetadataPeResourceInfo.java @@ -59,14 +59,14 @@ private FileMetadataPeResourceInfo() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_FileMetadataPeResourceInfo_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_FileMetadataPeResourceInfo_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.FileMetadataPeResourceInfo.class, @@ -524,14 +524,14 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.FileMetadataPeResourceInfo) com.google.backstory.FileMetadataPeResourceInfoOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_FileMetadataPeResourceInfo_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_FileMetadataPeResourceInfo_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.FileMetadataPeResourceInfo.class, @@ -559,7 +559,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_FileMetadataPeResourceInfo_descriptor; } diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/FileMetadataSection.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/FileMetadataSection.java index e231d32196c0..2111b807cead 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/FileMetadataSection.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/FileMetadataSection.java @@ -57,13 +57,13 @@ private FileMetadataSection() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_FileMetadataSection_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_FileMetadataSection_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_FileMetadataSection_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.FileMetadataSection.class, @@ -446,14 +446,14 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.FileMetadataSection) com.google.backstory.FileMetadataSectionOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_FileMetadataSection_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_FileMetadataSection_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.FileMetadataSection.class, @@ -481,7 +481,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_FileMetadataSection_descriptor; } diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/FileMetadataSignatureInfo.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/FileMetadataSignatureInfo.java index c91f9846c8b9..2a9fe2b3eaad 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/FileMetadataSignatureInfo.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/FileMetadataSignatureInfo.java @@ -59,14 +59,14 @@ private FileMetadataSignatureInfo() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_FileMetadataSignatureInfo_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_FileMetadataSignatureInfo_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.FileMetadataSignatureInfo.class, @@ -611,14 +611,14 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.FileMetadataSignatureInfo) com.google.backstory.FileMetadataSignatureInfoOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_FileMetadataSignatureInfo_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_FileMetadataSignatureInfo_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.FileMetadataSignatureInfo.class, @@ -658,7 +658,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_FileMetadataSignatureInfo_descriptor; } diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/FindingVariable.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/FindingVariable.java index fefb170d9976..3d4c9c85eb92 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/FindingVariable.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/FindingVariable.java @@ -59,13 +59,13 @@ private FindingVariable() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_FindingVariable_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_FindingVariable_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_FindingVariable_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.FindingVariable.class, @@ -1562,13 +1562,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.FindingVariable) com.google.backstory.FindingVariableOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_FindingVariable_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_FindingVariable_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_FindingVariable_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.FindingVariable.class, @@ -1617,7 +1617,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.UdmProto.internal_static_google_backstory_FindingVariable_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_FindingVariable_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Ftp.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Ftp.java index b4330e50735a..e4acba02f5f3 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Ftp.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Ftp.java @@ -56,13 +56,13 @@ private Ftp() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Ftp_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_Ftp_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Ftp_fieldAccessorTable + return com.google.backstory.Udm.internal_static_google_backstory_Ftp_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Ftp.class, com.google.backstory.Ftp.Builder.class); } @@ -292,13 +292,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.Ftp) com.google.backstory.FtpOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Ftp_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_Ftp_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Ftp_fieldAccessorTable + return com.google.backstory.Udm.internal_static_google_backstory_Ftp_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Ftp.class, com.google.backstory.Ftp.Builder.class); } @@ -320,7 +320,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Ftp_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_Ftp_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Group.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Group.java index 750a2bee5fb4..52af1beb4e38 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Group.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Group.java @@ -59,13 +59,13 @@ private Group() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Group_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_Group_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Group_fieldAccessorTable + return com.google.backstory.Udm.internal_static_google_backstory_Group_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Group.class, com.google.backstory.Group.Builder.class); } @@ -647,13 +647,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.Group) com.google.backstory.GroupOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Group_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_Group_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Group_fieldAccessorTable + return com.google.backstory.Udm.internal_static_google_backstory_Group_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Group.class, com.google.backstory.Group.Builder.class); } @@ -698,7 +698,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Group_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_Group_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/GroupedFields.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/GroupedFields.java index 2ce6f534c47d..5b9f6fceb43f 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/GroupedFields.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/GroupedFields.java @@ -64,13 +64,13 @@ private GroupedFields() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_GroupedFields_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_GroupedFields_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_GroupedFields_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.GroupedFields.class, @@ -913,13 +913,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.GroupedFields) com.google.backstory.GroupedFieldsOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_GroupedFields_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_GroupedFields_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_GroupedFields_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.GroupedFields.class, @@ -950,7 +950,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.UdmProto.internal_static_google_backstory_GroupedFields_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_GroupedFields_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Hardware.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Hardware.java index 202be2c839d7..199652cc51d3 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Hardware.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Hardware.java @@ -61,13 +61,13 @@ private Hardware() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Hardware_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_Hardware_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Hardware_fieldAccessorTable + return com.google.backstory.Udm.internal_static_google_backstory_Hardware_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Hardware.class, com.google.backstory.Hardware.Builder.class); } @@ -660,13 +660,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.Hardware) com.google.backstory.HardwareOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Hardware_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_Hardware_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Hardware_fieldAccessorTable + return com.google.backstory.Udm.internal_static_google_backstory_Hardware_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Hardware.class, com.google.backstory.Hardware.Builder.class); } @@ -696,7 +696,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Hardware_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_Hardware_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Http.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Http.java index 35e06cc29f02..bb37bf42bb3e 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Http.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Http.java @@ -60,13 +60,13 @@ private Http() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Http_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_Http_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Http_fieldAccessorTable + return com.google.backstory.Udm.internal_static_google_backstory_Http_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Http.class, com.google.backstory.Http.Builder.class); } @@ -457,13 +457,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.Http) com.google.backstory.HttpOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Http_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_Http_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Http_fieldAccessorTable + return com.google.backstory.Udm.internal_static_google_backstory_Http_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Http.class, com.google.backstory.Http.Builder.class); } @@ -488,7 +488,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Http_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_Http_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Int64Sequence.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Int64Sequence.java index fde30e78eaba..6227887f22dc 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Int64Sequence.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Int64Sequence.java @@ -56,13 +56,13 @@ private Int64Sequence() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Int64Sequence_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_Int64Sequence_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_Int64Sequence_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Int64Sequence.class, @@ -312,13 +312,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.Int64Sequence) com.google.backstory.Int64SequenceOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Int64Sequence_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_Int64Sequence_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_Int64Sequence_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Int64Sequence.class, @@ -342,7 +342,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Int64Sequence_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_Int64Sequence_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Investigation.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Investigation.java index 9f58d6e336c8..ea2953017d12 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Investigation.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Investigation.java @@ -65,13 +65,13 @@ private Investigation() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Investigation_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_Investigation_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_Investigation_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Investigation.class, @@ -922,13 +922,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.Investigation) com.google.backstory.InvestigationOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Investigation_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_Investigation_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_Investigation_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Investigation.class, @@ -961,7 +961,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Investigation_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_Investigation_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Label.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Label.java index 27102619b079..0d6f992a10ae 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Label.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Label.java @@ -58,13 +58,13 @@ private Label() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Label_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_Label_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Label_fieldAccessorTable + return com.google.backstory.Udm.internal_static_google_backstory_Label_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Label.class, com.google.backstory.Label.Builder.class); } @@ -446,13 +446,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.Label) com.google.backstory.LabelOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Label_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_Label_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Label_fieldAccessorTable + return com.google.backstory.Udm.internal_static_google_backstory_Label_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Label.class, com.google.backstory.Label.Builder.class); } @@ -477,7 +477,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Label_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_Label_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/LinuxUtmp.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/LinuxUtmp.java index d13f79c6b2d5..43a302f9ef74 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/LinuxUtmp.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/LinuxUtmp.java @@ -56,13 +56,13 @@ private LinuxUtmp() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_LinuxUtmp_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_LinuxUtmp_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto.internal_static_google_backstory_LinuxUtmp_fieldAccessorTable + return com.google.backstory.Udm.internal_static_google_backstory_LinuxUtmp_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.LinuxUtmp.class, com.google.backstory.LinuxUtmp.Builder.class); } @@ -608,13 +608,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.LinuxUtmp) com.google.backstory.LinuxUtmpOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_LinuxUtmp_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_LinuxUtmp_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto.internal_static_google_backstory_LinuxUtmp_fieldAccessorTable + return com.google.backstory.Udm.internal_static_google_backstory_LinuxUtmp_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.LinuxUtmp.class, com.google.backstory.LinuxUtmp.Builder.class); } @@ -636,7 +636,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.UdmProto.internal_static_google_backstory_LinuxUtmp_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_LinuxUtmp_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Location.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Location.java index b0cdb4246af2..1845fdadcf4a 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Location.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Location.java @@ -61,13 +61,13 @@ private Location() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Location_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_Location_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Location_fieldAccessorTable + return com.google.backstory.Udm.internal_static_google_backstory_Location_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Location.class, com.google.backstory.Location.Builder.class); } @@ -756,13 +756,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.Location) com.google.backstory.LocationOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Location_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_Location_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Location_fieldAccessorTable + return com.google.backstory.Udm.internal_static_google_backstory_Location_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Location.class, com.google.backstory.Location.Builder.class); } @@ -805,7 +805,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Location_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_Location_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Metadata.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Metadata.java index 3bccd7b1a1d7..3725b4b7c2b8 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Metadata.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Metadata.java @@ -70,13 +70,13 @@ private Metadata() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Metadata_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_Metadata_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Metadata_fieldAccessorTable + return com.google.backstory.Udm.internal_static_google_backstory_Metadata_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Metadata.class, com.google.backstory.Metadata.Builder.class); } @@ -6204,13 +6204,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.Metadata) com.google.backstory.MetadataOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Metadata_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_Metadata_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Metadata_fieldAccessorTable + return com.google.backstory.Udm.internal_static_google_backstory_Metadata_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Metadata.class, com.google.backstory.Metadata.Builder.class); } @@ -6303,7 +6303,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Metadata_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_Metadata_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Network.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Network.java index e1180ec6e44b..3aec56ffbfb3 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Network.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Network.java @@ -68,13 +68,13 @@ private Network() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Network_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_Network_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Network_fieldAccessorTable + return com.google.backstory.Udm.internal_static_google_backstory_Network_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Network.class, com.google.backstory.Network.Builder.class); } @@ -4786,13 +4786,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.Network) com.google.backstory.NetworkOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Network_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_Network_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Network_fieldAccessorTable + return com.google.backstory.Udm.internal_static_google_backstory_Network_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Network.class, com.google.backstory.Network.Builder.class); } @@ -4895,7 +4895,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Network_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_Network_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Noun.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Noun.java index 796a1f8e680e..136ceabe425f 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Noun.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Noun.java @@ -79,13 +79,13 @@ private Noun() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Noun_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_Noun_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Noun_fieldAccessorTable + return com.google.backstory.Udm.internal_static_google_backstory_Noun_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Noun.class, com.google.backstory.Noun.Builder.class); } @@ -3257,13 +3257,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.Noun) com.google.backstory.NounOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Noun_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_Noun_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Noun_fieldAccessorTable + return com.google.backstory.Udm.internal_static_google_backstory_Noun_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Noun.class, com.google.backstory.Noun.Builder.class); } @@ -3460,7 +3460,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Noun_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_Noun_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/NtfsFileMetadata.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/NtfsFileMetadata.java index 9e90ba705f1d..ef010f0fe023 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/NtfsFileMetadata.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/NtfsFileMetadata.java @@ -56,13 +56,13 @@ private NtfsFileMetadata() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_NtfsFileMetadata_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_NtfsFileMetadata_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_NtfsFileMetadata_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.NtfsFileMetadata.class, @@ -651,13 +651,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.NtfsFileMetadata) com.google.backstory.NtfsFileMetadataOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_NtfsFileMetadata_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_NtfsFileMetadata_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_NtfsFileMetadata_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.NtfsFileMetadata.class, @@ -726,7 +726,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.UdmProto.internal_static_google_backstory_NtfsFileMetadata_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_NtfsFileMetadata_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/OutlookMetadata.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/OutlookMetadata.java index 278ae5c0fe2d..c7478b16f0b7 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/OutlookMetadata.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/OutlookMetadata.java @@ -58,13 +58,13 @@ private OutlookMetadata() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_OutlookMetadata_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_OutlookMetadata_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_OutlookMetadata_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.OutlookMetadata.class, @@ -449,13 +449,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.OutlookMetadata) com.google.backstory.OutlookMetadataOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_OutlookMetadata_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_OutlookMetadata_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_OutlookMetadata_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.OutlookMetadata.class, @@ -482,7 +482,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.UdmProto.internal_static_google_backstory_OutlookMetadata_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_OutlookMetadata_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/PDFInfo.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/PDFInfo.java index 7d9f665bfd4b..88b1468effe5 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/PDFInfo.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/PDFInfo.java @@ -57,13 +57,13 @@ private PDFInfo() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_PDFInfo_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_PDFInfo_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto.internal_static_google_backstory_PDFInfo_fieldAccessorTable + return com.google.backstory.Udm.internal_static_google_backstory_PDFInfo_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.PDFInfo.class, com.google.backstory.PDFInfo.Builder.class); } @@ -885,13 +885,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.PDFInfo) com.google.backstory.PDFInfoOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_PDFInfo_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_PDFInfo_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto.internal_static_google_backstory_PDFInfo_fieldAccessorTable + return com.google.backstory.Udm.internal_static_google_backstory_PDFInfo_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.PDFInfo.class, com.google.backstory.PDFInfo.Builder.class); } @@ -934,7 +934,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.UdmProto.internal_static_google_backstory_PDFInfo_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_PDFInfo_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/PeFileMetadata.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/PeFileMetadata.java index 88522d3ad5b9..7a9faf052e8a 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/PeFileMetadata.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/PeFileMetadata.java @@ -56,13 +56,13 @@ private PeFileMetadata() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_PeFileMetadata_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_PeFileMetadata_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_PeFileMetadata_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.PeFileMetadata.class, @@ -294,13 +294,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.PeFileMetadata) com.google.backstory.PeFileMetadataOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_PeFileMetadata_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_PeFileMetadata_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_PeFileMetadata_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.PeFileMetadata.class, @@ -324,7 +324,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.UdmProto.internal_static_google_backstory_PeFileMetadata_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_PeFileMetadata_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Permission.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Permission.java index e6668a792cea..5762cfc61adf 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Permission.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Permission.java @@ -58,13 +58,13 @@ private Permission() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Permission_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_Permission_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Permission_fieldAccessorTable + return com.google.backstory.Udm.internal_static_google_backstory_Permission_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Permission.class, com.google.backstory.Permission.Builder.class); } @@ -619,13 +619,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.Permission) com.google.backstory.PermissionOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Permission_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_Permission_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Permission_fieldAccessorTable + return com.google.backstory.Udm.internal_static_google_backstory_Permission_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Permission.class, com.google.backstory.Permission.Builder.class); } @@ -649,7 +649,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Permission_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_Permission_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/PlatformSoftware.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/PlatformSoftware.java index 3843a45802c6..a143bb0b322a 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/PlatformSoftware.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/PlatformSoftware.java @@ -58,13 +58,13 @@ private PlatformSoftware() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_PlatformSoftware_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_PlatformSoftware_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_PlatformSoftware_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.PlatformSoftware.class, @@ -408,13 +408,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.PlatformSoftware) com.google.backstory.PlatformSoftwareOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_PlatformSoftware_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_PlatformSoftware_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_PlatformSoftware_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.PlatformSoftware.class, @@ -440,7 +440,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.UdmProto.internal_static_google_backstory_PlatformSoftware_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_PlatformSoftware_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/PopularityRank.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/PopularityRank.java index b3bca7f8904c..688c44aa6523 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/PopularityRank.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/PopularityRank.java @@ -57,13 +57,13 @@ private PopularityRank() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_PopularityRank_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_PopularityRank_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_PopularityRank_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.PopularityRank.class, @@ -392,13 +392,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.PopularityRank) com.google.backstory.PopularityRankOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_PopularityRank_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_PopularityRank_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_PopularityRank_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.PopularityRank.class, @@ -437,7 +437,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.UdmProto.internal_static_google_backstory_PopularityRank_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_PopularityRank_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/PrefetchFileMetadata.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/PrefetchFileMetadata.java index 8d1fe5c047a4..adaf5a961e4c 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/PrefetchFileMetadata.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/PrefetchFileMetadata.java @@ -56,14 +56,14 @@ private PrefetchFileMetadata() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_PrefetchFileMetadata_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_PrefetchFileMetadata_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.PrefetchFileMetadata.class, @@ -325,14 +325,14 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.PrefetchFileMetadata) com.google.backstory.PrefetchFileMetadataOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_PrefetchFileMetadata_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_PrefetchFileMetadata_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.PrefetchFileMetadata.class, @@ -357,7 +357,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_PrefetchFileMetadata_descriptor; } diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Prevalence.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Prevalence.java index 299e3de33882..78b0592b7f8f 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Prevalence.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Prevalence.java @@ -55,13 +55,13 @@ private Prevalence(com.google.protobuf.GeneratedMessage.Builder builder) { private Prevalence() {} public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Prevalence_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_Prevalence_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Prevalence_fieldAccessorTable + return com.google.backstory.Udm.internal_static_google_backstory_Prevalence_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Prevalence.class, com.google.backstory.Prevalence.Builder.class); } @@ -374,13 +374,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.Prevalence) com.google.backstory.PrevalenceOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Prevalence_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_Prevalence_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Prevalence_fieldAccessorTable + return com.google.backstory.Udm.internal_static_google_backstory_Prevalence_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Prevalence.class, com.google.backstory.Prevalence.Builder.class); } @@ -406,7 +406,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Prevalence_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_Prevalence_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Priority.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Priority.java index 026c1a91aa5a..e946c7f4383a 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Priority.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Priority.java @@ -235,7 +235,7 @@ public final com.google.protobuf.Descriptors.EnumDescriptor getDescriptorForType } public static com.google.protobuf.Descriptors.EnumDescriptor getDescriptor() { - return com.google.backstory.UdmProto.getDescriptor().getEnumTypes().get(3); + return com.google.backstory.Udm.getDescriptor().getEnumTypes().get(3); } private static final Priority[] VALUES = values(); diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Process.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Process.java index 3ec71a27ce01..094ee74a0de0 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Process.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Process.java @@ -70,13 +70,13 @@ private Process() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Process_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_Process_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Process_fieldAccessorTable + return com.google.backstory.Udm.internal_static_google_backstory_Process_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Process.class, com.google.backstory.Process.Builder.class); } @@ -2256,13 +2256,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.Process) com.google.backstory.ProcessOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Process_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_Process_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Process_fieldAccessorTable + return com.google.backstory.Udm.internal_static_google_backstory_Process_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Process.class, com.google.backstory.Process.Builder.class); } @@ -2339,7 +2339,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Process_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_Process_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/ProxyInfo.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/ProxyInfo.java index 13430f422b7d..526b6143c201 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/ProxyInfo.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/ProxyInfo.java @@ -56,13 +56,13 @@ private ProxyInfo() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_ProxyInfo_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_ProxyInfo_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto.internal_static_google_backstory_ProxyInfo_fieldAccessorTable + return com.google.backstory.Udm.internal_static_google_backstory_ProxyInfo_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.ProxyInfo.class, com.google.backstory.ProxyInfo.Builder.class); } @@ -572,13 +572,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.ProxyInfo) com.google.backstory.ProxyInfoOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_ProxyInfo_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_ProxyInfo_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto.internal_static_google_backstory_ProxyInfo_fieldAccessorTable + return com.google.backstory.Udm.internal_static_google_backstory_ProxyInfo_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.ProxyInfo.class, com.google.backstory.ProxyInfo.Builder.class); } @@ -610,7 +610,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.UdmProto.internal_static_google_backstory_ProxyInfo_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_ProxyInfo_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Reason.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Reason.java index 79b399b160cf..d2dd21e1ce9b 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Reason.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Reason.java @@ -189,7 +189,7 @@ public final com.google.protobuf.Descriptors.EnumDescriptor getDescriptorForType } public static com.google.protobuf.Descriptors.EnumDescriptor getDescriptor() { - return com.google.backstory.UdmProto.getDescriptor().getEnumTypes().get(4); + return com.google.backstory.Udm.getDescriptor().getEnumTypes().get(4); } private static final Reason[] VALUES = values(); diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Registry.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Registry.java index fed0ab3dcb33..ca921785f73b 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Registry.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Registry.java @@ -60,13 +60,13 @@ private Registry() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Registry_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_Registry_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Registry_fieldAccessorTable + return com.google.backstory.Udm.internal_static_google_backstory_Registry_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Registry.class, com.google.backstory.Registry.Builder.class); } @@ -908,13 +908,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.Registry) com.google.backstory.RegistryOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Registry_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_Registry_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Registry_fieldAccessorTable + return com.google.backstory.Udm.internal_static_google_backstory_Registry_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Registry.class, com.google.backstory.Registry.Builder.class); } @@ -940,7 +940,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Registry_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_Registry_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Reputation.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Reputation.java index 0a9c5af9fcc8..c8cac410fa9d 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Reputation.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Reputation.java @@ -166,7 +166,7 @@ public final com.google.protobuf.Descriptors.EnumDescriptor getDescriptorForType } public static com.google.protobuf.Descriptors.EnumDescriptor getDescriptor() { - return com.google.backstory.UdmProto.getDescriptor().getEnumTypes().get(1); + return com.google.backstory.Udm.getDescriptor().getEnumTypes().get(1); } private static final Reputation[] VALUES = values(); diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Resource.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Resource.java index 1e1b090760ed..014dade447db 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Resource.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Resource.java @@ -63,13 +63,13 @@ private Resource() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Resource_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_Resource_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Resource_fieldAccessorTable + return com.google.backstory.Udm.internal_static_google_backstory_Resource_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Resource.class, com.google.backstory.Resource.Builder.class); } @@ -2104,13 +2104,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.Resource) com.google.backstory.ResourceOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Resource_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_Resource_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Resource_fieldAccessorTable + return com.google.backstory.Udm.internal_static_google_backstory_Resource_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Resource.class, com.google.backstory.Resource.Builder.class); } @@ -2188,7 +2188,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Resource_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_Resource_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/ResourceUsage.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/ResourceUsage.java index 3068cb6c71e8..9fb7d44d1978 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/ResourceUsage.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/ResourceUsage.java @@ -57,13 +57,13 @@ private ResourceUsage() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_ResourceUsage_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_ResourceUsage_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_ResourceUsage_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.ResourceUsage.class, @@ -357,13 +357,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.ResourceUsage) com.google.backstory.ResourceUsageOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_ResourceUsage_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_ResourceUsage_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_ResourceUsage_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.ResourceUsage.class, @@ -388,7 +388,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.UdmProto.internal_static_google_backstory_ResourceUsage_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_ResourceUsage_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Role.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Role.java index e61ff3d9ab1f..539a5d2577b6 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Role.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Role.java @@ -58,13 +58,13 @@ private Role() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Role_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_Role_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Role_fieldAccessorTable + return com.google.backstory.Udm.internal_static_google_backstory_Role_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Role.class, com.google.backstory.Role.Builder.class); } @@ -570,13 +570,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.Role) com.google.backstory.RoleOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Role_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_Role_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Role_fieldAccessorTable + return com.google.backstory.Udm.internal_static_google_backstory_Role_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Role.class, com.google.backstory.Role.Builder.class); } @@ -600,7 +600,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Role_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_Role_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/SSLCertificate.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/SSLCertificate.java index 90099b13fbb2..66ae92a66283 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/SSLCertificate.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/SSLCertificate.java @@ -60,13 +60,13 @@ private SSLCertificate() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_SSLCertificate_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_SSLCertificate_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_SSLCertificate_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.SSLCertificate.class, @@ -167,14 +167,14 @@ private CertSignature() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_SSLCertificate_CertSignature_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_SSLCertificate_CertSignature_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.SSLCertificate.CertSignature.class, @@ -470,14 +470,14 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.SSLCertificate.CertSignature) com.google.backstory.SSLCertificate.CertSignatureOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_SSLCertificate_CertSignature_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_SSLCertificate_CertSignature_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.SSLCertificate.CertSignature.class, @@ -502,7 +502,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_SSLCertificate_CertSignature_descriptor; } @@ -990,14 +990,14 @@ private AuthorityKeyId() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_SSLCertificate_AuthorityKeyId_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_SSLCertificate_AuthorityKeyId_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.SSLCertificate.AuthorityKeyId.class, @@ -1294,14 +1294,14 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.SSLCertificate.AuthorityKeyId) com.google.backstory.SSLCertificate.AuthorityKeyIdOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_SSLCertificate_AuthorityKeyId_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_SSLCertificate_AuthorityKeyId_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.SSLCertificate.AuthorityKeyId.class, @@ -1326,7 +1326,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_SSLCertificate_AuthorityKeyId_descriptor; } @@ -2109,14 +2109,14 @@ private Extension() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_SSLCertificate_Extension_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_SSLCertificate_Extension_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.SSLCertificate.Extension.class, @@ -3045,14 +3045,14 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.SSLCertificate.Extension) com.google.backstory.SSLCertificate.ExtensionOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_SSLCertificate_Extension_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_SSLCertificate_Extension_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.SSLCertificate.Extension.class, @@ -3102,7 +3102,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_SSLCertificate_Extension_descriptor; } @@ -5105,14 +5105,14 @@ private Subject() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_SSLCertificate_Subject_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_SSLCertificate_Subject_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.SSLCertificate.Subject.class, @@ -5656,14 +5656,14 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.SSLCertificate.Subject) com.google.backstory.SSLCertificate.SubjectOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_SSLCertificate_Subject_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_SSLCertificate_Subject_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.SSLCertificate.Subject.class, @@ -5692,7 +5692,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_SSLCertificate_Subject_descriptor; } @@ -6691,14 +6691,14 @@ private RSA() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_SSLCertificate_RSA_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_SSLCertificate_RSA_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.SSLCertificate.RSA.class, @@ -7021,14 +7021,14 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.SSLCertificate.RSA) com.google.backstory.SSLCertificate.RSAOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_SSLCertificate_RSA_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_SSLCertificate_RSA_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.SSLCertificate.RSA.class, @@ -7054,7 +7054,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_SSLCertificate_RSA_descriptor; } @@ -7608,13 +7608,13 @@ private EC() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_SSLCertificate_EC_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_SSLCertificate_EC_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_SSLCertificate_EC_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.SSLCertificate.EC.class, @@ -7909,14 +7909,14 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.SSLCertificate.EC) com.google.backstory.SSLCertificate.ECOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_SSLCertificate_EC_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_SSLCertificate_EC_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.SSLCertificate.EC.class, @@ -7941,7 +7941,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_SSLCertificate_EC_descriptor; } @@ -8439,14 +8439,14 @@ private PublicKey() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_SSLCertificate_PublicKey_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_SSLCertificate_PublicKey_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.SSLCertificate.PublicKey.class, @@ -8746,14 +8746,14 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.SSLCertificate.PublicKey) com.google.backstory.SSLCertificate.PublicKeyOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_SSLCertificate_PublicKey_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_SSLCertificate_PublicKey_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.SSLCertificate.PublicKey.class, @@ -8791,7 +8791,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_SSLCertificate_PublicKey_descriptor; } @@ -9382,14 +9382,14 @@ private Validity(com.google.protobuf.GeneratedMessage.Builder builder) { private Validity() {} public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_SSLCertificate_Validity_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_SSLCertificate_Validity_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.SSLCertificate.Validity.class, @@ -9688,14 +9688,14 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.SSLCertificate.Validity) com.google.backstory.SSLCertificate.ValidityOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_SSLCertificate_Validity_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_SSLCertificate_Validity_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.SSLCertificate.Validity.class, @@ -9738,7 +9738,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_SSLCertificate_Validity_descriptor; } @@ -11407,13 +11407,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.SSLCertificate) com.google.backstory.SSLCertificateOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_SSLCertificate_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_SSLCertificate_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_SSLCertificate_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.SSLCertificate.class, @@ -11504,7 +11504,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.UdmProto.internal_static_google_backstory_SSLCertificate_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_SSLCertificate_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/ScheduledAnacronTask.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/ScheduledAnacronTask.java index 4aa5e266d767..b73f984d468d 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/ScheduledAnacronTask.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/ScheduledAnacronTask.java @@ -59,14 +59,14 @@ private ScheduledAnacronTask() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_ScheduledAnacronTask_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_ScheduledAnacronTask_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.ScheduledAnacronTask.class, @@ -516,14 +516,14 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.ScheduledAnacronTask) com.google.backstory.ScheduledAnacronTaskOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_ScheduledAnacronTask_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_ScheduledAnacronTask_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.ScheduledAnacronTask.class, @@ -551,7 +551,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_ScheduledAnacronTask_descriptor; } diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/ScheduledCronTask.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/ScheduledCronTask.java index d09b91a0c324..60ffafd8da3d 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/ScheduledCronTask.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/ScheduledCronTask.java @@ -64,13 +64,13 @@ private ScheduledCronTask() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_ScheduledCronTask_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_ScheduledCronTask_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_ScheduledCronTask_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.ScheduledCronTask.class, @@ -823,13 +823,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.ScheduledCronTask) com.google.backstory.ScheduledCronTaskOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_ScheduledCronTask_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_ScheduledCronTask_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_ScheduledCronTask_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.ScheduledCronTask.class, @@ -861,7 +861,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.UdmProto.internal_static_google_backstory_ScheduledCronTask_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_ScheduledCronTask_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/ScheduledTask.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/ScheduledTask.java index 1d42d25d0dd0..0aefee5f0dca 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/ScheduledTask.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/ScheduledTask.java @@ -60,13 +60,13 @@ private ScheduledTask() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_ScheduledTask_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_ScheduledTask_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_ScheduledTask_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.ScheduledTask.class, @@ -502,13 +502,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.ScheduledTask) com.google.backstory.ScheduledTaskOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_ScheduledTask_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_ScheduledTask_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_ScheduledTask_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.ScheduledTask.class, @@ -538,7 +538,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.UdmProto.internal_static_google_backstory_ScheduledTask_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_ScheduledTask_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/SecurityResult.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/SecurityResult.java index 140fa3b33a64..bf4a3354104d 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/SecurityResult.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/SecurityResult.java @@ -103,7 +103,7 @@ private SecurityResult() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_SecurityResult_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_SecurityResult_descriptor; } @SuppressWarnings({"rawtypes"}) @@ -121,7 +121,7 @@ protected com.google.protobuf.MapFieldReflectionAccessor internalGetMapFieldRefl @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_SecurityResult_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.SecurityResult.class, @@ -3491,14 +3491,14 @@ private Association() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_SecurityResult_Association_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_SecurityResult_Association_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.SecurityResult.Association.class, @@ -3797,14 +3797,14 @@ private AssociationAlias() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_SecurityResult_Association_AssociationAlias_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_SecurityResult_Association_AssociationAlias_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.SecurityResult.Association.AssociationAlias.class, @@ -4105,14 +4105,14 @@ public static final class Builder // @@protoc_insertion_point(builder_implements:google.backstory.SecurityResult.Association.AssociationAlias) com.google.backstory.SecurityResult.Association.AssociationAliasOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_SecurityResult_Association_AssociationAlias_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_SecurityResult_Association_AssociationAlias_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.SecurityResult.Association.AssociationAlias.class, @@ -4138,7 +4138,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_SecurityResult_Association_AssociationAlias_descriptor; } @@ -5873,14 +5873,14 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.SecurityResult.Association) com.google.backstory.SecurityResult.AssociationOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_SecurityResult_Association_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_SecurityResult_Association_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.SecurityResult.Association.class, @@ -5968,7 +5968,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_SecurityResult_Association_descriptor; } @@ -9854,14 +9854,14 @@ private Source() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_SecurityResult_Source_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_SecurityResult_Source_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.SecurityResult.Source.class, @@ -10356,14 +10356,14 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.SecurityResult.Source) com.google.backstory.SecurityResult.SourceOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_SecurityResult_Source_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_SecurityResult_Source_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.SecurityResult.Source.class, @@ -10399,7 +10399,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_SecurityResult_Source_descriptor; } @@ -11722,14 +11722,14 @@ private ProviderMLVerdict() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_SecurityResult_ProviderMLVerdict_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_SecurityResult_ProviderMLVerdict_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.SecurityResult.ProviderMLVerdict.class, @@ -12228,14 +12228,14 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.SecurityResult.ProviderMLVerdict) com.google.backstory.SecurityResult.ProviderMLVerdictOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_SecurityResult_ProviderMLVerdict_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_SecurityResult_ProviderMLVerdict_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.SecurityResult.ProviderMLVerdict.class, @@ -12276,7 +12276,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_SecurityResult_ProviderMLVerdict_descriptor; } @@ -13722,14 +13722,14 @@ private AnalystVerdict() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_SecurityResult_AnalystVerdict_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_SecurityResult_AnalystVerdict_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.SecurityResult.AnalystVerdict.class, @@ -14050,14 +14050,14 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.SecurityResult.AnalystVerdict) com.google.backstory.SecurityResult.AnalystVerdictOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_SecurityResult_AnalystVerdict_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_SecurityResult_AnalystVerdict_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.SecurityResult.AnalystVerdict.class, @@ -14096,7 +14096,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_SecurityResult_AnalystVerdict_descriptor; } @@ -14830,14 +14830,14 @@ private IoCStats() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_SecurityResult_IoCStats_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_SecurityResult_IoCStats_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.SecurityResult.IoCStats.class, @@ -15350,14 +15350,14 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.SecurityResult.IoCStats) com.google.backstory.SecurityResult.IoCStatsOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_SecurityResult_IoCStats_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_SecurityResult_IoCStats_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.SecurityResult.IoCStats.class, @@ -15388,7 +15388,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_SecurityResult_IoCStats_descriptor; } @@ -16687,14 +16687,14 @@ private VerdictInfo() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_SecurityResult_VerdictInfo_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_SecurityResult_VerdictInfo_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.SecurityResult.VerdictInfo.class, @@ -17601,14 +17601,14 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.SecurityResult.VerdictInfo) com.google.backstory.SecurityResult.VerdictInfoOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_SecurityResult_VerdictInfo_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_SecurityResult_VerdictInfo_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.SecurityResult.VerdictInfo.class, @@ -17672,7 +17672,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_SecurityResult_VerdictInfo_descriptor; } @@ -19968,14 +19968,14 @@ private Verdict() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_SecurityResult_Verdict_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_SecurityResult_Verdict_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.SecurityResult.Verdict.class, @@ -20403,14 +20403,14 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.SecurityResult.Verdict) com.google.backstory.SecurityResult.VerdictOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_SecurityResult_Verdict_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_SecurityResult_Verdict_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.SecurityResult.Verdict.class, @@ -20456,7 +20456,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_SecurityResult_Verdict_descriptor; } @@ -21432,14 +21432,14 @@ private ThreatCollectionItem() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_SecurityResult_ThreatCollectionItem_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_SecurityResult_ThreatCollectionItem_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.SecurityResult.ThreatCollectionItem.class, @@ -21812,14 +21812,14 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.SecurityResult.ThreatCollectionItem) com.google.backstory.SecurityResult.ThreatCollectionItemOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_SecurityResult_ThreatCollectionItem_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_SecurityResult_ThreatCollectionItem_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.SecurityResult.ThreatCollectionItem.class, @@ -21845,7 +21845,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_SecurityResult_ThreatCollectionItem_descriptor; } @@ -23565,7 +23565,7 @@ private static final class VariablesDefaultEntryHolder { defaultEntry = com.google.protobuf.MapEntry .newDefaultInstance( - com.google.backstory.UdmProto + com.google.backstory.Udm .internal_static_google_backstory_SecurityResult_VariablesEntry_descriptor, com.google.protobuf.WireFormat.FieldType.STRING, "", @@ -26100,7 +26100,7 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.SecurityResult) com.google.backstory.SecurityResultOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_SecurityResult_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_SecurityResult_descriptor; } @SuppressWarnings({"rawtypes"}) @@ -26128,7 +26128,7 @@ protected com.google.protobuf.MapFieldReflectionAccessor internalGetMutableMapFi @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_SecurityResult_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.SecurityResult.class, @@ -26287,7 +26287,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.UdmProto.internal_static_google_backstory_SecurityResult_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_SecurityResult_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Service.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Service.java index eff9b17b46bd..595c8120f9bb 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Service.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Service.java @@ -60,13 +60,13 @@ private Service() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Service_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_Service_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Service_fieldAccessorTable + return com.google.backstory.Udm.internal_static_google_backstory_Service_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Service.class, com.google.backstory.Service.Builder.class); } @@ -1361,13 +1361,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.Service) com.google.backstory.ServiceOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Service_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_Service_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Service_fieldAccessorTable + return com.google.backstory.Udm.internal_static_google_backstory_Service_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Service.class, com.google.backstory.Service.Builder.class); } @@ -1393,7 +1393,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Service_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_Service_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/SignatureInfo.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/SignatureInfo.java index da3e5ea8cd59..f0c42a2eeab1 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/SignatureInfo.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/SignatureInfo.java @@ -54,13 +54,13 @@ private SignatureInfo(com.google.protobuf.GeneratedMessage.Builder builder) { private SignatureInfo() {} public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_SignatureInfo_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_SignatureInfo_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_SignatureInfo_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.SignatureInfo.class, @@ -365,13 +365,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.SignatureInfo) com.google.backstory.SignatureInfoOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_SignatureInfo_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_SignatureInfo_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_SignatureInfo_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.SignatureInfo.class, @@ -414,7 +414,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.UdmProto.internal_static_google_backstory_SignatureInfo_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_SignatureInfo_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/SignerInfo.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/SignerInfo.java index e52d08c20c34..8c1044d1cf66 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/SignerInfo.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/SignerInfo.java @@ -59,13 +59,13 @@ private SignerInfo() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_SignerInfo_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_SignerInfo_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto.internal_static_google_backstory_SignerInfo_fieldAccessorTable + return com.google.backstory.Udm.internal_static_google_backstory_SignerInfo_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.SignerInfo.class, com.google.backstory.SignerInfo.Builder.class); } @@ -581,13 +581,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.SignerInfo) com.google.backstory.SignerInfoOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_SignerInfo_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_SignerInfo_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto.internal_static_google_backstory_SignerInfo_fieldAccessorTable + return com.google.backstory.Udm.internal_static_google_backstory_SignerInfo_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.SignerInfo.class, com.google.backstory.SignerInfo.Builder.class); } @@ -612,7 +612,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.UdmProto.internal_static_google_backstory_SignerInfo_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_SignerInfo_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Smtp.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Smtp.java index e19be6d6833f..f097131fa200 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Smtp.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Smtp.java @@ -60,13 +60,13 @@ private Smtp() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Smtp_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_Smtp_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Smtp_fieldAccessorTable + return com.google.backstory.Udm.internal_static_google_backstory_Smtp_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Smtp.class, com.google.backstory.Smtp.Builder.class); } @@ -644,13 +644,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.Smtp) com.google.backstory.SmtpOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Smtp_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_Smtp_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Smtp_fieldAccessorTable + return com.google.backstory.Udm.internal_static_google_backstory_Smtp_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Smtp.class, com.google.backstory.Smtp.Builder.class); } @@ -678,7 +678,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Smtp_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_Smtp_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Software.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Software.java index fdbe4cdbf35e..270c7f2e4a4b 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Software.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Software.java @@ -60,13 +60,13 @@ private Software() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Software_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_Software_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Software_fieldAccessorTable + return com.google.backstory.Udm.internal_static_google_backstory_Software_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Software.class, com.google.backstory.Software.Builder.class); } @@ -574,13 +574,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.Software) com.google.backstory.SoftwareOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Software_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_Software_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Software_fieldAccessorTable + return com.google.backstory.Udm.internal_static_google_backstory_Software_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Software.class, com.google.backstory.Software.Builder.class); } @@ -612,7 +612,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Software_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_Software_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Srum.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Srum.java index b454c6899256..46d15646d349 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Srum.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Srum.java @@ -58,13 +58,13 @@ private Srum() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Srum_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_Srum_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Srum_fieldAccessorTable + return com.google.backstory.Udm.internal_static_google_backstory_Srum_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Srum.class, com.google.backstory.Srum.Builder.class); } @@ -564,13 +564,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.Srum) com.google.backstory.SrumOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Srum_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_Srum_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Srum_fieldAccessorTable + return com.google.backstory.Udm.internal_static_google_backstory_Srum_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Srum.class, com.google.backstory.Srum.Builder.class); } @@ -600,7 +600,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Srum_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_Srum_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Status.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Status.java index 62db8d52ea5c..0003813dd8e8 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Status.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Status.java @@ -212,7 +212,7 @@ public final com.google.protobuf.Descriptors.EnumDescriptor getDescriptorForType } public static com.google.protobuf.Descriptors.EnumDescriptor getDescriptor() { - return com.google.backstory.UdmProto.getDescriptor().getEnumTypes().get(2); + return com.google.backstory.Udm.getDescriptor().getEnumTypes().get(2); } private static final Status[] VALUES = values(); diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/StringSequence.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/StringSequence.java index df5168af92b9..e4cf934ddae7 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/StringSequence.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/StringSequence.java @@ -56,13 +56,13 @@ private StringSequence() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_StringSequence_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_StringSequence_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_StringSequence_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.StringSequence.class, @@ -316,13 +316,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.StringSequence) com.google.backstory.StringSequenceOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_StringSequence_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_StringSequence_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_StringSequence_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.StringSequence.class, @@ -346,7 +346,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.UdmProto.internal_static_google_backstory_StringSequence_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_StringSequence_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/StringToInt64MapEntry.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/StringToInt64MapEntry.java index 4794463b5414..28d7155bbfc0 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/StringToInt64MapEntry.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/StringToInt64MapEntry.java @@ -48,14 +48,14 @@ private StringToInt64MapEntry() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_StringToInt64MapEntry_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_StringToInt64MapEntry_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.StringToInt64MapEntry.class, @@ -352,14 +352,14 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.StringToInt64MapEntry) com.google.backstory.StringToInt64MapEntryOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_StringToInt64MapEntry_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_StringToInt64MapEntry_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.StringToInt64MapEntry.class, @@ -384,7 +384,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_StringToInt64MapEntry_descriptor; } diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/SystemEventDetails.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/SystemEventDetails.java index 6c0462da6394..da81d68e2fa0 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/SystemEventDetails.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/SystemEventDetails.java @@ -58,13 +58,13 @@ private SystemEventDetails() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_SystemEventDetails_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_SystemEventDetails_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_SystemEventDetails_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.SystemEventDetails.class, @@ -421,14 +421,14 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.SystemEventDetails) com.google.backstory.SystemEventDetailsOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_SystemEventDetails_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_SystemEventDetails_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.SystemEventDetails.class, @@ -454,7 +454,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_SystemEventDetails_descriptor; } diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Tags.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Tags.java index f9daa79704a7..eb13112809dd 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Tags.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Tags.java @@ -59,13 +59,13 @@ private Tags() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Tags_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_Tags_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Tags_fieldAccessorTable + return com.google.backstory.Udm.internal_static_google_backstory_Tags_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Tags.class, com.google.backstory.Tags.Builder.class); } @@ -388,13 +388,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.Tags) com.google.backstory.TagsOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Tags_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_Tags_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Tags_fieldAccessorTable + return com.google.backstory.Udm.internal_static_google_backstory_Tags_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Tags.class, com.google.backstory.Tags.Builder.class); } @@ -417,7 +417,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Tags_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_Tags_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/ThreatVerdict.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/ThreatVerdict.java index cd1db25700a4..3f918a68b9a3 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/ThreatVerdict.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/ThreatVerdict.java @@ -189,7 +189,7 @@ public final com.google.protobuf.Descriptors.EnumDescriptor getDescriptorForType } public static com.google.protobuf.Descriptors.EnumDescriptor getDescriptor() { - return com.google.backstory.UdmProto.getDescriptor().getEnumTypes().get(5); + return com.google.backstory.Udm.getDescriptor().getEnumTypes().get(5); } private static final ThreatVerdict[] VALUES = values(); diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/TimeOff.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/TimeOff.java index fc90cd1065d9..a2803187a400 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/TimeOff.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/TimeOff.java @@ -57,13 +57,13 @@ private TimeOff() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_TimeOff_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_TimeOff_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto.internal_static_google_backstory_TimeOff_fieldAccessorTable + return com.google.backstory.Udm.internal_static_google_backstory_TimeOff_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.TimeOff.class, com.google.backstory.TimeOff.Builder.class); } @@ -358,13 +358,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.TimeOff) com.google.backstory.TimeOffOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_TimeOff_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_TimeOff_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto.internal_static_google_backstory_TimeOff_fieldAccessorTable + return com.google.backstory.Udm.internal_static_google_backstory_TimeOff_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.TimeOff.class, com.google.backstory.TimeOff.Builder.class); } @@ -400,7 +400,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.UdmProto.internal_static_google_backstory_TimeOff_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_TimeOff_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Tls.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Tls.java index a2e80c5b8264..0d4c096fca81 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Tls.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Tls.java @@ -60,13 +60,13 @@ private Tls() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Tls_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_Tls_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Tls_fieldAccessorTable + return com.google.backstory.Udm.internal_static_google_backstory_Tls_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Tls.class, com.google.backstory.Tls.Builder.class); } @@ -285,13 +285,13 @@ private Client() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Tls_Client_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_Tls_Client_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Tls_Client_fieldAccessorTable + return com.google.backstory.Udm.internal_static_google_backstory_Tls_Client_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Tls.Client.class, com.google.backstory.Tls.Client.Builder.class); } @@ -798,13 +798,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.Tls.Client) com.google.backstory.Tls.ClientOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Tls_Client_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_Tls_Client_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_Tls_Client_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Tls.Client.class, @@ -845,7 +845,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Tls_Client_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_Tls_Client_descriptor; } @java.lang.Override @@ -1907,13 +1907,13 @@ private Server() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Tls_Server_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_Tls_Server_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Tls_Server_fieldAccessorTable + return com.google.backstory.Udm.internal_static_google_backstory_Tls_Server_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Tls.Server.class, com.google.backstory.Tls.Server.Builder.class); } @@ -2274,13 +2274,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.Tls.Server) com.google.backstory.Tls.ServerOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Tls_Server_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_Tls_Server_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_Tls_Server_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Tls.Server.class, @@ -2319,7 +2319,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Tls_Server_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_Tls_Server_descriptor; } @java.lang.Override @@ -3577,13 +3577,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.Tls) com.google.backstory.TlsOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Tls_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_Tls_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Tls_fieldAccessorTable + return com.google.backstory.Udm.internal_static_google_backstory_Tls_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Tls.class, com.google.backstory.Tls.Builder.class); } @@ -3631,7 +3631,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Tls_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_Tls_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Tracker.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Tracker.java index 265d6f87be9a..a60b69943c8a 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Tracker.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Tracker.java @@ -58,13 +58,13 @@ private Tracker() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Tracker_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_Tracker_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Tracker_fieldAccessorTable + return com.google.backstory.Udm.internal_static_google_backstory_Tracker_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Tracker.class, com.google.backstory.Tracker.Builder.class); } @@ -482,13 +482,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.Tracker) com.google.backstory.TrackerOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Tracker_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_Tracker_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Tracker_fieldAccessorTable + return com.google.backstory.Udm.internal_static_google_backstory_Tracker_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Tracker.class, com.google.backstory.Tracker.Builder.class); } @@ -526,7 +526,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Tracker_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_Tracker_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Tunnels.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Tunnels.java index 594b3a921777..a7310ff5fb79 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Tunnels.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Tunnels.java @@ -57,13 +57,13 @@ private Tunnels() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Tunnels_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_Tunnels_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Tunnels_fieldAccessorTable + return com.google.backstory.Udm.internal_static_google_backstory_Tunnels_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Tunnels.class, com.google.backstory.Tunnels.Builder.class); } @@ -355,13 +355,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.Tunnels) com.google.backstory.TunnelsOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Tunnels_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_Tunnels_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Tunnels_fieldAccessorTable + return com.google.backstory.Udm.internal_static_google_backstory_Tunnels_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Tunnels.class, com.google.backstory.Tunnels.Builder.class); } @@ -384,7 +384,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Tunnels_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_Tunnels_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/UDM.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/UDM.java index 66831dc45392..f15e2a6e5fa5 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/UDM.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/UDM.java @@ -58,13 +58,13 @@ private UDM() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_UDM_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_UDM_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto.internal_static_google_backstory_UDM_fieldAccessorTable + return com.google.backstory.Udm.internal_static_google_backstory_UDM_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.UDM.class, com.google.backstory.UDM.Builder.class); } @@ -1242,13 +1242,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.UDM) com.google.backstory.UDMOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_UDM_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_UDM_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto.internal_static_google_backstory_UDM_fieldAccessorTable + return com.google.backstory.Udm.internal_static_google_backstory_UDM_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.UDM.class, com.google.backstory.UDM.Builder.class); } @@ -1361,7 +1361,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.UdmProto.internal_static_google_backstory_UDM_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_UDM_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/UdmProto.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Udm.java similarity index 99% rename from java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/UdmProto.java rename to java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Udm.java index af097d223cf2..c6a6d75b74f2 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/UdmProto.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Udm.java @@ -21,8 +21,8 @@ package com.google.backstory; @com.google.protobuf.Generated -public final class UdmProto extends com.google.protobuf.GeneratedFile { - private UdmProto() {} +public final class Udm extends com.google.protobuf.GeneratedFile { + private Udm() {} static { com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( @@ -31,7 +31,7 @@ private UdmProto() {} /* minor= */ 33, /* patch= */ 6, /* suffix= */ "", - "UdmProto"); + "Udm"); } public static void registerAllExtensions(com.google.protobuf.ExtensionRegistryLite registry) {} diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Uint64Sequence.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Uint64Sequence.java index a2aa7a745d8c..6cd3fe13a4a7 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Uint64Sequence.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Uint64Sequence.java @@ -56,13 +56,13 @@ private Uint64Sequence() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Uint64Sequence_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_Uint64Sequence_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_Uint64Sequence_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Uint64Sequence.class, @@ -312,13 +312,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.Uint64Sequence) com.google.backstory.Uint64SequenceOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Uint64Sequence_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_Uint64Sequence_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_Uint64Sequence_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Uint64Sequence.class, @@ -342,7 +342,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Uint64Sequence_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_Uint64Sequence_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Url.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Url.java index b2a0258c0f60..d13a0d84ce76 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Url.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Url.java @@ -62,13 +62,13 @@ private Url() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Url_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_Url_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Url_fieldAccessorTable + return com.google.backstory.Udm.internal_static_google_backstory_Url_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Url.class, com.google.backstory.Url.Builder.class); } @@ -1063,13 +1063,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.Url) com.google.backstory.UrlOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Url_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_Url_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Url_fieldAccessorTable + return com.google.backstory.Udm.internal_static_google_backstory_Url_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Url.class, com.google.backstory.Url.Builder.class); } @@ -1138,7 +1138,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Url_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_Url_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/User.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/User.java index 56ac8ff14f45..e82c2277414d 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/User.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/User.java @@ -77,13 +77,13 @@ private User() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_User_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_User_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto.internal_static_google_backstory_User_fieldAccessorTable + return com.google.backstory.Udm.internal_static_google_backstory_User_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.User.class, com.google.backstory.User.Builder.class); } @@ -2989,13 +2989,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.User) com.google.backstory.UserOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_User_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_User_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto.internal_static_google_backstory_User_fieldAccessorTable + return com.google.backstory.Udm.internal_static_google_backstory_User_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.User.class, com.google.backstory.User.Builder.class); } @@ -3133,7 +3133,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.UdmProto.internal_static_google_backstory_User_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_User_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/UserAssist.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/UserAssist.java index 5339b78b4391..aa7a406af22a 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/UserAssist.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/UserAssist.java @@ -55,13 +55,13 @@ private UserAssist(com.google.protobuf.GeneratedMessage.Builder builder) { private UserAssist() {} public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_UserAssist_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_UserAssist_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto.internal_static_google_backstory_UserAssist_fieldAccessorTable + return com.google.backstory.Udm.internal_static_google_backstory_UserAssist_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.UserAssist.class, com.google.backstory.UserAssist.Builder.class); } @@ -386,13 +386,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.UserAssist) com.google.backstory.UserAssistOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_UserAssist_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_UserAssist_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto.internal_static_google_backstory_UserAssist_fieldAccessorTable + return com.google.backstory.Udm.internal_static_google_backstory_UserAssist_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.UserAssist.class, com.google.backstory.UserAssist.Builder.class); } @@ -430,7 +430,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.UdmProto.internal_static_google_backstory_UserAssist_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_UserAssist_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/UsnJournal.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/UsnJournal.java index 3bc1322a14c0..8b00c2642622 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/UsnJournal.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/UsnJournal.java @@ -60,13 +60,13 @@ private UsnJournal() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_UsnJournal_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_UsnJournal_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto.internal_static_google_backstory_UsnJournal_fieldAccessorTable + return com.google.backstory.Udm.internal_static_google_backstory_UsnJournal_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.UsnJournal.class, com.google.backstory.UsnJournal.Builder.class); } @@ -2012,13 +2012,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.UsnJournal) com.google.backstory.UsnJournalOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_UsnJournal_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_UsnJournal_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto.internal_static_google_backstory_UsnJournal_fieldAccessorTable + return com.google.backstory.Udm.internal_static_google_backstory_UsnJournal_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.UsnJournal.class, com.google.backstory.UsnJournal.Builder.class); } @@ -2045,7 +2045,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.UdmProto.internal_static_google_backstory_UsnJournal_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_UsnJournal_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Verdict.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Verdict.java index b9a50be63fe7..3ac218719f90 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Verdict.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Verdict.java @@ -167,7 +167,7 @@ public final com.google.protobuf.Descriptors.EnumDescriptor getDescriptorForType } public static com.google.protobuf.Descriptors.EnumDescriptor getDescriptor() { - return com.google.backstory.UdmProto.getDescriptor().getEnumTypes().get(0); + return com.google.backstory.Udm.getDescriptor().getEnumTypes().get(0); } private static final Verdict[] VALUES = values(); diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Volume.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Volume.java index d1bc2e57f3f8..d97525f0be11 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Volume.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Volume.java @@ -59,13 +59,13 @@ private Volume() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Volume_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_Volume_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Volume_fieldAccessorTable + return com.google.backstory.Udm.internal_static_google_backstory_Volume_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Volume.class, com.google.backstory.Volume.Builder.class); } @@ -537,13 +537,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.Volume) com.google.backstory.VolumeOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Volume_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_Volume_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Volume_fieldAccessorTable + return com.google.backstory.Udm.internal_static_google_backstory_Volume_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Volume.class, com.google.backstory.Volume.Builder.class); } @@ -570,7 +570,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Volume_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_Volume_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Vulnerabilities.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Vulnerabilities.java index bd647d4b4e5e..d10c0ea93562 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Vulnerabilities.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Vulnerabilities.java @@ -57,13 +57,13 @@ private Vulnerabilities() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Vulnerabilities_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_Vulnerabilities_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_Vulnerabilities_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Vulnerabilities.class, @@ -321,13 +321,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.Vulnerabilities) com.google.backstory.VulnerabilitiesOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Vulnerabilities_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_Vulnerabilities_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_Vulnerabilities_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Vulnerabilities.class, @@ -357,7 +357,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Vulnerabilities_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_Vulnerabilities_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Vulnerability.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Vulnerability.java index 7dba393b2424..c6d01e3b43d9 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Vulnerability.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Vulnerability.java @@ -66,13 +66,13 @@ private Vulnerability() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Vulnerability_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_Vulnerability_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_Vulnerability_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Vulnerability.class, @@ -1516,13 +1516,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.Vulnerability) com.google.backstory.VulnerabilityOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Vulnerability_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_Vulnerability_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_Vulnerability_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Vulnerability.class, @@ -1595,7 +1595,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.UdmProto.internal_static_google_backstory_Vulnerability_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_Vulnerability_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/WindowsEventLog.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/WindowsEventLog.java index cfbbdf566912..001471430ba6 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/WindowsEventLog.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/WindowsEventLog.java @@ -59,13 +59,13 @@ private WindowsEventLog() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_WindowsEventLog_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_WindowsEventLog_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_WindowsEventLog_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.WindowsEventLog.class, @@ -669,13 +669,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.WindowsEventLog) com.google.backstory.WindowsEventLogOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_WindowsEventLog_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_WindowsEventLog_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_WindowsEventLog_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.WindowsEventLog.class, @@ -701,7 +701,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.UdmProto.internal_static_google_backstory_WindowsEventLog_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_WindowsEventLog_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/WindowsScheduledTask.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/WindowsScheduledTask.java index 0208a43ede16..103861c5b3ef 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/WindowsScheduledTask.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/WindowsScheduledTask.java @@ -61,14 +61,14 @@ private WindowsScheduledTask() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_WindowsScheduledTask_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_WindowsScheduledTask_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.WindowsScheduledTask.class, @@ -784,14 +784,14 @@ private TaskAction() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_WindowsScheduledTask_TaskAction_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_WindowsScheduledTask_TaskAction_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.WindowsScheduledTask.TaskAction.class, @@ -1525,14 +1525,14 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.WindowsScheduledTask.TaskAction) com.google.backstory.WindowsScheduledTask.TaskActionOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_WindowsScheduledTask_TaskAction_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_WindowsScheduledTask_TaskAction_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.WindowsScheduledTask.TaskAction.class, @@ -1560,7 +1560,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_WindowsScheduledTask_TaskAction_descriptor; } @@ -2568,14 +2568,14 @@ private TaskTrigger() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_WindowsScheduledTask_TaskTrigger_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_WindowsScheduledTask_TaskTrigger_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.WindowsScheduledTask.TaskTrigger.class, @@ -3376,14 +3376,14 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.WindowsScheduledTask.TaskTrigger) com.google.backstory.WindowsScheduledTask.TaskTriggerOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_WindowsScheduledTask_TaskTrigger_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_WindowsScheduledTask_TaskTrigger_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.WindowsScheduledTask.TaskTrigger.class, @@ -3423,7 +3423,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_WindowsScheduledTask_TaskTrigger_descriptor; } @@ -4697,14 +4697,14 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.WindowsScheduledTask) com.google.backstory.WindowsScheduledTaskOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_WindowsScheduledTask_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_WindowsScheduledTask_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.WindowsScheduledTask.class, @@ -4746,7 +4746,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_WindowsScheduledTask_descriptor; } diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/WmiPersistenceItem.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/WmiPersistenceItem.java index 7f1d2a7abc15..c02fe11d21fd 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/WmiPersistenceItem.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/WmiPersistenceItem.java @@ -63,13 +63,13 @@ private WmiPersistenceItem() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_WmiPersistenceItem_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_WmiPersistenceItem_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_WmiPersistenceItem_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.WmiPersistenceItem.class, @@ -794,14 +794,14 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.WmiPersistenceItem) com.google.backstory.WmiPersistenceItemOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_WmiPersistenceItem_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_WmiPersistenceItem_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.WmiPersistenceItem.class, @@ -834,7 +834,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.UdmProto + return com.google.backstory.Udm .internal_static_google_backstory_WmiPersistenceItem_descriptor; } diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/X509.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/X509.java index f9b045cf7e95..c3c108e399f8 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/X509.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/X509.java @@ -60,13 +60,13 @@ private X509() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_X509_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_X509_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto.internal_static_google_backstory_X509_fieldAccessorTable + return com.google.backstory.Udm.internal_static_google_backstory_X509_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.X509.class, com.google.backstory.X509.Builder.class); } @@ -544,13 +544,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.X509) com.google.backstory.X509OrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_X509_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_X509_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto.internal_static_google_backstory_X509_fieldAccessorTable + return com.google.backstory.Udm.internal_static_google_backstory_X509_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.X509.class, com.google.backstory.X509.Builder.class); } @@ -576,7 +576,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.UdmProto.internal_static_google_backstory_X509_descriptor; + return com.google.backstory.Udm.internal_static_google_backstory_X509_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/proto/backstory/udm.proto b/java-backstory/proto-google-cloud-backstory/src/main/proto/backstory/udm.proto index c444827142a6..d4337b32aa3d 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/proto/backstory/udm.proto +++ b/java-backstory/proto-google-cloud-backstory/src/main/proto/backstory/udm.proto @@ -31,7 +31,6 @@ option java_multiple_files = true; option java_package = "com.google.backstory"; option php_namespace = "Google\\Backstory"; option ruby_package = "Google::Backstory"; -option java_outer_classname = "UdmProto"; // A Unified Data Model event. message UDM { diff --git a/java-storage/google-cloud-storage/src/test/java/com/google/cloud/storage/it/ITStorageOptionsTest.java b/java-storage/google-cloud-storage/src/test/java/com/google/cloud/storage/it/ITStorageOptionsTest.java index 898725de2633..55ae7ff4154a 100644 --- a/java-storage/google-cloud-storage/src/test/java/com/google/cloud/storage/it/ITStorageOptionsTest.java +++ b/java-storage/google-cloud-storage/src/test/java/com/google/cloud/storage/it/ITStorageOptionsTest.java @@ -95,6 +95,7 @@ public void clientShouldConstructCleanly_directPathXdsOverInterconnect() throws doTest(options); } + @Test public void lackOfProjectIdDoesNotPreventConstruction_http() throws Exception { StorageOptions options = StorageOptions.http().setCredentials(credentials).build(); @@ -117,3 +118,4 @@ private static void doTest(StorageOptions options) throws Exception { try (Storage ignore = options.getService()) {} } } + From 45f887742c234656845a7bab3afc34db09723a42 Mon Sep 17 00:00:00 2001 From: Nidhi Nandwani Date: Thu, 6 Aug 2026 07:36:57 +0000 Subject: [PATCH 09/13] fix formatting --- .../java/com/google/cloud/storage/it/ITStorageOptionsTest.java | 2 -- 1 file changed, 2 deletions(-) diff --git a/java-storage/google-cloud-storage/src/test/java/com/google/cloud/storage/it/ITStorageOptionsTest.java b/java-storage/google-cloud-storage/src/test/java/com/google/cloud/storage/it/ITStorageOptionsTest.java index 55ae7ff4154a..898725de2633 100644 --- a/java-storage/google-cloud-storage/src/test/java/com/google/cloud/storage/it/ITStorageOptionsTest.java +++ b/java-storage/google-cloud-storage/src/test/java/com/google/cloud/storage/it/ITStorageOptionsTest.java @@ -95,7 +95,6 @@ public void clientShouldConstructCleanly_directPathXdsOverInterconnect() throws doTest(options); } - @Test public void lackOfProjectIdDoesNotPreventConstruction_http() throws Exception { StorageOptions options = StorageOptions.http().setCredentials(credentials).build(); @@ -118,4 +117,3 @@ private static void doTest(StorageOptions options) throws Exception { try (Storage ignore = options.getService()) {} } } - From 64af67df6901ebfe420e8ba2f3c8a3f72b8f3998 Mon Sep 17 00:00:00 2001 From: Nidhi Nandwani Date: Thu, 6 Aug 2026 10:53:04 +0000 Subject: [PATCH 10/13] ignore integration test --- .../java/com/google/cloud/storage/it/ITGrpcDirectPathTest.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/java-storage/google-cloud-storage/src/test/java/com/google/cloud/storage/it/ITGrpcDirectPathTest.java b/java-storage/google-cloud-storage/src/test/java/com/google/cloud/storage/it/ITGrpcDirectPathTest.java index 5a6f33f062ab..5a864dcedd8d 100644 --- a/java-storage/google-cloud-storage/src/test/java/com/google/cloud/storage/it/ITGrpcDirectPathTest.java +++ b/java-storage/google-cloud-storage/src/test/java/com/google/cloud/storage/it/ITGrpcDirectPathTest.java @@ -26,6 +26,7 @@ import com.google.cloud.storage.it.runner.annotations.Inject; import com.google.cloud.storage.it.runner.annotations.SingleBackend; import com.google.cloud.storage.it.runner.annotations.StorageFixture; +import org.junit.Ignore; import org.junit.Test; import org.junit.runner.RunWith; @@ -37,6 +38,8 @@ public final class ITGrpcDirectPathTest { @StorageFixture(Transport.GRPC) public Storage storage; + @Ignore( + "Bypassed because DirectPath over Interconnect (GCI) requires a specialized hybrid network environment (Interconnect and Traffic Director configured for storage-direct) and cannot be validated in standard CI or local workstations.") @Test public void clientShouldWork_directPathXdsOverInterconnect() throws Exception { assumeTrue( From 1525e1e974b5da42ef452b64f999111a0e923532 Mon Sep 17 00:00:00 2001 From: Nidhi Nandwani Date: Thu, 6 Aug 2026 11:37:35 +0000 Subject: [PATCH 11/13] fix(storage): handle late resource response in BidiUploadState --- .../com/google/cloud/storage/BidiUploadState.java | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/java-storage/google-cloud-storage/src/main/java/com/google/cloud/storage/BidiUploadState.java b/java-storage/google-cloud-storage/src/main/java/com/google/cloud/storage/BidiUploadState.java index d964339ca0f6..d5ea8e770034 100644 --- a/java-storage/google-cloud-storage/src/main/java/com/google/cloud/storage/BidiUploadState.java +++ b/java-storage/google-cloud-storage/src/main/java/com/google/cloud/storage/BidiUploadState.java @@ -333,6 +333,7 @@ abstract static class BaseUploadState extends BidiUploadState { protected boolean finishWriteSent; protected @MonotonicNonNull OpenArguments lastOpenArguments; protected @Nullable SettableApiFuture pendingReconciliation; + protected boolean terminalMessageConfirmed; private BaseUploadState( BidiWriteObjectRequest initial, @@ -358,6 +359,7 @@ private BaseUploadState( this.state = startingState; this.finalFlushOffset = -1; this.finishWriteOffset = -1; + this.terminalMessageConfirmed = false; } @Override @@ -569,6 +571,7 @@ final void updateStateFromResponse(BidiWriteObjectResponse response) { && persistedSize == finalFlushOffset) { setConfirmedBytes(persistedSize); signalTerminalSuccess = true; + terminalMessageConfirmed = true; poll(); } else if (persistedSize >= peek.getWriteOffset()) { setConfirmedBytes(persistedSize); @@ -586,6 +589,7 @@ final void updateStateFromResponse(BidiWriteObjectResponse response) { setConfirmedBytes(persistedSize); if (response.getResource().hasFinalizeTime()) { signalTerminalSuccess = true; + terminalMessageConfirmed = true; poll(); } else { break; @@ -604,7 +608,7 @@ final void updateStateFromResponse(BidiWriteObjectResponse response) { pendingReconciliation = null; } - if (signalTerminalSuccess && lastResponseWithResource != null) { + if (terminalMessageConfirmed && lastResponseWithResource != null) { BidiWriteObjectResponse.Builder b = lastResponseWithResource.toBuilder(); b.getResourceBuilder().setSize(confirmedBytes); b.getResourceBuilder().getChecksumsBuilder().clearMd5Hash().clearCrc32C(); @@ -612,10 +616,9 @@ final void updateStateFromResponse(BidiWriteObjectResponse response) { b.getResourceBuilder().getChecksumsBuilder().setCrc32C(cumulativeCrc32c.getValue()); } BidiWriteObjectResponse updated = b.build(); - resultFuture.set(updated); - terminalSuccess(); - } else if (signalTerminalSuccess) { - checkState(false, "signalTerminalSuccess without prior resource response"); + if (resultFuture.set(updated)) { + terminalSuccess(); + } } } finally { lock.unlock(); From e41b800fdfa7223a892ed443d0d87288ea381626 Mon Sep 17 00:00:00 2001 From: Nidhi Nandwani Date: Thu, 6 Aug 2026 12:42:40 +0000 Subject: [PATCH 12/13] chore: fix Windows compilation error by renaming java_outer_classname for udm.proto --- .../google/backstory/AnalyticsMetadata.java | 10 +- .../google/backstory/AppCompatMetadata.java | 10 +- .../java/com/google/backstory/Artifact.java | 10 +- .../com/google/backstory/ArtifactClient.java | 10 +- .../main/java/com/google/backstory/Asset.java | 10 +- .../com/google/backstory/AttackDetails.java | 30 +++--- .../java/com/google/backstory/Attribute.java | 10 +- .../com/google/backstory/Authentication.java | 10 +- .../com/google/backstory/BoolSequence.java | 10 +- .../java/com/google/backstory/Browser.java | 20 ++-- .../com/google/backstory/BytesSequence.java | 10 +- .../com/google/backstory/Certificate.java | 10 +- .../main/java/com/google/backstory/Cloud.java | 10 +- .../backstory/CollectionOuterClass.java | 4 +- .../java/com/google/backstory/DNSRecord.java | 10 +- .../main/java/com/google/backstory/Dhcp.java | 20 ++-- .../main/java/com/google/backstory/Dns.java | 30 +++--- .../java/com/google/backstory/Domain.java | 10 +- .../com/google/backstory/DoubleSequence.java | 10 +- .../main/java/com/google/backstory/Email.java | 10 +- .../com/google/backstory/EntityProto.java | 4 +- .../java/com/google/backstory/ExifInfo.java | 10 +- .../java/com/google/backstory/Extensions.java | 10 +- .../java/com/google/backstory/Favicon.java | 10 +- .../main/java/com/google/backstory/File.java | 10 +- .../com/google/backstory/FileMetadata.java | 10 +- .../backstory/FileMetadataCodesign.java | 10 +- .../google/backstory/FileMetadataImports.java | 10 +- .../com/google/backstory/FileMetadataPE.java | 10 +- .../backstory/FileMetadataPeResourceInfo.java | 10 +- .../google/backstory/FileMetadataSection.java | 10 +- .../backstory/FileMetadataSignatureInfo.java | 10 +- .../com/google/backstory/FindingVariable.java | 10 +- .../main/java/com/google/backstory/Ftp.java | 10 +- .../main/java/com/google/backstory/Group.java | 10 +- .../com/google/backstory/GroupedFields.java | 10 +- .../java/com/google/backstory/Hardware.java | 10 +- .../main/java/com/google/backstory/Http.java | 10 +- .../com/google/backstory/Int64Sequence.java | 10 +- .../com/google/backstory/Investigation.java | 10 +- .../main/java/com/google/backstory/Label.java | 10 +- .../java/com/google/backstory/LinuxUtmp.java | 10 +- .../java/com/google/backstory/Location.java | 10 +- .../java/com/google/backstory/Metadata.java | 10 +- .../java/com/google/backstory/Network.java | 10 +- .../main/java/com/google/backstory/Noun.java | 10 +- .../google/backstory/NtfsFileMetadata.java | 10 +- .../com/google/backstory/OutlookMetadata.java | 10 +- .../java/com/google/backstory/PDFInfo.java | 10 +- .../com/google/backstory/PeFileMetadata.java | 10 +- .../java/com/google/backstory/Permission.java | 10 +- .../google/backstory/PlatformSoftware.java | 10 +- .../com/google/backstory/PopularityRank.java | 10 +- .../backstory/PrefetchFileMetadata.java | 10 +- .../java/com/google/backstory/Prevalence.java | 10 +- .../java/com/google/backstory/Priority.java | 2 +- .../java/com/google/backstory/Process.java | 10 +- .../java/com/google/backstory/ProxyInfo.java | 10 +- .../java/com/google/backstory/Reason.java | 2 +- .../java/com/google/backstory/Registry.java | 10 +- .../java/com/google/backstory/Reputation.java | 2 +- .../java/com/google/backstory/Resource.java | 10 +- .../com/google/backstory/ResourceUsage.java | 10 +- .../main/java/com/google/backstory/Role.java | 10 +- .../com/google/backstory/SSLCertificate.java | 90 ++++++++-------- .../backstory/ScheduledAnacronTask.java | 10 +- .../google/backstory/ScheduledCronTask.java | 10 +- .../com/google/backstory/ScheduledTask.java | 10 +- .../com/google/backstory/SecurityResult.java | 102 +++++++++--------- .../java/com/google/backstory/Service.java | 10 +- .../com/google/backstory/SignatureInfo.java | 10 +- .../java/com/google/backstory/SignerInfo.java | 10 +- .../main/java/com/google/backstory/Smtp.java | 10 +- .../java/com/google/backstory/Software.java | 10 +- .../main/java/com/google/backstory/Srum.java | 10 +- .../java/com/google/backstory/Status.java | 2 +- .../com/google/backstory/StringSequence.java | 10 +- .../backstory/StringToInt64MapEntry.java | 10 +- .../google/backstory/SystemEventDetails.java | 10 +- .../main/java/com/google/backstory/Tags.java | 10 +- .../com/google/backstory/ThreatVerdict.java | 2 +- .../java/com/google/backstory/TimeOff.java | 10 +- .../main/java/com/google/backstory/Tls.java | 30 +++--- .../java/com/google/backstory/Tracker.java | 10 +- .../java/com/google/backstory/Tunnels.java | 10 +- .../main/java/com/google/backstory/UDM.java | 10 +- .../backstory/{Udm.java => UdmProto.java} | 6 +- .../com/google/backstory/Uint64Sequence.java | 10 +- .../main/java/com/google/backstory/Url.java | 10 +- .../main/java/com/google/backstory/User.java | 10 +- .../java/com/google/backstory/UserAssist.java | 10 +- .../java/com/google/backstory/UsnJournal.java | 10 +- .../java/com/google/backstory/Verdict.java | 2 +- .../java/com/google/backstory/Volume.java | 10 +- .../com/google/backstory/Vulnerabilities.java | 10 +- .../com/google/backstory/Vulnerability.java | 10 +- .../com/google/backstory/WindowsEventLog.java | 10 +- .../backstory/WindowsScheduledTask.java | 30 +++--- .../google/backstory/WmiPersistenceItem.java | 10 +- .../main/java/com/google/backstory/X509.java | 10 +- .../src/main/proto/backstory/udm.proto | 1 + 101 files changed, 605 insertions(+), 604 deletions(-) rename java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/{Udm.java => UdmProto.java} (99%) diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/AnalyticsMetadata.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/AnalyticsMetadata.java index 5ea9d3a67163..d846b5a3e104 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/AnalyticsMetadata.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/AnalyticsMetadata.java @@ -56,13 +56,13 @@ private AnalyticsMetadata() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_AnalyticsMetadata_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_AnalyticsMetadata_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_AnalyticsMetadata_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.AnalyticsMetadata.class, @@ -295,13 +295,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.AnalyticsMetadata) com.google.backstory.AnalyticsMetadataOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_AnalyticsMetadata_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_AnalyticsMetadata_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_AnalyticsMetadata_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.AnalyticsMetadata.class, @@ -325,7 +325,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm.internal_static_google_backstory_AnalyticsMetadata_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_AnalyticsMetadata_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/AppCompatMetadata.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/AppCompatMetadata.java index 32f4bd093202..2da111c67d9c 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/AppCompatMetadata.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/AppCompatMetadata.java @@ -56,13 +56,13 @@ private AppCompatMetadata() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_AppCompatMetadata_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_AppCompatMetadata_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_AppCompatMetadata_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.AppCompatMetadata.class, @@ -354,13 +354,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.AppCompatMetadata) com.google.backstory.AppCompatMetadataOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_AppCompatMetadata_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_AppCompatMetadata_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_AppCompatMetadata_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.AppCompatMetadata.class, @@ -386,7 +386,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm.internal_static_google_backstory_AppCompatMetadata_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_AppCompatMetadata_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Artifact.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Artifact.java index 2a9453908df6..74c5c0d0ffb6 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Artifact.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Artifact.java @@ -63,13 +63,13 @@ private Artifact() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Artifact_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Artifact_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_Artifact_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_Artifact_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Artifact.class, com.google.backstory.Artifact.Builder.class); } @@ -1454,13 +1454,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.Artifact) com.google.backstory.ArtifactOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Artifact_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Artifact_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_Artifact_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_Artifact_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Artifact.class, com.google.backstory.Artifact.Builder.class); } @@ -1560,7 +1560,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm.internal_static_google_backstory_Artifact_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Artifact_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/ArtifactClient.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/ArtifactClient.java index 9ebcc116ba15..d6ee2654e6f8 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/ArtifactClient.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/ArtifactClient.java @@ -57,13 +57,13 @@ private ArtifactClient() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_ArtifactClient_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_ArtifactClient_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_ArtifactClient_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.ArtifactClient.class, @@ -401,13 +401,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.ArtifactClient) com.google.backstory.ArtifactClientOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_ArtifactClient_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_ArtifactClient_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_ArtifactClient_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.ArtifactClient.class, @@ -432,7 +432,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm.internal_static_google_backstory_ArtifactClient_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_ArtifactClient_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Asset.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Asset.java index 96f6cbd0c76a..24c97c1bbb7d 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Asset.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Asset.java @@ -70,13 +70,13 @@ private Asset() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Asset_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Asset_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_Asset_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_Asset_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Asset.class, com.google.backstory.Asset.Builder.class); } @@ -2493,13 +2493,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.Asset) com.google.backstory.AssetOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Asset_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Asset_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_Asset_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_Asset_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Asset.class, com.google.backstory.Asset.Builder.class); } @@ -2630,7 +2630,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm.internal_static_google_backstory_Asset_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Asset_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/AttackDetails.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/AttackDetails.java index 293bd084ad87..98d4ccaa235f 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/AttackDetails.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/AttackDetails.java @@ -58,13 +58,13 @@ private AttackDetails() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_AttackDetails_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_AttackDetails_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_AttackDetails_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.AttackDetails.class, @@ -165,14 +165,14 @@ private Tactic() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_AttackDetails_Tactic_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_AttackDetails_Tactic_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.AttackDetails.Tactic.class, @@ -468,14 +468,14 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.AttackDetails.Tactic) com.google.backstory.AttackDetails.TacticOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_AttackDetails_Tactic_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_AttackDetails_Tactic_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.AttackDetails.Tactic.class, @@ -500,7 +500,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_AttackDetails_Tactic_descriptor; } @@ -1040,14 +1040,14 @@ private Technique() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_AttackDetails_Technique_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_AttackDetails_Technique_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.AttackDetails.Technique.class, @@ -1467,14 +1467,14 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.AttackDetails.Technique) com.google.backstory.AttackDetails.TechniqueOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_AttackDetails_Technique_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_AttackDetails_Technique_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.AttackDetails.Technique.class, @@ -1501,7 +1501,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_AttackDetails_Technique_descriptor; } @@ -2542,13 +2542,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.AttackDetails) com.google.backstory.AttackDetailsOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_AttackDetails_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_AttackDetails_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_AttackDetails_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.AttackDetails.class, @@ -2586,7 +2586,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm.internal_static_google_backstory_AttackDetails_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_AttackDetails_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Attribute.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Attribute.java index 5811d574c65b..f7e7bf5fbbb3 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Attribute.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Attribute.java @@ -61,13 +61,13 @@ private Attribute() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Attribute_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Attribute_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_Attribute_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_Attribute_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Attribute.class, com.google.backstory.Attribute.Builder.class); } @@ -718,13 +718,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.Attribute) com.google.backstory.AttributeOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Attribute_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Attribute_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_Attribute_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_Attribute_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Attribute.class, com.google.backstory.Attribute.Builder.class); } @@ -795,7 +795,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm.internal_static_google_backstory_Attribute_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Attribute_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Authentication.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Authentication.java index 100787b21d30..32958e04e14f 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Authentication.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Authentication.java @@ -74,13 +74,13 @@ private Authentication() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Authentication_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Authentication_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_Authentication_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Authentication.class, @@ -1760,13 +1760,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.Authentication) com.google.backstory.AuthenticationOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Authentication_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Authentication_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_Authentication_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Authentication.class, @@ -1793,7 +1793,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm.internal_static_google_backstory_Authentication_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Authentication_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/BoolSequence.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/BoolSequence.java index c30e66aa1a04..a9afd0e8d0ef 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/BoolSequence.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/BoolSequence.java @@ -56,13 +56,13 @@ private BoolSequence() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_BoolSequence_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_BoolSequence_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_BoolSequence_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_BoolSequence_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.BoolSequence.class, com.google.backstory.BoolSequence.Builder.class); @@ -308,13 +308,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.BoolSequence) com.google.backstory.BoolSequenceOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_BoolSequence_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_BoolSequence_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_BoolSequence_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.BoolSequence.class, @@ -338,7 +338,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm.internal_static_google_backstory_BoolSequence_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_BoolSequence_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Browser.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Browser.java index ac2a562cb412..1bc832345715 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Browser.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Browser.java @@ -64,13 +64,13 @@ private Browser() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Browser_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Browser_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_Browser_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_Browser_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Browser.class, com.google.backstory.Browser.Builder.class); } @@ -1229,13 +1229,13 @@ private Cookie() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Browser_Cookie_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Browser_Cookie_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_Browser_Cookie_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Browser.Cookie.class, @@ -2109,13 +2109,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.Browser.Cookie) com.google.backstory.Browser.CookieOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Browser_Cookie_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Browser_Cookie_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_Browser_Cookie_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Browser.Cookie.class, @@ -2162,7 +2162,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm.internal_static_google_backstory_Browser_Cookie_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Browser_Cookie_descriptor; } @java.lang.Override @@ -4492,13 +4492,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.Browser) com.google.backstory.BrowserOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Browser_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Browser_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_Browser_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_Browser_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Browser.class, com.google.backstory.Browser.Builder.class); } @@ -4565,7 +4565,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm.internal_static_google_backstory_Browser_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Browser_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/BytesSequence.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/BytesSequence.java index 481570db39ca..f6c708067834 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/BytesSequence.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/BytesSequence.java @@ -56,13 +56,13 @@ private BytesSequence() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_BytesSequence_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_BytesSequence_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_BytesSequence_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.BytesSequence.class, @@ -301,13 +301,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.BytesSequence) com.google.backstory.BytesSequenceOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_BytesSequence_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_BytesSequence_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_BytesSequence_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.BytesSequence.class, @@ -331,7 +331,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm.internal_static_google_backstory_BytesSequence_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_BytesSequence_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Certificate.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Certificate.java index 0f7c9b65445b..c4b9b5b8eae8 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Certificate.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Certificate.java @@ -62,13 +62,13 @@ private Certificate() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Certificate_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Certificate_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_Certificate_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_Certificate_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Certificate.class, com.google.backstory.Certificate.Builder.class); } @@ -797,13 +797,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.Certificate) com.google.backstory.CertificateOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Certificate_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Certificate_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_Certificate_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Certificate.class, @@ -853,7 +853,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm.internal_static_google_backstory_Certificate_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Certificate_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Cloud.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Cloud.java index d7557a759387..8b7820c19adf 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Cloud.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Cloud.java @@ -57,13 +57,13 @@ private Cloud() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Cloud_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Cloud_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_Cloud_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_Cloud_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Cloud.class, com.google.backstory.Cloud.Builder.class); } @@ -680,13 +680,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.Cloud) com.google.backstory.CloudOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Cloud_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Cloud_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_Cloud_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_Cloud_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Cloud.class, com.google.backstory.Cloud.Builder.class); } @@ -729,7 +729,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm.internal_static_google_backstory_Cloud_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Cloud_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/CollectionOuterClass.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/CollectionOuterClass.java index 2b61b85f7e19..db440a9da9db 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/CollectionOuterClass.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/CollectionOuterClass.java @@ -190,7 +190,7 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { new com.google.protobuf.Descriptors.FileDescriptor[] { com.google.backstory.EntityProto.getDescriptor(), com.google.backstory.IdOuterClass.getDescriptor(), - com.google.backstory.Udm.getDescriptor(), + com.google.backstory.UdmProto.getDescriptor(), com.google.protobuf.DurationProto.getDescriptor(), com.google.protobuf.StructProto.getDescriptor(), com.google.protobuf.TimestampProto.getDescriptor(), @@ -289,7 +289,7 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { descriptor.resolveAllFeaturesImmutable(); com.google.backstory.EntityProto.getDescriptor(); com.google.backstory.IdOuterClass.getDescriptor(); - com.google.backstory.Udm.getDescriptor(); + com.google.backstory.UdmProto.getDescriptor(); com.google.protobuf.DurationProto.getDescriptor(); com.google.protobuf.StructProto.getDescriptor(); com.google.protobuf.TimestampProto.getDescriptor(); diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/DNSRecord.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/DNSRecord.java index f8886475be07..e2f331d0396c 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/DNSRecord.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/DNSRecord.java @@ -58,13 +58,13 @@ private DNSRecord() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_DNSRecord_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_DNSRecord_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_DNSRecord_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_DNSRecord_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.DNSRecord.class, com.google.backstory.DNSRecord.Builder.class); } @@ -755,13 +755,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.DNSRecord) com.google.backstory.DNSRecordOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_DNSRecord_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_DNSRecord_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_DNSRecord_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_DNSRecord_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.DNSRecord.class, com.google.backstory.DNSRecord.Builder.class); } @@ -820,7 +820,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm.internal_static_google_backstory_DNSRecord_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_DNSRecord_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Dhcp.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Dhcp.java index f183eea2da47..de6ad4b5afdf 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Dhcp.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Dhcp.java @@ -69,13 +69,13 @@ private Dhcp() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Dhcp_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Dhcp_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_Dhcp_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_Dhcp_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Dhcp.class, com.google.backstory.Dhcp.Builder.class); } @@ -669,13 +669,13 @@ private Option() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Dhcp_Option_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Dhcp_Option_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_Dhcp_Option_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Dhcp.Option.class, @@ -901,13 +901,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.Dhcp.Option) com.google.backstory.Dhcp.OptionOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Dhcp_Option_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Dhcp_Option_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_Dhcp_Option_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Dhcp.Option.class, @@ -932,7 +932,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm.internal_static_google_backstory_Dhcp_Option_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Dhcp_Option_descriptor; } @java.lang.Override @@ -2399,13 +2399,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.Dhcp) com.google.backstory.DhcpOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Dhcp_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Dhcp_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_Dhcp_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_Dhcp_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Dhcp.class, com.google.backstory.Dhcp.Builder.class); } @@ -2453,7 +2453,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm.internal_static_google_backstory_Dhcp_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Dhcp_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Dns.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Dns.java index e1ad1a8af6cb..698af41c5088 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Dns.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Dns.java @@ -59,13 +59,13 @@ private Dns() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Dns_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Dns_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_Dns_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_Dns_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Dns.class, com.google.backstory.Dns.Builder.class); } @@ -200,13 +200,13 @@ private Question() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Dns_Question_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Dns_Question_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_Dns_Question_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Dns.Question.class, @@ -562,13 +562,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.Dns.Question) com.google.backstory.Dns.QuestionOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Dns_Question_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Dns_Question_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_Dns_Question_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Dns.Question.class, @@ -608,7 +608,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm.internal_static_google_backstory_Dns_Question_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Dns_Question_descriptor; } @java.lang.Override @@ -1371,14 +1371,14 @@ private ResourceRecord() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_Dns_ResourceRecord_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_Dns_ResourceRecord_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Dns.ResourceRecord.class, @@ -1789,14 +1789,14 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.Dns.ResourceRecord) com.google.backstory.Dns.ResourceRecordOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_Dns_ResourceRecord_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_Dns_ResourceRecord_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Dns.ResourceRecord.class, @@ -1825,7 +1825,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_Dns_ResourceRecord_descriptor; } @@ -3248,13 +3248,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.Dns) com.google.backstory.DnsOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Dns_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Dns_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_Dns_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_Dns_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Dns.class, com.google.backstory.Dns.Builder.class); } @@ -3311,7 +3311,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm.internal_static_google_backstory_Dns_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Dns_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Domain.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Domain.java index 7e27ceefdcc0..f8c68b8f7ecd 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Domain.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Domain.java @@ -68,13 +68,13 @@ private Domain() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Domain_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Domain_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_Domain_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_Domain_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Domain.class, com.google.backstory.Domain.Builder.class); } @@ -2275,13 +2275,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.Domain) com.google.backstory.DomainOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Domain_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Domain_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_Domain_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_Domain_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Domain.class, com.google.backstory.Domain.Builder.class); } @@ -2441,7 +2441,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm.internal_static_google_backstory_Domain_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Domain_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/DoubleSequence.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/DoubleSequence.java index 3c5d47f6426d..498b122a2e52 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/DoubleSequence.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/DoubleSequence.java @@ -56,13 +56,13 @@ private DoubleSequence() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_DoubleSequence_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_DoubleSequence_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_DoubleSequence_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.DoubleSequence.class, @@ -309,13 +309,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.DoubleSequence) com.google.backstory.DoubleSequenceOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_DoubleSequence_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_DoubleSequence_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_DoubleSequence_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.DoubleSequence.class, @@ -339,7 +339,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm.internal_static_google_backstory_DoubleSequence_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_DoubleSequence_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Email.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Email.java index 9a07fe40056f..ed4066533af6 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Email.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Email.java @@ -63,13 +63,13 @@ private Email() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Email_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Email_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_Email_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_Email_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Email.class, com.google.backstory.Email.Builder.class); } @@ -823,13 +823,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.Email) com.google.backstory.EmailOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Email_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Email_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_Email_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_Email_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Email.class, com.google.backstory.Email.Builder.class); } @@ -858,7 +858,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm.internal_static_google_backstory_Email_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Email_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/EntityProto.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/EntityProto.java index e9df6d066235..53c461a987d2 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/EntityProto.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/EntityProto.java @@ -296,7 +296,7 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { descriptorData, new com.google.protobuf.Descriptors.FileDescriptor[] { com.google.backstory.EntityRiskProto.getDescriptor(), - com.google.backstory.Udm.getDescriptor(), + com.google.backstory.UdmProto.getDescriptor(), com.google.protobuf.StructProto.getDescriptor(), com.google.protobuf.TimestampProto.getDescriptor(), com.google.type.IntervalProto.getDescriptor(), @@ -387,7 +387,7 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { }); descriptor.resolveAllFeaturesImmutable(); com.google.backstory.EntityRiskProto.getDescriptor(); - com.google.backstory.Udm.getDescriptor(); + com.google.backstory.UdmProto.getDescriptor(); com.google.protobuf.StructProto.getDescriptor(); com.google.protobuf.TimestampProto.getDescriptor(); com.google.type.IntervalProto.getDescriptor(); diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/ExifInfo.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/ExifInfo.java index d991f715c1be..b26a877a192e 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/ExifInfo.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/ExifInfo.java @@ -59,13 +59,13 @@ private ExifInfo() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_ExifInfo_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_ExifInfo_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_ExifInfo_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_ExifInfo_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.ExifInfo.class, com.google.backstory.ExifInfo.Builder.class); } @@ -577,13 +577,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.ExifInfo) com.google.backstory.ExifInfoOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_ExifInfo_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_ExifInfo_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_ExifInfo_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_ExifInfo_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.ExifInfo.class, com.google.backstory.ExifInfo.Builder.class); } @@ -623,7 +623,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm.internal_static_google_backstory_ExifInfo_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_ExifInfo_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Extensions.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Extensions.java index 72b09be14960..755c25556da3 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Extensions.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Extensions.java @@ -54,13 +54,13 @@ private Extensions(com.google.protobuf.GeneratedMessage.Builder builder) { private Extensions() {} public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Extensions_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Extensions_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_Extensions_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_Extensions_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Extensions.class, com.google.backstory.Extensions.Builder.class); } @@ -902,13 +902,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.Extensions) com.google.backstory.ExtensionsOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Extensions_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Extensions_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_Extensions_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_Extensions_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Extensions.class, com.google.backstory.Extensions.Builder.class); } @@ -997,7 +997,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm.internal_static_google_backstory_Extensions_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Extensions_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Favicon.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Favicon.java index da9c541934f9..1819113d4d2f 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Favicon.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Favicon.java @@ -57,13 +57,13 @@ private Favicon() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Favicon_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Favicon_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_Favicon_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_Favicon_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Favicon.class, com.google.backstory.Favicon.Builder.class); } @@ -355,13 +355,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.Favicon) com.google.backstory.FaviconOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Favicon_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Favicon_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_Favicon_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_Favicon_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Favicon.class, com.google.backstory.Favicon.Builder.class); } @@ -384,7 +384,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm.internal_static_google_backstory_Favicon_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Favicon_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/File.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/File.java index 44d2727782ee..8341fc9010d5 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/File.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/File.java @@ -72,13 +72,13 @@ private File() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_File_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_File_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_File_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_File_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.File.class, com.google.backstory.File.Builder.class); } @@ -7157,13 +7157,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.File) com.google.backstory.FileOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_File_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_File_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_File_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_File_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.File.class, com.google.backstory.File.Builder.class); } @@ -7330,7 +7330,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm.internal_static_google_backstory_File_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_File_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/FileMetadata.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/FileMetadata.java index f5dfc8a98197..3a8f77feab1c 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/FileMetadata.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/FileMetadata.java @@ -57,13 +57,13 @@ private FileMetadata(com.google.protobuf.GeneratedMessage.Builder builder) { private FileMetadata() {} public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_FileMetadata_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_FileMetadata_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_FileMetadata_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_FileMetadata_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.FileMetadata.class, com.google.backstory.FileMetadata.Builder.class); @@ -307,13 +307,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.FileMetadata) com.google.backstory.FileMetadataOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_FileMetadata_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_FileMetadata_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_FileMetadata_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.FileMetadata.class, @@ -350,7 +350,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm.internal_static_google_backstory_FileMetadata_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_FileMetadata_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/FileMetadataCodesign.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/FileMetadataCodesign.java index ca1636d1e6d5..41a0680af51f 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/FileMetadataCodesign.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/FileMetadataCodesign.java @@ -58,14 +58,14 @@ private FileMetadataCodesign() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_FileMetadataCodesign_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_FileMetadataCodesign_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.FileMetadataCodesign.class, @@ -491,14 +491,14 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.FileMetadataCodesign) com.google.backstory.FileMetadataCodesignOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_FileMetadataCodesign_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_FileMetadataCodesign_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.FileMetadataCodesign.class, @@ -538,7 +538,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_FileMetadataCodesign_descriptor; } diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/FileMetadataImports.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/FileMetadataImports.java index 3b366287597a..b40de62006c1 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/FileMetadataImports.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/FileMetadataImports.java @@ -57,13 +57,13 @@ private FileMetadataImports() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_FileMetadataImports_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_FileMetadataImports_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_FileMetadataImports_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.FileMetadataImports.class, @@ -380,14 +380,14 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.FileMetadataImports) com.google.backstory.FileMetadataImportsOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_FileMetadataImports_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_FileMetadataImports_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.FileMetadataImports.class, @@ -412,7 +412,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_FileMetadataImports_descriptor; } diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/FileMetadataPE.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/FileMetadataPE.java index 0ea82f1cc9b9..df1e5cdc5551 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/FileMetadataPE.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/FileMetadataPE.java @@ -63,13 +63,13 @@ private FileMetadataPE() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_FileMetadataPE_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_FileMetadataPE_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_FileMetadataPE_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.FileMetadataPE.class, @@ -1235,13 +1235,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.FileMetadataPE) com.google.backstory.FileMetadataPEOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_FileMetadataPE_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_FileMetadataPE_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_FileMetadataPE_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.FileMetadataPE.class, @@ -1349,7 +1349,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm.internal_static_google_backstory_FileMetadataPE_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_FileMetadataPE_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/FileMetadataPeResourceInfo.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/FileMetadataPeResourceInfo.java index b21ea5e4afa9..70afbcf8a837 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/FileMetadataPeResourceInfo.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/FileMetadataPeResourceInfo.java @@ -59,14 +59,14 @@ private FileMetadataPeResourceInfo() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_FileMetadataPeResourceInfo_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_FileMetadataPeResourceInfo_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.FileMetadataPeResourceInfo.class, @@ -524,14 +524,14 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.FileMetadataPeResourceInfo) com.google.backstory.FileMetadataPeResourceInfoOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_FileMetadataPeResourceInfo_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_FileMetadataPeResourceInfo_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.FileMetadataPeResourceInfo.class, @@ -559,7 +559,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_FileMetadataPeResourceInfo_descriptor; } diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/FileMetadataSection.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/FileMetadataSection.java index 2111b807cead..e231d32196c0 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/FileMetadataSection.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/FileMetadataSection.java @@ -57,13 +57,13 @@ private FileMetadataSection() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_FileMetadataSection_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_FileMetadataSection_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_FileMetadataSection_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.FileMetadataSection.class, @@ -446,14 +446,14 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.FileMetadataSection) com.google.backstory.FileMetadataSectionOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_FileMetadataSection_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_FileMetadataSection_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.FileMetadataSection.class, @@ -481,7 +481,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_FileMetadataSection_descriptor; } diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/FileMetadataSignatureInfo.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/FileMetadataSignatureInfo.java index 2a9fe2b3eaad..c91f9846c8b9 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/FileMetadataSignatureInfo.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/FileMetadataSignatureInfo.java @@ -59,14 +59,14 @@ private FileMetadataSignatureInfo() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_FileMetadataSignatureInfo_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_FileMetadataSignatureInfo_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.FileMetadataSignatureInfo.class, @@ -611,14 +611,14 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.FileMetadataSignatureInfo) com.google.backstory.FileMetadataSignatureInfoOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_FileMetadataSignatureInfo_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_FileMetadataSignatureInfo_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.FileMetadataSignatureInfo.class, @@ -658,7 +658,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_FileMetadataSignatureInfo_descriptor; } diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/FindingVariable.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/FindingVariable.java index 3d4c9c85eb92..fefb170d9976 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/FindingVariable.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/FindingVariable.java @@ -59,13 +59,13 @@ private FindingVariable() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_FindingVariable_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_FindingVariable_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_FindingVariable_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.FindingVariable.class, @@ -1562,13 +1562,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.FindingVariable) com.google.backstory.FindingVariableOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_FindingVariable_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_FindingVariable_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_FindingVariable_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.FindingVariable.class, @@ -1617,7 +1617,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm.internal_static_google_backstory_FindingVariable_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_FindingVariable_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Ftp.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Ftp.java index e4acba02f5f3..b4330e50735a 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Ftp.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Ftp.java @@ -56,13 +56,13 @@ private Ftp() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Ftp_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Ftp_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_Ftp_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_Ftp_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Ftp.class, com.google.backstory.Ftp.Builder.class); } @@ -292,13 +292,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.Ftp) com.google.backstory.FtpOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Ftp_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Ftp_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_Ftp_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_Ftp_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Ftp.class, com.google.backstory.Ftp.Builder.class); } @@ -320,7 +320,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm.internal_static_google_backstory_Ftp_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Ftp_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Group.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Group.java index 52af1beb4e38..750a2bee5fb4 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Group.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Group.java @@ -59,13 +59,13 @@ private Group() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Group_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Group_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_Group_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_Group_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Group.class, com.google.backstory.Group.Builder.class); } @@ -647,13 +647,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.Group) com.google.backstory.GroupOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Group_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Group_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_Group_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_Group_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Group.class, com.google.backstory.Group.Builder.class); } @@ -698,7 +698,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm.internal_static_google_backstory_Group_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Group_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/GroupedFields.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/GroupedFields.java index 5b9f6fceb43f..2ce6f534c47d 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/GroupedFields.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/GroupedFields.java @@ -64,13 +64,13 @@ private GroupedFields() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_GroupedFields_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_GroupedFields_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_GroupedFields_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.GroupedFields.class, @@ -913,13 +913,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.GroupedFields) com.google.backstory.GroupedFieldsOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_GroupedFields_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_GroupedFields_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_GroupedFields_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.GroupedFields.class, @@ -950,7 +950,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm.internal_static_google_backstory_GroupedFields_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_GroupedFields_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Hardware.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Hardware.java index 199652cc51d3..202be2c839d7 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Hardware.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Hardware.java @@ -61,13 +61,13 @@ private Hardware() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Hardware_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Hardware_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_Hardware_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_Hardware_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Hardware.class, com.google.backstory.Hardware.Builder.class); } @@ -660,13 +660,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.Hardware) com.google.backstory.HardwareOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Hardware_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Hardware_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_Hardware_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_Hardware_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Hardware.class, com.google.backstory.Hardware.Builder.class); } @@ -696,7 +696,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm.internal_static_google_backstory_Hardware_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Hardware_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Http.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Http.java index bb37bf42bb3e..35e06cc29f02 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Http.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Http.java @@ -60,13 +60,13 @@ private Http() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Http_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Http_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_Http_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_Http_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Http.class, com.google.backstory.Http.Builder.class); } @@ -457,13 +457,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.Http) com.google.backstory.HttpOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Http_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Http_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_Http_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_Http_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Http.class, com.google.backstory.Http.Builder.class); } @@ -488,7 +488,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm.internal_static_google_backstory_Http_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Http_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Int64Sequence.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Int64Sequence.java index 6227887f22dc..fde30e78eaba 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Int64Sequence.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Int64Sequence.java @@ -56,13 +56,13 @@ private Int64Sequence() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Int64Sequence_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Int64Sequence_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_Int64Sequence_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Int64Sequence.class, @@ -312,13 +312,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.Int64Sequence) com.google.backstory.Int64SequenceOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Int64Sequence_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Int64Sequence_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_Int64Sequence_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Int64Sequence.class, @@ -342,7 +342,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm.internal_static_google_backstory_Int64Sequence_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Int64Sequence_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Investigation.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Investigation.java index ea2953017d12..9f58d6e336c8 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Investigation.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Investigation.java @@ -65,13 +65,13 @@ private Investigation() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Investigation_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Investigation_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_Investigation_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Investigation.class, @@ -922,13 +922,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.Investigation) com.google.backstory.InvestigationOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Investigation_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Investigation_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_Investigation_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Investigation.class, @@ -961,7 +961,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm.internal_static_google_backstory_Investigation_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Investigation_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Label.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Label.java index 0d6f992a10ae..27102619b079 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Label.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Label.java @@ -58,13 +58,13 @@ private Label() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Label_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Label_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_Label_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_Label_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Label.class, com.google.backstory.Label.Builder.class); } @@ -446,13 +446,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.Label) com.google.backstory.LabelOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Label_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Label_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_Label_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_Label_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Label.class, com.google.backstory.Label.Builder.class); } @@ -477,7 +477,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm.internal_static_google_backstory_Label_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Label_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/LinuxUtmp.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/LinuxUtmp.java index 43a302f9ef74..d13f79c6b2d5 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/LinuxUtmp.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/LinuxUtmp.java @@ -56,13 +56,13 @@ private LinuxUtmp() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_LinuxUtmp_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_LinuxUtmp_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_LinuxUtmp_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_LinuxUtmp_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.LinuxUtmp.class, com.google.backstory.LinuxUtmp.Builder.class); } @@ -608,13 +608,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.LinuxUtmp) com.google.backstory.LinuxUtmpOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_LinuxUtmp_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_LinuxUtmp_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_LinuxUtmp_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_LinuxUtmp_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.LinuxUtmp.class, com.google.backstory.LinuxUtmp.Builder.class); } @@ -636,7 +636,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm.internal_static_google_backstory_LinuxUtmp_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_LinuxUtmp_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Location.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Location.java index 1845fdadcf4a..b0cdb4246af2 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Location.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Location.java @@ -61,13 +61,13 @@ private Location() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Location_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Location_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_Location_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_Location_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Location.class, com.google.backstory.Location.Builder.class); } @@ -756,13 +756,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.Location) com.google.backstory.LocationOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Location_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Location_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_Location_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_Location_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Location.class, com.google.backstory.Location.Builder.class); } @@ -805,7 +805,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm.internal_static_google_backstory_Location_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Location_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Metadata.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Metadata.java index 3725b4b7c2b8..3bccd7b1a1d7 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Metadata.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Metadata.java @@ -70,13 +70,13 @@ private Metadata() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Metadata_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Metadata_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_Metadata_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_Metadata_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Metadata.class, com.google.backstory.Metadata.Builder.class); } @@ -6204,13 +6204,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.Metadata) com.google.backstory.MetadataOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Metadata_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Metadata_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_Metadata_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_Metadata_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Metadata.class, com.google.backstory.Metadata.Builder.class); } @@ -6303,7 +6303,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm.internal_static_google_backstory_Metadata_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Metadata_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Network.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Network.java index 3aec56ffbfb3..e1180ec6e44b 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Network.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Network.java @@ -68,13 +68,13 @@ private Network() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Network_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Network_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_Network_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_Network_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Network.class, com.google.backstory.Network.Builder.class); } @@ -4786,13 +4786,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.Network) com.google.backstory.NetworkOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Network_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Network_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_Network_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_Network_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Network.class, com.google.backstory.Network.Builder.class); } @@ -4895,7 +4895,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm.internal_static_google_backstory_Network_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Network_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Noun.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Noun.java index 136ceabe425f..796a1f8e680e 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Noun.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Noun.java @@ -79,13 +79,13 @@ private Noun() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Noun_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Noun_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_Noun_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_Noun_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Noun.class, com.google.backstory.Noun.Builder.class); } @@ -3257,13 +3257,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.Noun) com.google.backstory.NounOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Noun_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Noun_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_Noun_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_Noun_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Noun.class, com.google.backstory.Noun.Builder.class); } @@ -3460,7 +3460,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm.internal_static_google_backstory_Noun_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Noun_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/NtfsFileMetadata.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/NtfsFileMetadata.java index ef010f0fe023..9e90ba705f1d 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/NtfsFileMetadata.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/NtfsFileMetadata.java @@ -56,13 +56,13 @@ private NtfsFileMetadata() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_NtfsFileMetadata_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_NtfsFileMetadata_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_NtfsFileMetadata_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.NtfsFileMetadata.class, @@ -651,13 +651,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.NtfsFileMetadata) com.google.backstory.NtfsFileMetadataOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_NtfsFileMetadata_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_NtfsFileMetadata_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_NtfsFileMetadata_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.NtfsFileMetadata.class, @@ -726,7 +726,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm.internal_static_google_backstory_NtfsFileMetadata_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_NtfsFileMetadata_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/OutlookMetadata.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/OutlookMetadata.java index c7478b16f0b7..278ae5c0fe2d 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/OutlookMetadata.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/OutlookMetadata.java @@ -58,13 +58,13 @@ private OutlookMetadata() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_OutlookMetadata_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_OutlookMetadata_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_OutlookMetadata_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.OutlookMetadata.class, @@ -449,13 +449,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.OutlookMetadata) com.google.backstory.OutlookMetadataOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_OutlookMetadata_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_OutlookMetadata_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_OutlookMetadata_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.OutlookMetadata.class, @@ -482,7 +482,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm.internal_static_google_backstory_OutlookMetadata_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_OutlookMetadata_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/PDFInfo.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/PDFInfo.java index 88b1468effe5..7d9f665bfd4b 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/PDFInfo.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/PDFInfo.java @@ -57,13 +57,13 @@ private PDFInfo() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_PDFInfo_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_PDFInfo_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_PDFInfo_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_PDFInfo_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.PDFInfo.class, com.google.backstory.PDFInfo.Builder.class); } @@ -885,13 +885,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.PDFInfo) com.google.backstory.PDFInfoOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_PDFInfo_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_PDFInfo_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_PDFInfo_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_PDFInfo_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.PDFInfo.class, com.google.backstory.PDFInfo.Builder.class); } @@ -934,7 +934,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm.internal_static_google_backstory_PDFInfo_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_PDFInfo_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/PeFileMetadata.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/PeFileMetadata.java index 7a9faf052e8a..88522d3ad5b9 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/PeFileMetadata.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/PeFileMetadata.java @@ -56,13 +56,13 @@ private PeFileMetadata() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_PeFileMetadata_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_PeFileMetadata_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_PeFileMetadata_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.PeFileMetadata.class, @@ -294,13 +294,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.PeFileMetadata) com.google.backstory.PeFileMetadataOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_PeFileMetadata_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_PeFileMetadata_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_PeFileMetadata_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.PeFileMetadata.class, @@ -324,7 +324,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm.internal_static_google_backstory_PeFileMetadata_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_PeFileMetadata_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Permission.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Permission.java index 5762cfc61adf..e6668a792cea 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Permission.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Permission.java @@ -58,13 +58,13 @@ private Permission() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Permission_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Permission_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_Permission_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_Permission_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Permission.class, com.google.backstory.Permission.Builder.class); } @@ -619,13 +619,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.Permission) com.google.backstory.PermissionOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Permission_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Permission_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_Permission_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_Permission_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Permission.class, com.google.backstory.Permission.Builder.class); } @@ -649,7 +649,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm.internal_static_google_backstory_Permission_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Permission_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/PlatformSoftware.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/PlatformSoftware.java index a143bb0b322a..3843a45802c6 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/PlatformSoftware.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/PlatformSoftware.java @@ -58,13 +58,13 @@ private PlatformSoftware() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_PlatformSoftware_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_PlatformSoftware_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_PlatformSoftware_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.PlatformSoftware.class, @@ -408,13 +408,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.PlatformSoftware) com.google.backstory.PlatformSoftwareOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_PlatformSoftware_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_PlatformSoftware_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_PlatformSoftware_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.PlatformSoftware.class, @@ -440,7 +440,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm.internal_static_google_backstory_PlatformSoftware_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_PlatformSoftware_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/PopularityRank.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/PopularityRank.java index 688c44aa6523..b3bca7f8904c 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/PopularityRank.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/PopularityRank.java @@ -57,13 +57,13 @@ private PopularityRank() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_PopularityRank_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_PopularityRank_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_PopularityRank_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.PopularityRank.class, @@ -392,13 +392,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.PopularityRank) com.google.backstory.PopularityRankOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_PopularityRank_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_PopularityRank_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_PopularityRank_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.PopularityRank.class, @@ -437,7 +437,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm.internal_static_google_backstory_PopularityRank_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_PopularityRank_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/PrefetchFileMetadata.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/PrefetchFileMetadata.java index adaf5a961e4c..8d1fe5c047a4 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/PrefetchFileMetadata.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/PrefetchFileMetadata.java @@ -56,14 +56,14 @@ private PrefetchFileMetadata() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_PrefetchFileMetadata_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_PrefetchFileMetadata_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.PrefetchFileMetadata.class, @@ -325,14 +325,14 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.PrefetchFileMetadata) com.google.backstory.PrefetchFileMetadataOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_PrefetchFileMetadata_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_PrefetchFileMetadata_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.PrefetchFileMetadata.class, @@ -357,7 +357,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_PrefetchFileMetadata_descriptor; } diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Prevalence.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Prevalence.java index 78b0592b7f8f..299e3de33882 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Prevalence.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Prevalence.java @@ -55,13 +55,13 @@ private Prevalence(com.google.protobuf.GeneratedMessage.Builder builder) { private Prevalence() {} public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Prevalence_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Prevalence_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_Prevalence_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_Prevalence_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Prevalence.class, com.google.backstory.Prevalence.Builder.class); } @@ -374,13 +374,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.Prevalence) com.google.backstory.PrevalenceOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Prevalence_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Prevalence_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_Prevalence_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_Prevalence_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Prevalence.class, com.google.backstory.Prevalence.Builder.class); } @@ -406,7 +406,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm.internal_static_google_backstory_Prevalence_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Prevalence_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Priority.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Priority.java index e946c7f4383a..026c1a91aa5a 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Priority.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Priority.java @@ -235,7 +235,7 @@ public final com.google.protobuf.Descriptors.EnumDescriptor getDescriptorForType } public static com.google.protobuf.Descriptors.EnumDescriptor getDescriptor() { - return com.google.backstory.Udm.getDescriptor().getEnumTypes().get(3); + return com.google.backstory.UdmProto.getDescriptor().getEnumTypes().get(3); } private static final Priority[] VALUES = values(); diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Process.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Process.java index 094ee74a0de0..3ec71a27ce01 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Process.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Process.java @@ -70,13 +70,13 @@ private Process() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Process_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Process_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_Process_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_Process_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Process.class, com.google.backstory.Process.Builder.class); } @@ -2256,13 +2256,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.Process) com.google.backstory.ProcessOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Process_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Process_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_Process_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_Process_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Process.class, com.google.backstory.Process.Builder.class); } @@ -2339,7 +2339,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm.internal_static_google_backstory_Process_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Process_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/ProxyInfo.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/ProxyInfo.java index 526b6143c201..13430f422b7d 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/ProxyInfo.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/ProxyInfo.java @@ -56,13 +56,13 @@ private ProxyInfo() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_ProxyInfo_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_ProxyInfo_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_ProxyInfo_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_ProxyInfo_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.ProxyInfo.class, com.google.backstory.ProxyInfo.Builder.class); } @@ -572,13 +572,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.ProxyInfo) com.google.backstory.ProxyInfoOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_ProxyInfo_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_ProxyInfo_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_ProxyInfo_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_ProxyInfo_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.ProxyInfo.class, com.google.backstory.ProxyInfo.Builder.class); } @@ -610,7 +610,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm.internal_static_google_backstory_ProxyInfo_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_ProxyInfo_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Reason.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Reason.java index d2dd21e1ce9b..79b399b160cf 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Reason.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Reason.java @@ -189,7 +189,7 @@ public final com.google.protobuf.Descriptors.EnumDescriptor getDescriptorForType } public static com.google.protobuf.Descriptors.EnumDescriptor getDescriptor() { - return com.google.backstory.Udm.getDescriptor().getEnumTypes().get(4); + return com.google.backstory.UdmProto.getDescriptor().getEnumTypes().get(4); } private static final Reason[] VALUES = values(); diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Registry.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Registry.java index ca921785f73b..fed0ab3dcb33 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Registry.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Registry.java @@ -60,13 +60,13 @@ private Registry() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Registry_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Registry_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_Registry_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_Registry_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Registry.class, com.google.backstory.Registry.Builder.class); } @@ -908,13 +908,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.Registry) com.google.backstory.RegistryOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Registry_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Registry_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_Registry_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_Registry_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Registry.class, com.google.backstory.Registry.Builder.class); } @@ -940,7 +940,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm.internal_static_google_backstory_Registry_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Registry_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Reputation.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Reputation.java index c8cac410fa9d..0a9c5af9fcc8 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Reputation.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Reputation.java @@ -166,7 +166,7 @@ public final com.google.protobuf.Descriptors.EnumDescriptor getDescriptorForType } public static com.google.protobuf.Descriptors.EnumDescriptor getDescriptor() { - return com.google.backstory.Udm.getDescriptor().getEnumTypes().get(1); + return com.google.backstory.UdmProto.getDescriptor().getEnumTypes().get(1); } private static final Reputation[] VALUES = values(); diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Resource.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Resource.java index 014dade447db..1e1b090760ed 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Resource.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Resource.java @@ -63,13 +63,13 @@ private Resource() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Resource_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Resource_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_Resource_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_Resource_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Resource.class, com.google.backstory.Resource.Builder.class); } @@ -2104,13 +2104,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.Resource) com.google.backstory.ResourceOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Resource_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Resource_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_Resource_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_Resource_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Resource.class, com.google.backstory.Resource.Builder.class); } @@ -2188,7 +2188,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm.internal_static_google_backstory_Resource_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Resource_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/ResourceUsage.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/ResourceUsage.java index 9fb7d44d1978..3068cb6c71e8 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/ResourceUsage.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/ResourceUsage.java @@ -57,13 +57,13 @@ private ResourceUsage() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_ResourceUsage_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_ResourceUsage_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_ResourceUsage_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.ResourceUsage.class, @@ -357,13 +357,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.ResourceUsage) com.google.backstory.ResourceUsageOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_ResourceUsage_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_ResourceUsage_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_ResourceUsage_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.ResourceUsage.class, @@ -388,7 +388,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm.internal_static_google_backstory_ResourceUsage_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_ResourceUsage_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Role.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Role.java index 539a5d2577b6..e61ff3d9ab1f 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Role.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Role.java @@ -58,13 +58,13 @@ private Role() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Role_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Role_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_Role_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_Role_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Role.class, com.google.backstory.Role.Builder.class); } @@ -570,13 +570,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.Role) com.google.backstory.RoleOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Role_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Role_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_Role_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_Role_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Role.class, com.google.backstory.Role.Builder.class); } @@ -600,7 +600,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm.internal_static_google_backstory_Role_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Role_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/SSLCertificate.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/SSLCertificate.java index 66ae92a66283..90099b13fbb2 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/SSLCertificate.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/SSLCertificate.java @@ -60,13 +60,13 @@ private SSLCertificate() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_SSLCertificate_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_SSLCertificate_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SSLCertificate_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.SSLCertificate.class, @@ -167,14 +167,14 @@ private CertSignature() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SSLCertificate_CertSignature_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SSLCertificate_CertSignature_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.SSLCertificate.CertSignature.class, @@ -470,14 +470,14 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.SSLCertificate.CertSignature) com.google.backstory.SSLCertificate.CertSignatureOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SSLCertificate_CertSignature_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SSLCertificate_CertSignature_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.SSLCertificate.CertSignature.class, @@ -502,7 +502,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SSLCertificate_CertSignature_descriptor; } @@ -990,14 +990,14 @@ private AuthorityKeyId() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SSLCertificate_AuthorityKeyId_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SSLCertificate_AuthorityKeyId_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.SSLCertificate.AuthorityKeyId.class, @@ -1294,14 +1294,14 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.SSLCertificate.AuthorityKeyId) com.google.backstory.SSLCertificate.AuthorityKeyIdOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SSLCertificate_AuthorityKeyId_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SSLCertificate_AuthorityKeyId_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.SSLCertificate.AuthorityKeyId.class, @@ -1326,7 +1326,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SSLCertificate_AuthorityKeyId_descriptor; } @@ -2109,14 +2109,14 @@ private Extension() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SSLCertificate_Extension_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SSLCertificate_Extension_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.SSLCertificate.Extension.class, @@ -3045,14 +3045,14 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.SSLCertificate.Extension) com.google.backstory.SSLCertificate.ExtensionOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SSLCertificate_Extension_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SSLCertificate_Extension_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.SSLCertificate.Extension.class, @@ -3102,7 +3102,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SSLCertificate_Extension_descriptor; } @@ -5105,14 +5105,14 @@ private Subject() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SSLCertificate_Subject_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SSLCertificate_Subject_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.SSLCertificate.Subject.class, @@ -5656,14 +5656,14 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.SSLCertificate.Subject) com.google.backstory.SSLCertificate.SubjectOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SSLCertificate_Subject_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SSLCertificate_Subject_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.SSLCertificate.Subject.class, @@ -5692,7 +5692,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SSLCertificate_Subject_descriptor; } @@ -6691,14 +6691,14 @@ private RSA() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SSLCertificate_RSA_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SSLCertificate_RSA_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.SSLCertificate.RSA.class, @@ -7021,14 +7021,14 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.SSLCertificate.RSA) com.google.backstory.SSLCertificate.RSAOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SSLCertificate_RSA_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SSLCertificate_RSA_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.SSLCertificate.RSA.class, @@ -7054,7 +7054,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SSLCertificate_RSA_descriptor; } @@ -7608,13 +7608,13 @@ private EC() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_SSLCertificate_EC_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_SSLCertificate_EC_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SSLCertificate_EC_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.SSLCertificate.EC.class, @@ -7909,14 +7909,14 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.SSLCertificate.EC) com.google.backstory.SSLCertificate.ECOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SSLCertificate_EC_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SSLCertificate_EC_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.SSLCertificate.EC.class, @@ -7941,7 +7941,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SSLCertificate_EC_descriptor; } @@ -8439,14 +8439,14 @@ private PublicKey() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SSLCertificate_PublicKey_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SSLCertificate_PublicKey_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.SSLCertificate.PublicKey.class, @@ -8746,14 +8746,14 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.SSLCertificate.PublicKey) com.google.backstory.SSLCertificate.PublicKeyOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SSLCertificate_PublicKey_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SSLCertificate_PublicKey_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.SSLCertificate.PublicKey.class, @@ -8791,7 +8791,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SSLCertificate_PublicKey_descriptor; } @@ -9382,14 +9382,14 @@ private Validity(com.google.protobuf.GeneratedMessage.Builder builder) { private Validity() {} public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SSLCertificate_Validity_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SSLCertificate_Validity_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.SSLCertificate.Validity.class, @@ -9688,14 +9688,14 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.SSLCertificate.Validity) com.google.backstory.SSLCertificate.ValidityOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SSLCertificate_Validity_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SSLCertificate_Validity_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.SSLCertificate.Validity.class, @@ -9738,7 +9738,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SSLCertificate_Validity_descriptor; } @@ -11407,13 +11407,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.SSLCertificate) com.google.backstory.SSLCertificateOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_SSLCertificate_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_SSLCertificate_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SSLCertificate_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.SSLCertificate.class, @@ -11504,7 +11504,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm.internal_static_google_backstory_SSLCertificate_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_SSLCertificate_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/ScheduledAnacronTask.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/ScheduledAnacronTask.java index b73f984d468d..4aa5e266d767 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/ScheduledAnacronTask.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/ScheduledAnacronTask.java @@ -59,14 +59,14 @@ private ScheduledAnacronTask() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_ScheduledAnacronTask_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_ScheduledAnacronTask_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.ScheduledAnacronTask.class, @@ -516,14 +516,14 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.ScheduledAnacronTask) com.google.backstory.ScheduledAnacronTaskOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_ScheduledAnacronTask_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_ScheduledAnacronTask_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.ScheduledAnacronTask.class, @@ -551,7 +551,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_ScheduledAnacronTask_descriptor; } diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/ScheduledCronTask.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/ScheduledCronTask.java index 60ffafd8da3d..d09b91a0c324 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/ScheduledCronTask.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/ScheduledCronTask.java @@ -64,13 +64,13 @@ private ScheduledCronTask() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_ScheduledCronTask_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_ScheduledCronTask_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_ScheduledCronTask_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.ScheduledCronTask.class, @@ -823,13 +823,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.ScheduledCronTask) com.google.backstory.ScheduledCronTaskOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_ScheduledCronTask_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_ScheduledCronTask_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_ScheduledCronTask_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.ScheduledCronTask.class, @@ -861,7 +861,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm.internal_static_google_backstory_ScheduledCronTask_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_ScheduledCronTask_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/ScheduledTask.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/ScheduledTask.java index 0aefee5f0dca..1d42d25d0dd0 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/ScheduledTask.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/ScheduledTask.java @@ -60,13 +60,13 @@ private ScheduledTask() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_ScheduledTask_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_ScheduledTask_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_ScheduledTask_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.ScheduledTask.class, @@ -502,13 +502,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.ScheduledTask) com.google.backstory.ScheduledTaskOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_ScheduledTask_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_ScheduledTask_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_ScheduledTask_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.ScheduledTask.class, @@ -538,7 +538,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm.internal_static_google_backstory_ScheduledTask_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_ScheduledTask_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/SecurityResult.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/SecurityResult.java index bf4a3354104d..140fa3b33a64 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/SecurityResult.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/SecurityResult.java @@ -103,7 +103,7 @@ private SecurityResult() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_SecurityResult_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_SecurityResult_descriptor; } @SuppressWarnings({"rawtypes"}) @@ -121,7 +121,7 @@ protected com.google.protobuf.MapFieldReflectionAccessor internalGetMapFieldRefl @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SecurityResult_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.SecurityResult.class, @@ -3491,14 +3491,14 @@ private Association() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SecurityResult_Association_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SecurityResult_Association_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.SecurityResult.Association.class, @@ -3797,14 +3797,14 @@ private AssociationAlias() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SecurityResult_Association_AssociationAlias_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SecurityResult_Association_AssociationAlias_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.SecurityResult.Association.AssociationAlias.class, @@ -4105,14 +4105,14 @@ public static final class Builder // @@protoc_insertion_point(builder_implements:google.backstory.SecurityResult.Association.AssociationAlias) com.google.backstory.SecurityResult.Association.AssociationAliasOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SecurityResult_Association_AssociationAlias_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SecurityResult_Association_AssociationAlias_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.SecurityResult.Association.AssociationAlias.class, @@ -4138,7 +4138,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SecurityResult_Association_AssociationAlias_descriptor; } @@ -5873,14 +5873,14 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.SecurityResult.Association) com.google.backstory.SecurityResult.AssociationOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SecurityResult_Association_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SecurityResult_Association_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.SecurityResult.Association.class, @@ -5968,7 +5968,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SecurityResult_Association_descriptor; } @@ -9854,14 +9854,14 @@ private Source() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SecurityResult_Source_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SecurityResult_Source_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.SecurityResult.Source.class, @@ -10356,14 +10356,14 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.SecurityResult.Source) com.google.backstory.SecurityResult.SourceOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SecurityResult_Source_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SecurityResult_Source_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.SecurityResult.Source.class, @@ -10399,7 +10399,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SecurityResult_Source_descriptor; } @@ -11722,14 +11722,14 @@ private ProviderMLVerdict() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SecurityResult_ProviderMLVerdict_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SecurityResult_ProviderMLVerdict_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.SecurityResult.ProviderMLVerdict.class, @@ -12228,14 +12228,14 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.SecurityResult.ProviderMLVerdict) com.google.backstory.SecurityResult.ProviderMLVerdictOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SecurityResult_ProviderMLVerdict_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SecurityResult_ProviderMLVerdict_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.SecurityResult.ProviderMLVerdict.class, @@ -12276,7 +12276,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SecurityResult_ProviderMLVerdict_descriptor; } @@ -13722,14 +13722,14 @@ private AnalystVerdict() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SecurityResult_AnalystVerdict_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SecurityResult_AnalystVerdict_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.SecurityResult.AnalystVerdict.class, @@ -14050,14 +14050,14 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.SecurityResult.AnalystVerdict) com.google.backstory.SecurityResult.AnalystVerdictOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SecurityResult_AnalystVerdict_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SecurityResult_AnalystVerdict_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.SecurityResult.AnalystVerdict.class, @@ -14096,7 +14096,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SecurityResult_AnalystVerdict_descriptor; } @@ -14830,14 +14830,14 @@ private IoCStats() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SecurityResult_IoCStats_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SecurityResult_IoCStats_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.SecurityResult.IoCStats.class, @@ -15350,14 +15350,14 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.SecurityResult.IoCStats) com.google.backstory.SecurityResult.IoCStatsOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SecurityResult_IoCStats_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SecurityResult_IoCStats_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.SecurityResult.IoCStats.class, @@ -15388,7 +15388,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SecurityResult_IoCStats_descriptor; } @@ -16687,14 +16687,14 @@ private VerdictInfo() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SecurityResult_VerdictInfo_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SecurityResult_VerdictInfo_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.SecurityResult.VerdictInfo.class, @@ -17601,14 +17601,14 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.SecurityResult.VerdictInfo) com.google.backstory.SecurityResult.VerdictInfoOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SecurityResult_VerdictInfo_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SecurityResult_VerdictInfo_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.SecurityResult.VerdictInfo.class, @@ -17672,7 +17672,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SecurityResult_VerdictInfo_descriptor; } @@ -19968,14 +19968,14 @@ private Verdict() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SecurityResult_Verdict_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SecurityResult_Verdict_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.SecurityResult.Verdict.class, @@ -20403,14 +20403,14 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.SecurityResult.Verdict) com.google.backstory.SecurityResult.VerdictOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SecurityResult_Verdict_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SecurityResult_Verdict_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.SecurityResult.Verdict.class, @@ -20456,7 +20456,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SecurityResult_Verdict_descriptor; } @@ -21432,14 +21432,14 @@ private ThreatCollectionItem() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SecurityResult_ThreatCollectionItem_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SecurityResult_ThreatCollectionItem_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.SecurityResult.ThreatCollectionItem.class, @@ -21812,14 +21812,14 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.SecurityResult.ThreatCollectionItem) com.google.backstory.SecurityResult.ThreatCollectionItemOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SecurityResult_ThreatCollectionItem_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SecurityResult_ThreatCollectionItem_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.SecurityResult.ThreatCollectionItem.class, @@ -21845,7 +21845,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SecurityResult_ThreatCollectionItem_descriptor; } @@ -23565,7 +23565,7 @@ private static final class VariablesDefaultEntryHolder { defaultEntry = com.google.protobuf.MapEntry .newDefaultInstance( - com.google.backstory.Udm + com.google.backstory.UdmProto .internal_static_google_backstory_SecurityResult_VariablesEntry_descriptor, com.google.protobuf.WireFormat.FieldType.STRING, "", @@ -26100,7 +26100,7 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.SecurityResult) com.google.backstory.SecurityResultOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_SecurityResult_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_SecurityResult_descriptor; } @SuppressWarnings({"rawtypes"}) @@ -26128,7 +26128,7 @@ protected com.google.protobuf.MapFieldReflectionAccessor internalGetMutableMapFi @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SecurityResult_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.SecurityResult.class, @@ -26287,7 +26287,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm.internal_static_google_backstory_SecurityResult_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_SecurityResult_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Service.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Service.java index 595c8120f9bb..eff9b17b46bd 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Service.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Service.java @@ -60,13 +60,13 @@ private Service() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Service_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Service_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_Service_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_Service_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Service.class, com.google.backstory.Service.Builder.class); } @@ -1361,13 +1361,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.Service) com.google.backstory.ServiceOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Service_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Service_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_Service_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_Service_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Service.class, com.google.backstory.Service.Builder.class); } @@ -1393,7 +1393,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm.internal_static_google_backstory_Service_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Service_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/SignatureInfo.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/SignatureInfo.java index f0c42a2eeab1..da3e5ea8cd59 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/SignatureInfo.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/SignatureInfo.java @@ -54,13 +54,13 @@ private SignatureInfo(com.google.protobuf.GeneratedMessage.Builder builder) { private SignatureInfo() {} public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_SignatureInfo_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_SignatureInfo_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SignatureInfo_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.SignatureInfo.class, @@ -365,13 +365,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.SignatureInfo) com.google.backstory.SignatureInfoOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_SignatureInfo_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_SignatureInfo_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SignatureInfo_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.SignatureInfo.class, @@ -414,7 +414,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm.internal_static_google_backstory_SignatureInfo_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_SignatureInfo_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/SignerInfo.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/SignerInfo.java index 8c1044d1cf66..e52d08c20c34 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/SignerInfo.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/SignerInfo.java @@ -59,13 +59,13 @@ private SignerInfo() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_SignerInfo_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_SignerInfo_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_SignerInfo_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_SignerInfo_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.SignerInfo.class, com.google.backstory.SignerInfo.Builder.class); } @@ -581,13 +581,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.SignerInfo) com.google.backstory.SignerInfoOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_SignerInfo_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_SignerInfo_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_SignerInfo_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_SignerInfo_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.SignerInfo.class, com.google.backstory.SignerInfo.Builder.class); } @@ -612,7 +612,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm.internal_static_google_backstory_SignerInfo_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_SignerInfo_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Smtp.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Smtp.java index f097131fa200..e19be6d6833f 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Smtp.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Smtp.java @@ -60,13 +60,13 @@ private Smtp() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Smtp_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Smtp_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_Smtp_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_Smtp_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Smtp.class, com.google.backstory.Smtp.Builder.class); } @@ -644,13 +644,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.Smtp) com.google.backstory.SmtpOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Smtp_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Smtp_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_Smtp_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_Smtp_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Smtp.class, com.google.backstory.Smtp.Builder.class); } @@ -678,7 +678,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm.internal_static_google_backstory_Smtp_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Smtp_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Software.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Software.java index 270c7f2e4a4b..fdbe4cdbf35e 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Software.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Software.java @@ -60,13 +60,13 @@ private Software() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Software_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Software_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_Software_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_Software_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Software.class, com.google.backstory.Software.Builder.class); } @@ -574,13 +574,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.Software) com.google.backstory.SoftwareOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Software_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Software_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_Software_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_Software_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Software.class, com.google.backstory.Software.Builder.class); } @@ -612,7 +612,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm.internal_static_google_backstory_Software_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Software_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Srum.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Srum.java index 46d15646d349..b454c6899256 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Srum.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Srum.java @@ -58,13 +58,13 @@ private Srum() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Srum_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Srum_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_Srum_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_Srum_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Srum.class, com.google.backstory.Srum.Builder.class); } @@ -564,13 +564,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.Srum) com.google.backstory.SrumOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Srum_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Srum_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_Srum_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_Srum_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Srum.class, com.google.backstory.Srum.Builder.class); } @@ -600,7 +600,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm.internal_static_google_backstory_Srum_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Srum_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Status.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Status.java index 0003813dd8e8..62db8d52ea5c 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Status.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Status.java @@ -212,7 +212,7 @@ public final com.google.protobuf.Descriptors.EnumDescriptor getDescriptorForType } public static com.google.protobuf.Descriptors.EnumDescriptor getDescriptor() { - return com.google.backstory.Udm.getDescriptor().getEnumTypes().get(2); + return com.google.backstory.UdmProto.getDescriptor().getEnumTypes().get(2); } private static final Status[] VALUES = values(); diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/StringSequence.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/StringSequence.java index e4cf934ddae7..df5168af92b9 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/StringSequence.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/StringSequence.java @@ -56,13 +56,13 @@ private StringSequence() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_StringSequence_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_StringSequence_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_StringSequence_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.StringSequence.class, @@ -316,13 +316,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.StringSequence) com.google.backstory.StringSequenceOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_StringSequence_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_StringSequence_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_StringSequence_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.StringSequence.class, @@ -346,7 +346,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm.internal_static_google_backstory_StringSequence_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_StringSequence_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/StringToInt64MapEntry.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/StringToInt64MapEntry.java index 28d7155bbfc0..4794463b5414 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/StringToInt64MapEntry.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/StringToInt64MapEntry.java @@ -48,14 +48,14 @@ private StringToInt64MapEntry() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_StringToInt64MapEntry_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_StringToInt64MapEntry_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.StringToInt64MapEntry.class, @@ -352,14 +352,14 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.StringToInt64MapEntry) com.google.backstory.StringToInt64MapEntryOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_StringToInt64MapEntry_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_StringToInt64MapEntry_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.StringToInt64MapEntry.class, @@ -384,7 +384,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_StringToInt64MapEntry_descriptor; } diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/SystemEventDetails.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/SystemEventDetails.java index da81d68e2fa0..6c0462da6394 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/SystemEventDetails.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/SystemEventDetails.java @@ -58,13 +58,13 @@ private SystemEventDetails() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_SystemEventDetails_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_SystemEventDetails_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SystemEventDetails_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.SystemEventDetails.class, @@ -421,14 +421,14 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.SystemEventDetails) com.google.backstory.SystemEventDetailsOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SystemEventDetails_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SystemEventDetails_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.SystemEventDetails.class, @@ -454,7 +454,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_SystemEventDetails_descriptor; } diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Tags.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Tags.java index eb13112809dd..f9daa79704a7 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Tags.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Tags.java @@ -59,13 +59,13 @@ private Tags() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Tags_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Tags_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_Tags_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_Tags_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Tags.class, com.google.backstory.Tags.Builder.class); } @@ -388,13 +388,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.Tags) com.google.backstory.TagsOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Tags_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Tags_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_Tags_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_Tags_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Tags.class, com.google.backstory.Tags.Builder.class); } @@ -417,7 +417,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm.internal_static_google_backstory_Tags_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Tags_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/ThreatVerdict.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/ThreatVerdict.java index 3f918a68b9a3..cd1db25700a4 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/ThreatVerdict.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/ThreatVerdict.java @@ -189,7 +189,7 @@ public final com.google.protobuf.Descriptors.EnumDescriptor getDescriptorForType } public static com.google.protobuf.Descriptors.EnumDescriptor getDescriptor() { - return com.google.backstory.Udm.getDescriptor().getEnumTypes().get(5); + return com.google.backstory.UdmProto.getDescriptor().getEnumTypes().get(5); } private static final ThreatVerdict[] VALUES = values(); diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/TimeOff.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/TimeOff.java index a2803187a400..fc90cd1065d9 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/TimeOff.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/TimeOff.java @@ -57,13 +57,13 @@ private TimeOff() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_TimeOff_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_TimeOff_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_TimeOff_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_TimeOff_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.TimeOff.class, com.google.backstory.TimeOff.Builder.class); } @@ -358,13 +358,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.TimeOff) com.google.backstory.TimeOffOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_TimeOff_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_TimeOff_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_TimeOff_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_TimeOff_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.TimeOff.class, com.google.backstory.TimeOff.Builder.class); } @@ -400,7 +400,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm.internal_static_google_backstory_TimeOff_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_TimeOff_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Tls.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Tls.java index 0d4c096fca81..a2e80c5b8264 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Tls.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Tls.java @@ -60,13 +60,13 @@ private Tls() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Tls_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Tls_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_Tls_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_Tls_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Tls.class, com.google.backstory.Tls.Builder.class); } @@ -285,13 +285,13 @@ private Client() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Tls_Client_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Tls_Client_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_Tls_Client_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_Tls_Client_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Tls.Client.class, com.google.backstory.Tls.Client.Builder.class); } @@ -798,13 +798,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.Tls.Client) com.google.backstory.Tls.ClientOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Tls_Client_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Tls_Client_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_Tls_Client_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Tls.Client.class, @@ -845,7 +845,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm.internal_static_google_backstory_Tls_Client_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Tls_Client_descriptor; } @java.lang.Override @@ -1907,13 +1907,13 @@ private Server() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Tls_Server_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Tls_Server_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_Tls_Server_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_Tls_Server_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Tls.Server.class, com.google.backstory.Tls.Server.Builder.class); } @@ -2274,13 +2274,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.Tls.Server) com.google.backstory.Tls.ServerOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Tls_Server_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Tls_Server_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_Tls_Server_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Tls.Server.class, @@ -2319,7 +2319,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm.internal_static_google_backstory_Tls_Server_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Tls_Server_descriptor; } @java.lang.Override @@ -3577,13 +3577,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.Tls) com.google.backstory.TlsOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Tls_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Tls_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_Tls_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_Tls_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Tls.class, com.google.backstory.Tls.Builder.class); } @@ -3631,7 +3631,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm.internal_static_google_backstory_Tls_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Tls_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Tracker.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Tracker.java index a60b69943c8a..265d6f87be9a 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Tracker.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Tracker.java @@ -58,13 +58,13 @@ private Tracker() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Tracker_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Tracker_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_Tracker_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_Tracker_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Tracker.class, com.google.backstory.Tracker.Builder.class); } @@ -482,13 +482,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.Tracker) com.google.backstory.TrackerOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Tracker_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Tracker_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_Tracker_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_Tracker_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Tracker.class, com.google.backstory.Tracker.Builder.class); } @@ -526,7 +526,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm.internal_static_google_backstory_Tracker_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Tracker_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Tunnels.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Tunnels.java index a7310ff5fb79..594b3a921777 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Tunnels.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Tunnels.java @@ -57,13 +57,13 @@ private Tunnels() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Tunnels_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Tunnels_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_Tunnels_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_Tunnels_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Tunnels.class, com.google.backstory.Tunnels.Builder.class); } @@ -355,13 +355,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.Tunnels) com.google.backstory.TunnelsOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Tunnels_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Tunnels_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_Tunnels_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_Tunnels_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Tunnels.class, com.google.backstory.Tunnels.Builder.class); } @@ -384,7 +384,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm.internal_static_google_backstory_Tunnels_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Tunnels_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/UDM.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/UDM.java index f15e2a6e5fa5..66831dc45392 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/UDM.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/UDM.java @@ -58,13 +58,13 @@ private UDM() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_UDM_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_UDM_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_UDM_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_UDM_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.UDM.class, com.google.backstory.UDM.Builder.class); } @@ -1242,13 +1242,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.UDM) com.google.backstory.UDMOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_UDM_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_UDM_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_UDM_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_UDM_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.UDM.class, com.google.backstory.UDM.Builder.class); } @@ -1361,7 +1361,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm.internal_static_google_backstory_UDM_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_UDM_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Udm.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/UdmProto.java similarity index 99% rename from java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Udm.java rename to java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/UdmProto.java index c6a6d75b74f2..af097d223cf2 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Udm.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/UdmProto.java @@ -21,8 +21,8 @@ package com.google.backstory; @com.google.protobuf.Generated -public final class Udm extends com.google.protobuf.GeneratedFile { - private Udm() {} +public final class UdmProto extends com.google.protobuf.GeneratedFile { + private UdmProto() {} static { com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( @@ -31,7 +31,7 @@ private Udm() {} /* minor= */ 33, /* patch= */ 6, /* suffix= */ "", - "Udm"); + "UdmProto"); } public static void registerAllExtensions(com.google.protobuf.ExtensionRegistryLite registry) {} diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Uint64Sequence.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Uint64Sequence.java index 6cd3fe13a4a7..a2aa7a745d8c 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Uint64Sequence.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Uint64Sequence.java @@ -56,13 +56,13 @@ private Uint64Sequence() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Uint64Sequence_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Uint64Sequence_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_Uint64Sequence_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Uint64Sequence.class, @@ -312,13 +312,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.Uint64Sequence) com.google.backstory.Uint64SequenceOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Uint64Sequence_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Uint64Sequence_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_Uint64Sequence_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Uint64Sequence.class, @@ -342,7 +342,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm.internal_static_google_backstory_Uint64Sequence_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Uint64Sequence_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Url.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Url.java index d13a0d84ce76..b2a0258c0f60 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Url.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Url.java @@ -62,13 +62,13 @@ private Url() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Url_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Url_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_Url_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_Url_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Url.class, com.google.backstory.Url.Builder.class); } @@ -1063,13 +1063,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.Url) com.google.backstory.UrlOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Url_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Url_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_Url_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_Url_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Url.class, com.google.backstory.Url.Builder.class); } @@ -1138,7 +1138,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm.internal_static_google_backstory_Url_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Url_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/User.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/User.java index e82c2277414d..56ac8ff14f45 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/User.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/User.java @@ -77,13 +77,13 @@ private User() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_User_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_User_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_User_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_User_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.User.class, com.google.backstory.User.Builder.class); } @@ -2989,13 +2989,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.User) com.google.backstory.UserOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_User_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_User_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_User_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_User_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.User.class, com.google.backstory.User.Builder.class); } @@ -3133,7 +3133,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm.internal_static_google_backstory_User_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_User_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/UserAssist.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/UserAssist.java index aa7a406af22a..5339b78b4391 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/UserAssist.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/UserAssist.java @@ -55,13 +55,13 @@ private UserAssist(com.google.protobuf.GeneratedMessage.Builder builder) { private UserAssist() {} public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_UserAssist_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_UserAssist_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_UserAssist_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_UserAssist_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.UserAssist.class, com.google.backstory.UserAssist.Builder.class); } @@ -386,13 +386,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.UserAssist) com.google.backstory.UserAssistOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_UserAssist_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_UserAssist_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_UserAssist_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_UserAssist_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.UserAssist.class, com.google.backstory.UserAssist.Builder.class); } @@ -430,7 +430,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm.internal_static_google_backstory_UserAssist_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_UserAssist_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/UsnJournal.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/UsnJournal.java index 8b00c2642622..3bc1322a14c0 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/UsnJournal.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/UsnJournal.java @@ -60,13 +60,13 @@ private UsnJournal() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_UsnJournal_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_UsnJournal_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_UsnJournal_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_UsnJournal_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.UsnJournal.class, com.google.backstory.UsnJournal.Builder.class); } @@ -2012,13 +2012,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.UsnJournal) com.google.backstory.UsnJournalOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_UsnJournal_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_UsnJournal_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_UsnJournal_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_UsnJournal_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.UsnJournal.class, com.google.backstory.UsnJournal.Builder.class); } @@ -2045,7 +2045,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm.internal_static_google_backstory_UsnJournal_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_UsnJournal_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Verdict.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Verdict.java index 3ac218719f90..b9a50be63fe7 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Verdict.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Verdict.java @@ -167,7 +167,7 @@ public final com.google.protobuf.Descriptors.EnumDescriptor getDescriptorForType } public static com.google.protobuf.Descriptors.EnumDescriptor getDescriptor() { - return com.google.backstory.Udm.getDescriptor().getEnumTypes().get(0); + return com.google.backstory.UdmProto.getDescriptor().getEnumTypes().get(0); } private static final Verdict[] VALUES = values(); diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Volume.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Volume.java index d97525f0be11..d1bc2e57f3f8 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Volume.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Volume.java @@ -59,13 +59,13 @@ private Volume() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Volume_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Volume_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_Volume_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_Volume_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Volume.class, com.google.backstory.Volume.Builder.class); } @@ -537,13 +537,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.Volume) com.google.backstory.VolumeOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Volume_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Volume_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_Volume_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_Volume_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Volume.class, com.google.backstory.Volume.Builder.class); } @@ -570,7 +570,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm.internal_static_google_backstory_Volume_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Volume_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Vulnerabilities.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Vulnerabilities.java index d10c0ea93562..bd647d4b4e5e 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Vulnerabilities.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Vulnerabilities.java @@ -57,13 +57,13 @@ private Vulnerabilities() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Vulnerabilities_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Vulnerabilities_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_Vulnerabilities_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Vulnerabilities.class, @@ -321,13 +321,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.Vulnerabilities) com.google.backstory.VulnerabilitiesOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Vulnerabilities_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Vulnerabilities_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_Vulnerabilities_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Vulnerabilities.class, @@ -357,7 +357,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm.internal_static_google_backstory_Vulnerabilities_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Vulnerabilities_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Vulnerability.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Vulnerability.java index c6d01e3b43d9..7dba393b2424 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Vulnerability.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Vulnerability.java @@ -66,13 +66,13 @@ private Vulnerability() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Vulnerability_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Vulnerability_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_Vulnerability_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Vulnerability.class, @@ -1516,13 +1516,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.Vulnerability) com.google.backstory.VulnerabilityOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_Vulnerability_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Vulnerability_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_Vulnerability_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.Vulnerability.class, @@ -1595,7 +1595,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm.internal_static_google_backstory_Vulnerability_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Vulnerability_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/WindowsEventLog.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/WindowsEventLog.java index 001471430ba6..cfbbdf566912 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/WindowsEventLog.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/WindowsEventLog.java @@ -59,13 +59,13 @@ private WindowsEventLog() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_WindowsEventLog_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_WindowsEventLog_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_WindowsEventLog_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.WindowsEventLog.class, @@ -669,13 +669,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.WindowsEventLog) com.google.backstory.WindowsEventLogOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_WindowsEventLog_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_WindowsEventLog_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_WindowsEventLog_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.WindowsEventLog.class, @@ -701,7 +701,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm.internal_static_google_backstory_WindowsEventLog_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_WindowsEventLog_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/WindowsScheduledTask.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/WindowsScheduledTask.java index 103861c5b3ef..0208a43ede16 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/WindowsScheduledTask.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/WindowsScheduledTask.java @@ -61,14 +61,14 @@ private WindowsScheduledTask() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_WindowsScheduledTask_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_WindowsScheduledTask_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.WindowsScheduledTask.class, @@ -784,14 +784,14 @@ private TaskAction() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_WindowsScheduledTask_TaskAction_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_WindowsScheduledTask_TaskAction_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.WindowsScheduledTask.TaskAction.class, @@ -1525,14 +1525,14 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.WindowsScheduledTask.TaskAction) com.google.backstory.WindowsScheduledTask.TaskActionOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_WindowsScheduledTask_TaskAction_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_WindowsScheduledTask_TaskAction_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.WindowsScheduledTask.TaskAction.class, @@ -1560,7 +1560,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_WindowsScheduledTask_TaskAction_descriptor; } @@ -2568,14 +2568,14 @@ private TaskTrigger() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_WindowsScheduledTask_TaskTrigger_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_WindowsScheduledTask_TaskTrigger_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.WindowsScheduledTask.TaskTrigger.class, @@ -3376,14 +3376,14 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.WindowsScheduledTask.TaskTrigger) com.google.backstory.WindowsScheduledTask.TaskTriggerOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_WindowsScheduledTask_TaskTrigger_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_WindowsScheduledTask_TaskTrigger_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.WindowsScheduledTask.TaskTrigger.class, @@ -3423,7 +3423,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_WindowsScheduledTask_TaskTrigger_descriptor; } @@ -4697,14 +4697,14 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.WindowsScheduledTask) com.google.backstory.WindowsScheduledTaskOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_WindowsScheduledTask_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_WindowsScheduledTask_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.WindowsScheduledTask.class, @@ -4746,7 +4746,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_WindowsScheduledTask_descriptor; } diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/WmiPersistenceItem.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/WmiPersistenceItem.java index c02fe11d21fd..7f1d2a7abc15 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/WmiPersistenceItem.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/WmiPersistenceItem.java @@ -63,13 +63,13 @@ private WmiPersistenceItem() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_WmiPersistenceItem_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_WmiPersistenceItem_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_WmiPersistenceItem_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.WmiPersistenceItem.class, @@ -794,14 +794,14 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.WmiPersistenceItem) com.google.backstory.WmiPersistenceItemOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_WmiPersistenceItem_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_WmiPersistenceItem_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.WmiPersistenceItem.class, @@ -834,7 +834,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm + return com.google.backstory.UdmProto .internal_static_google_backstory_WmiPersistenceItem_descriptor; } diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/X509.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/X509.java index c3c108e399f8..f9b045cf7e95 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/X509.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/X509.java @@ -60,13 +60,13 @@ private X509() { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_X509_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_X509_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_X509_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_X509_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.X509.class, com.google.backstory.X509.Builder.class); } @@ -544,13 +544,13 @@ public static final class Builder extends com.google.protobuf.GeneratedMessage.B // @@protoc_insertion_point(builder_implements:google.backstory.X509) com.google.backstory.X509OrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.Udm.internal_static_google_backstory_X509_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_X509_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.Udm.internal_static_google_backstory_X509_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_X509_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.backstory.X509.class, com.google.backstory.X509.Builder.class); } @@ -576,7 +576,7 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.Udm.internal_static_google_backstory_X509_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_X509_descriptor; } @java.lang.Override diff --git a/java-backstory/proto-google-cloud-backstory/src/main/proto/backstory/udm.proto b/java-backstory/proto-google-cloud-backstory/src/main/proto/backstory/udm.proto index d4337b32aa3d..6153801726cc 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/proto/backstory/udm.proto +++ b/java-backstory/proto-google-cloud-backstory/src/main/proto/backstory/udm.proto @@ -28,6 +28,7 @@ import "google/type/latlng.proto"; option csharp_namespace = "Google.Backstory"; option go_package = "cloud.google.com/go/backstory/backstorypb;backstorypb"; option java_multiple_files = true; +option java_outer_classname = "UdmProto"; option java_package = "com.google.backstory"; option php_namespace = "Google\\Backstory"; option ruby_package = "Google::Backstory"; From 15675deef67758d2ecdcf68f53523168a5746ddd Mon Sep 17 00:00:00 2001 From: Nidhi Nandwani Date: Thu, 6 Aug 2026 13:14:56 +0000 Subject: [PATCH 13/13] Fix case-sensitivity collision for UDM.java on Windows CI Renamed message UDM to Udm in udm.proto and updated all references. Set java_outer_classname to UdmProto to avoid collision with Udm.java. Renamed generated Java files and updated internal symbols. --- .../java/com/google/backstory/Collection.java | 8 +- .../google/backstory/CollectionOrBuilder.java | 2 +- .../backstory/CollectionOuterClass.java | 2 +- .../google/backstory/DataAccessLabels.java | 26 +-- .../backstory/DataAccessLabelsOrBuilder.java | 8 +- .../java/com/google/backstory/Element.java | 124 ++++++------ .../google/backstory/ElementOrBuilder.java | 28 +-- .../java/com/google/backstory/Entity.java | 28 +-- .../com/google/backstory/EntityOrBuilder.java | 6 +- .../java/com/google/backstory/Extensions.java | 4 +- .../com/google/backstory/FindingVariable.java | 14 +- .../backstory/FindingVariableOrBuilder.java | 4 +- .../com/google/backstory/GroupedFields.java | 4 +- .../main/java/com/google/backstory/Id.java | 4 +- .../java/com/google/backstory/Metadata.java | 26 +-- .../google/backstory/MetadataOrBuilder.java | 6 +- .../java/com/google/backstory/Metric.java | 4 +- .../java/com/google/backstory/Reference.java | 72 +++---- .../google/backstory/ReferenceOrBuilder.java | 10 +- .../main/java/com/google/backstory/Tags.java | 4 +- .../google/backstory/{UDM.java => Udm.java} | 186 +++++++++--------- .../{UDMOrBuilder.java => UdmOrBuilder.java} | 22 +-- .../java/com/google/backstory/UdmProto.java | 12 +- .../src/main/proto/backstory/collection.proto | 2 +- .../src/main/proto/backstory/udm.proto | 2 +- 25 files changed, 304 insertions(+), 304 deletions(-) rename java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/{UDM.java => Udm.java} (97%) rename java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/{UDMOrBuilder.java => UdmOrBuilder.java} (97%) diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Collection.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Collection.java index 1d74b1e36adf..482add96a246 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Collection.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Collection.java @@ -1839,7 +1839,7 @@ public com.google.backstory.Collection.RunFrequency getRuleRunFrequency() { * *

    * The total number of simulated events that contributed to this detection.
-   * Simulated events are realistic threat sequences (Raw Logs or UDM)
+   * Simulated events are realistic threat sequences (Raw Logs or Udm)
    * programmatically delivered into the production ingestion pipeline to verify
    * the entire detection lifecycle—from identification to action.
    * 
@@ -6617,7 +6617,7 @@ public Builder clearRuleRunFrequency() { * *
      * The total number of simulated events that contributed to this detection.
-     * Simulated events are realistic threat sequences (Raw Logs or UDM)
+     * Simulated events are realistic threat sequences (Raw Logs or Udm)
      * programmatically delivered into the production ingestion pipeline to verify
      * the entire detection lifecycle—from identification to action.
      * 
@@ -6636,7 +6636,7 @@ public long getSimulatedEventCount() { * *
      * The total number of simulated events that contributed to this detection.
-     * Simulated events are realistic threat sequences (Raw Logs or UDM)
+     * Simulated events are realistic threat sequences (Raw Logs or Udm)
      * programmatically delivered into the production ingestion pipeline to verify
      * the entire detection lifecycle—from identification to action.
      * 
@@ -6659,7 +6659,7 @@ public Builder setSimulatedEventCount(long value) { * *
      * The total number of simulated events that contributed to this detection.
-     * Simulated events are realistic threat sequences (Raw Logs or UDM)
+     * Simulated events are realistic threat sequences (Raw Logs or Udm)
      * programmatically delivered into the production ingestion pipeline to verify
      * the entire detection lifecycle—from identification to action.
      * 
diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/CollectionOrBuilder.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/CollectionOrBuilder.java index 9a279542fe08..3e40c6f32c4b 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/CollectionOrBuilder.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/CollectionOrBuilder.java @@ -815,7 +815,7 @@ public interface CollectionOrBuilder * *
    * The total number of simulated events that contributed to this detection.
-   * Simulated events are realistic threat sequences (Raw Logs or UDM)
+   * Simulated events are realistic threat sequences (Raw Logs or Udm)
    * programmatically delivered into the production ingestion pipeline to verify
    * the entire detection lifecycle—from identification to action.
    * 
diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/CollectionOuterClass.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/CollectionOuterClass.java index db440a9da9db..6a6287a9feb2 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/CollectionOuterClass.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/CollectionOuterClass.java @@ -151,7 +151,7 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { + "\021newest_event_time\030\004 \001(\0132\032.google.protobuf.Timestamp\0224\n" + "\021ingestion_latency\030\005 \001(\0132\031.google.protobuf.Duration\"\235\002\n" + "\tReference\022$\n" - + "\005event\030\001 \001(\0132\025.google.backstory.UDM\022(\n" + + "\005event\030\001 \001(\0132\025.google.backstory.Udm\022(\n" + "\006entity\030\002 \001(\0132\030.google.backstory.Entity\022B\n" + "\026joined_data_table_rows\030\004" + " \003(\0132\".google.backstory.DataTableRowInfo\022A\n" diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/DataAccessLabels.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/DataAccessLabels.java index 7c894d261e61..f5136e6bc55a 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/DataAccessLabels.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/DataAccessLabels.java @@ -300,7 +300,7 @@ public com.google.protobuf.ByteString getNamespacesBytes(int index) { * * *
-   * All the complex labels (UDM search syntax based).
+   * All the complex labels (Udm search syntax based).
    * 
* * repeated string custom_labels = 4; @@ -315,7 +315,7 @@ public com.google.protobuf.ProtocolStringList getCustomLabelsList() { * * *
-   * All the complex labels (UDM search syntax based).
+   * All the complex labels (Udm search syntax based).
    * 
* * repeated string custom_labels = 4; @@ -330,7 +330,7 @@ public int getCustomLabelsCount() { * * *
-   * All the complex labels (UDM search syntax based).
+   * All the complex labels (Udm search syntax based).
    * 
* * repeated string custom_labels = 4; @@ -346,7 +346,7 @@ public java.lang.String getCustomLabels(int index) { * * *
-   * All the complex labels (UDM search syntax based).
+   * All the complex labels (Udm search syntax based).
    * 
* * repeated string custom_labels = 4; @@ -1573,7 +1573,7 @@ private void ensureCustomLabelsIsMutable() { * * *
-     * All the complex labels (UDM search syntax based).
+     * All the complex labels (Udm search syntax based).
      * 
* * repeated string custom_labels = 4; @@ -1589,7 +1589,7 @@ public com.google.protobuf.ProtocolStringList getCustomLabelsList() { * * *
-     * All the complex labels (UDM search syntax based).
+     * All the complex labels (Udm search syntax based).
      * 
* * repeated string custom_labels = 4; @@ -1604,7 +1604,7 @@ public int getCustomLabelsCount() { * * *
-     * All the complex labels (UDM search syntax based).
+     * All the complex labels (Udm search syntax based).
      * 
* * repeated string custom_labels = 4; @@ -1620,7 +1620,7 @@ public java.lang.String getCustomLabels(int index) { * * *
-     * All the complex labels (UDM search syntax based).
+     * All the complex labels (Udm search syntax based).
      * 
* * repeated string custom_labels = 4; @@ -1636,7 +1636,7 @@ public com.google.protobuf.ByteString getCustomLabelsBytes(int index) { * * *
-     * All the complex labels (UDM search syntax based).
+     * All the complex labels (Udm search syntax based).
      * 
* * repeated string custom_labels = 4; @@ -1660,7 +1660,7 @@ public Builder setCustomLabels(int index, java.lang.String value) { * * *
-     * All the complex labels (UDM search syntax based).
+     * All the complex labels (Udm search syntax based).
      * 
* * repeated string custom_labels = 4; @@ -1683,7 +1683,7 @@ public Builder addCustomLabels(java.lang.String value) { * * *
-     * All the complex labels (UDM search syntax based).
+     * All the complex labels (Udm search syntax based).
      * 
* * repeated string custom_labels = 4; @@ -1703,7 +1703,7 @@ public Builder addAllCustomLabels(java.lang.Iterable values) { * * *
-     * All the complex labels (UDM search syntax based).
+     * All the complex labels (Udm search syntax based).
      * 
* * repeated string custom_labels = 4; @@ -1722,7 +1722,7 @@ public Builder clearCustomLabels() { * * *
-     * All the complex labels (UDM search syntax based).
+     * All the complex labels (Udm search syntax based).
      * 
* * repeated string custom_labels = 4; diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/DataAccessLabelsOrBuilder.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/DataAccessLabelsOrBuilder.java index b3938129dc60..da16cd017c4f 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/DataAccessLabelsOrBuilder.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/DataAccessLabelsOrBuilder.java @@ -204,7 +204,7 @@ public interface DataAccessLabelsOrBuilder * * *
-   * All the complex labels (UDM search syntax based).
+   * All the complex labels (Udm search syntax based).
    * 
* * repeated string custom_labels = 4; @@ -217,7 +217,7 @@ public interface DataAccessLabelsOrBuilder * * *
-   * All the complex labels (UDM search syntax based).
+   * All the complex labels (Udm search syntax based).
    * 
* * repeated string custom_labels = 4; @@ -230,7 +230,7 @@ public interface DataAccessLabelsOrBuilder * * *
-   * All the complex labels (UDM search syntax based).
+   * All the complex labels (Udm search syntax based).
    * 
* * repeated string custom_labels = 4; @@ -244,7 +244,7 @@ public interface DataAccessLabelsOrBuilder * * *
-   * All the complex labels (UDM search syntax based).
+   * All the complex labels (Udm search syntax based).
    * 
* * repeated string custom_labels = 4; diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Element.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Element.java index 12d5fa75a80b..e59f576ec943 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Element.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Element.java @@ -142,9 +142,9 @@ public com.google.backstory.SecurityResultOrBuilder getAssociationOrBuilder() { *
    * References to model primatives including events and entities that share a
    * common association.
-   * Even though a reference can have both UDM and entity, a collection of
+   * Even though a reference can have both Udm and entity, a collection of
    * references (of a single element) will only have one type of message in it
-   * (either UDM / Entity).
+   * (either Udm / Entity).
    * 
* * repeated .google.backstory.Reference references = 2; @@ -160,9 +160,9 @@ public java.util.List getReferencesList() { *
    * References to model primatives including events and entities that share a
    * common association.
-   * Even though a reference can have both UDM and entity, a collection of
+   * Even though a reference can have both Udm and entity, a collection of
    * references (of a single element) will only have one type of message in it
-   * (either UDM / Entity).
+   * (either Udm / Entity).
    * 
* * repeated .google.backstory.Reference references = 2; @@ -179,9 +179,9 @@ public java.util.List getReferencesList() { *
    * References to model primatives including events and entities that share a
    * common association.
-   * Even though a reference can have both UDM and entity, a collection of
+   * Even though a reference can have both Udm and entity, a collection of
    * references (of a single element) will only have one type of message in it
-   * (either UDM / Entity).
+   * (either Udm / Entity).
    * 
* * repeated .google.backstory.Reference references = 2; @@ -197,9 +197,9 @@ public int getReferencesCount() { *
    * References to model primatives including events and entities that share a
    * common association.
-   * Even though a reference can have both UDM and entity, a collection of
+   * Even though a reference can have both Udm and entity, a collection of
    * references (of a single element) will only have one type of message in it
-   * (either UDM / Entity).
+   * (either Udm / Entity).
    * 
* * repeated .google.backstory.Reference references = 2; @@ -215,9 +215,9 @@ public com.google.backstory.Reference getReferences(int index) { *
    * References to model primatives including events and entities that share a
    * common association.
-   * Even though a reference can have both UDM and entity, a collection of
+   * Even though a reference can have both Udm and entity, a collection of
    * references (of a single element) will only have one type of message in it
-   * (either UDM / Entity).
+   * (either Udm / Entity).
    * 
* * repeated .google.backstory.Reference references = 2; @@ -290,7 +290,7 @@ public com.google.protobuf.ByteString getLabelBytes() { * Copied from the detection event_sample.too_many_event_samples field. * If true, the number of references will be capped at the sample limit * (set at rule service). - * This is applicable to both UDM references and Entity references. + * This is applicable to both Udm references and Entity references. * * * bool references_sampled = 4; @@ -312,7 +312,7 @@ public boolean getReferencesSampled() { * Latency metrics for the specific element. These are * calculated from all the contributing events or entities for a single event * variable, not just the sampled ones included in references. This is - * currently only populated for UDM events. + * currently only populated for Udm events. * * * .google.backstory.LatencyMetrics latency_metrics = 5; @@ -331,7 +331,7 @@ public boolean hasLatencyMetrics() { * Latency metrics for the specific element. These are * calculated from all the contributing events or entities for a single event * variable, not just the sampled ones included in references. This is - * currently only populated for UDM events. + * currently only populated for Udm events. * * * .google.backstory.LatencyMetrics latency_metrics = 5; @@ -352,7 +352,7 @@ public com.google.backstory.LatencyMetrics getLatencyMetrics() { * Latency metrics for the specific element. These are * calculated from all the contributing events or entities for a single event * variable, not just the sampled ones included in references. This is - * currently only populated for UDM events. + * currently only populated for Udm events. * * * .google.backstory.LatencyMetrics latency_metrics = 5; @@ -1095,9 +1095,9 @@ private void ensureReferencesIsMutable() { *
      * References to model primatives including events and entities that share a
      * common association.
-     * Even though a reference can have both UDM and entity, a collection of
+     * Even though a reference can have both Udm and entity, a collection of
      * references (of a single element) will only have one type of message in it
-     * (either UDM / Entity).
+     * (either Udm / Entity).
      * 
* * repeated .google.backstory.Reference references = 2; @@ -1116,9 +1116,9 @@ public java.util.List getReferencesList() { *
      * References to model primatives including events and entities that share a
      * common association.
-     * Even though a reference can have both UDM and entity, a collection of
+     * Even though a reference can have both Udm and entity, a collection of
      * references (of a single element) will only have one type of message in it
-     * (either UDM / Entity).
+     * (either Udm / Entity).
      * 
* * repeated .google.backstory.Reference references = 2; @@ -1137,9 +1137,9 @@ public int getReferencesCount() { *
      * References to model primatives including events and entities that share a
      * common association.
-     * Even though a reference can have both UDM and entity, a collection of
+     * Even though a reference can have both Udm and entity, a collection of
      * references (of a single element) will only have one type of message in it
-     * (either UDM / Entity).
+     * (either Udm / Entity).
      * 
* * repeated .google.backstory.Reference references = 2; @@ -1158,9 +1158,9 @@ public com.google.backstory.Reference getReferences(int index) { *
      * References to model primatives including events and entities that share a
      * common association.
-     * Even though a reference can have both UDM and entity, a collection of
+     * Even though a reference can have both Udm and entity, a collection of
      * references (of a single element) will only have one type of message in it
-     * (either UDM / Entity).
+     * (either Udm / Entity).
      * 
* * repeated .google.backstory.Reference references = 2; @@ -1185,9 +1185,9 @@ public Builder setReferences(int index, com.google.backstory.Reference value) { *
      * References to model primatives including events and entities that share a
      * common association.
-     * Even though a reference can have both UDM and entity, a collection of
+     * Even though a reference can have both Udm and entity, a collection of
      * references (of a single element) will only have one type of message in it
-     * (either UDM / Entity).
+     * (either Udm / Entity).
      * 
* * repeated .google.backstory.Reference references = 2; @@ -1210,9 +1210,9 @@ public Builder setReferences( *
      * References to model primatives including events and entities that share a
      * common association.
-     * Even though a reference can have both UDM and entity, a collection of
+     * Even though a reference can have both Udm and entity, a collection of
      * references (of a single element) will only have one type of message in it
-     * (either UDM / Entity).
+     * (either Udm / Entity).
      * 
* * repeated .google.backstory.Reference references = 2; @@ -1237,9 +1237,9 @@ public Builder addReferences(com.google.backstory.Reference value) { *
      * References to model primatives including events and entities that share a
      * common association.
-     * Even though a reference can have both UDM and entity, a collection of
+     * Even though a reference can have both Udm and entity, a collection of
      * references (of a single element) will only have one type of message in it
-     * (either UDM / Entity).
+     * (either Udm / Entity).
      * 
* * repeated .google.backstory.Reference references = 2; @@ -1264,9 +1264,9 @@ public Builder addReferences(int index, com.google.backstory.Reference value) { *
      * References to model primatives including events and entities that share a
      * common association.
-     * Even though a reference can have both UDM and entity, a collection of
+     * Even though a reference can have both Udm and entity, a collection of
      * references (of a single element) will only have one type of message in it
-     * (either UDM / Entity).
+     * (either Udm / Entity).
      * 
* * repeated .google.backstory.Reference references = 2; @@ -1288,9 +1288,9 @@ public Builder addReferences(com.google.backstory.Reference.Builder builderForVa *
      * References to model primatives including events and entities that share a
      * common association.
-     * Even though a reference can have both UDM and entity, a collection of
+     * Even though a reference can have both Udm and entity, a collection of
      * references (of a single element) will only have one type of message in it
-     * (either UDM / Entity).
+     * (either Udm / Entity).
      * 
* * repeated .google.backstory.Reference references = 2; @@ -1313,9 +1313,9 @@ public Builder addReferences( *
      * References to model primatives including events and entities that share a
      * common association.
-     * Even though a reference can have both UDM and entity, a collection of
+     * Even though a reference can have both Udm and entity, a collection of
      * references (of a single element) will only have one type of message in it
-     * (either UDM / Entity).
+     * (either Udm / Entity).
      * 
* * repeated .google.backstory.Reference references = 2; @@ -1338,9 +1338,9 @@ public Builder addAllReferences( *
      * References to model primatives including events and entities that share a
      * common association.
-     * Even though a reference can have both UDM and entity, a collection of
+     * Even though a reference can have both Udm and entity, a collection of
      * references (of a single element) will only have one type of message in it
-     * (either UDM / Entity).
+     * (either Udm / Entity).
      * 
* * repeated .google.backstory.Reference references = 2; @@ -1362,9 +1362,9 @@ public Builder clearReferences() { *
      * References to model primatives including events and entities that share a
      * common association.
-     * Even though a reference can have both UDM and entity, a collection of
+     * Even though a reference can have both Udm and entity, a collection of
      * references (of a single element) will only have one type of message in it
-     * (either UDM / Entity).
+     * (either Udm / Entity).
      * 
* * repeated .google.backstory.Reference references = 2; @@ -1386,9 +1386,9 @@ public Builder removeReferences(int index) { *
      * References to model primatives including events and entities that share a
      * common association.
-     * Even though a reference can have both UDM and entity, a collection of
+     * Even though a reference can have both Udm and entity, a collection of
      * references (of a single element) will only have one type of message in it
-     * (either UDM / Entity).
+     * (either Udm / Entity).
      * 
* * repeated .google.backstory.Reference references = 2; @@ -1403,9 +1403,9 @@ public com.google.backstory.Reference.Builder getReferencesBuilder(int index) { *
      * References to model primatives including events and entities that share a
      * common association.
-     * Even though a reference can have both UDM and entity, a collection of
+     * Even though a reference can have both Udm and entity, a collection of
      * references (of a single element) will only have one type of message in it
-     * (either UDM / Entity).
+     * (either Udm / Entity).
      * 
* * repeated .google.backstory.Reference references = 2; @@ -1424,9 +1424,9 @@ public com.google.backstory.ReferenceOrBuilder getReferencesOrBuilder(int index) *
      * References to model primatives including events and entities that share a
      * common association.
-     * Even though a reference can have both UDM and entity, a collection of
+     * Even though a reference can have both Udm and entity, a collection of
      * references (of a single element) will only have one type of message in it
-     * (either UDM / Entity).
+     * (either Udm / Entity).
      * 
* * repeated .google.backstory.Reference references = 2; @@ -1446,9 +1446,9 @@ public com.google.backstory.ReferenceOrBuilder getReferencesOrBuilder(int index) *
      * References to model primatives including events and entities that share a
      * common association.
-     * Even though a reference can have both UDM and entity, a collection of
+     * Even though a reference can have both Udm and entity, a collection of
      * references (of a single element) will only have one type of message in it
-     * (either UDM / Entity).
+     * (either Udm / Entity).
      * 
* * repeated .google.backstory.Reference references = 2; @@ -1464,9 +1464,9 @@ public com.google.backstory.Reference.Builder addReferencesBuilder() { *
      * References to model primatives including events and entities that share a
      * common association.
-     * Even though a reference can have both UDM and entity, a collection of
+     * Even though a reference can have both Udm and entity, a collection of
      * references (of a single element) will only have one type of message in it
-     * (either UDM / Entity).
+     * (either Udm / Entity).
      * 
* * repeated .google.backstory.Reference references = 2; @@ -1482,9 +1482,9 @@ public com.google.backstory.Reference.Builder addReferencesBuilder(int index) { *
      * References to model primatives including events and entities that share a
      * common association.
-     * Even though a reference can have both UDM and entity, a collection of
+     * Even though a reference can have both Udm and entity, a collection of
      * references (of a single element) will only have one type of message in it
-     * (either UDM / Entity).
+     * (either Udm / Entity).
      * 
* * repeated .google.backstory.Reference references = 2; @@ -1630,7 +1630,7 @@ public Builder setLabelBytes(com.google.protobuf.ByteString value) { * Copied from the detection event_sample.too_many_event_samples field. * If true, the number of references will be capped at the sample limit * (set at rule service). - * This is applicable to both UDM references and Entity references. + * This is applicable to both Udm references and Entity references. * * * bool references_sampled = 4; @@ -1649,7 +1649,7 @@ public boolean getReferencesSampled() { * Copied from the detection event_sample.too_many_event_samples field. * If true, the number of references will be capped at the sample limit * (set at rule service). - * This is applicable to both UDM references and Entity references. + * This is applicable to both Udm references and Entity references. * * * bool references_sampled = 4; @@ -1672,7 +1672,7 @@ public Builder setReferencesSampled(boolean value) { * Copied from the detection event_sample.too_many_event_samples field. * If true, the number of references will be capped at the sample limit * (set at rule service). - * This is applicable to both UDM references and Entity references. + * This is applicable to both Udm references and Entity references. * * * bool references_sampled = 4; @@ -1700,7 +1700,7 @@ public Builder clearReferencesSampled() { * Latency metrics for the specific element. These are * calculated from all the contributing events or entities for a single event * variable, not just the sampled ones included in references. This is - * currently only populated for UDM events. + * currently only populated for Udm events. * * * .google.backstory.LatencyMetrics latency_metrics = 5; @@ -1718,7 +1718,7 @@ public boolean hasLatencyMetrics() { * Latency metrics for the specific element. These are * calculated from all the contributing events or entities for a single event * variable, not just the sampled ones included in references. This is - * currently only populated for UDM events. + * currently only populated for Udm events. * * * .google.backstory.LatencyMetrics latency_metrics = 5; @@ -1742,7 +1742,7 @@ public com.google.backstory.LatencyMetrics getLatencyMetrics() { * Latency metrics for the specific element. These are * calculated from all the contributing events or entities for a single event * variable, not just the sampled ones included in references. This is - * currently only populated for UDM events. + * currently only populated for Udm events. * * * .google.backstory.LatencyMetrics latency_metrics = 5; @@ -1768,7 +1768,7 @@ public Builder setLatencyMetrics(com.google.backstory.LatencyMetrics value) { * Latency metrics for the specific element. These are * calculated from all the contributing events or entities for a single event * variable, not just the sampled ones included in references. This is - * currently only populated for UDM events. + * currently only populated for Udm events. * * * .google.backstory.LatencyMetrics latency_metrics = 5; @@ -1791,7 +1791,7 @@ public Builder setLatencyMetrics(com.google.backstory.LatencyMetrics.Builder bui * Latency metrics for the specific element. These are * calculated from all the contributing events or entities for a single event * variable, not just the sampled ones included in references. This is - * currently only populated for UDM events. + * currently only populated for Udm events. * * * .google.backstory.LatencyMetrics latency_metrics = 5; @@ -1822,7 +1822,7 @@ public Builder mergeLatencyMetrics(com.google.backstory.LatencyMetrics value) { * Latency metrics for the specific element. These are * calculated from all the contributing events or entities for a single event * variable, not just the sampled ones included in references. This is - * currently only populated for UDM events. + * currently only populated for Udm events. * * * .google.backstory.LatencyMetrics latency_metrics = 5; @@ -1845,7 +1845,7 @@ public Builder clearLatencyMetrics() { * Latency metrics for the specific element. These are * calculated from all the contributing events or entities for a single event * variable, not just the sampled ones included in references. This is - * currently only populated for UDM events. + * currently only populated for Udm events. * * * .google.backstory.LatencyMetrics latency_metrics = 5; @@ -1863,7 +1863,7 @@ public com.google.backstory.LatencyMetrics.Builder getLatencyMetricsBuilder() { * Latency metrics for the specific element. These are * calculated from all the contributing events or entities for a single event * variable, not just the sampled ones included in references. This is - * currently only populated for UDM events. + * currently only populated for Udm events. * * * .google.backstory.LatencyMetrics latency_metrics = 5; @@ -1885,7 +1885,7 @@ public com.google.backstory.LatencyMetricsOrBuilder getLatencyMetricsOrBuilder() * Latency metrics for the specific element. These are * calculated from all the contributing events or entities for a single event * variable, not just the sampled ones included in references. This is - * currently only populated for UDM events. + * currently only populated for Udm events. * * * .google.backstory.LatencyMetrics latency_metrics = 5; diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/ElementOrBuilder.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/ElementOrBuilder.java index a1be2606690c..0e9c1954bd77 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/ElementOrBuilder.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/ElementOrBuilder.java @@ -84,9 +84,9 @@ public interface ElementOrBuilder *
    * References to model primatives including events and entities that share a
    * common association.
-   * Even though a reference can have both UDM and entity, a collection of
+   * Even though a reference can have both Udm and entity, a collection of
    * references (of a single element) will only have one type of message in it
-   * (either UDM / Entity).
+   * (either Udm / Entity).
    * 
* * repeated .google.backstory.Reference references = 2; @@ -99,9 +99,9 @@ public interface ElementOrBuilder *
    * References to model primatives including events and entities that share a
    * common association.
-   * Even though a reference can have both UDM and entity, a collection of
+   * Even though a reference can have both Udm and entity, a collection of
    * references (of a single element) will only have one type of message in it
-   * (either UDM / Entity).
+   * (either Udm / Entity).
    * 
* * repeated .google.backstory.Reference references = 2; @@ -114,9 +114,9 @@ public interface ElementOrBuilder *
    * References to model primatives including events and entities that share a
    * common association.
-   * Even though a reference can have both UDM and entity, a collection of
+   * Even though a reference can have both Udm and entity, a collection of
    * references (of a single element) will only have one type of message in it
-   * (either UDM / Entity).
+   * (either Udm / Entity).
    * 
* * repeated .google.backstory.Reference references = 2; @@ -129,9 +129,9 @@ public interface ElementOrBuilder *
    * References to model primatives including events and entities that share a
    * common association.
-   * Even though a reference can have both UDM and entity, a collection of
+   * Even though a reference can have both Udm and entity, a collection of
    * references (of a single element) will only have one type of message in it
-   * (either UDM / Entity).
+   * (either Udm / Entity).
    * 
* * repeated .google.backstory.Reference references = 2; @@ -144,9 +144,9 @@ public interface ElementOrBuilder *
    * References to model primatives including events and entities that share a
    * common association.
-   * Even though a reference can have both UDM and entity, a collection of
+   * Even though a reference can have both Udm and entity, a collection of
    * references (of a single element) will only have one type of message in it
-   * (either UDM / Entity).
+   * (either Udm / Entity).
    * 
* * repeated .google.backstory.Reference references = 2; @@ -186,7 +186,7 @@ public interface ElementOrBuilder * Copied from the detection event_sample.too_many_event_samples field. * If true, the number of references will be capped at the sample limit * (set at rule service). - * This is applicable to both UDM references and Entity references. + * This is applicable to both Udm references and Entity references. * * * bool references_sampled = 4; @@ -202,7 +202,7 @@ public interface ElementOrBuilder * Latency metrics for the specific element. These are * calculated from all the contributing events or entities for a single event * variable, not just the sampled ones included in references. This is - * currently only populated for UDM events. + * currently only populated for Udm events. * * * .google.backstory.LatencyMetrics latency_metrics = 5; @@ -218,7 +218,7 @@ public interface ElementOrBuilder * Latency metrics for the specific element. These are * calculated from all the contributing events or entities for a single event * variable, not just the sampled ones included in references. This is - * currently only populated for UDM events. + * currently only populated for Udm events. * * * .google.backstory.LatencyMetrics latency_metrics = 5; @@ -234,7 +234,7 @@ public interface ElementOrBuilder * Latency metrics for the specific element. These are * calculated from all the contributing events or entities for a single event * variable, not just the sampled ones included in references. This is - * currently only populated for UDM events. + * currently only populated for Udm events. * * * .google.backstory.LatencyMetrics latency_metrics = 5; diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Entity.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Entity.java index c5052aadfb28..3d1156bbd1ae 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Entity.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Entity.java @@ -24,7 +24,7 @@ * * *
- * An Entity provides additional context about an item in a UDM event. For
+ * An Entity provides additional context about an item in a Udm event. For
  * example, a PROCESS_LAUNCH event describes that user 'abc@example.corp'
  * launched process 'shady.exe'.
  * The event does not include information that user 'abc@example.com' is a
@@ -130,7 +130,7 @@ public com.google.backstory.EntityMetadataOrBuilder getMetadataOrBuilder() {
    *
    *
    * 
-   * Noun in the UDM event that this entity represents.
+   * Noun in the Udm event that this entity represents.
    * 
* * .google.backstory.Noun entity = 2; @@ -146,7 +146,7 @@ public boolean hasEntity() { * * *
-   * Noun in the UDM event that this entity represents.
+   * Noun in the Udm event that this entity represents.
    * 
* * .google.backstory.Noun entity = 2; @@ -162,7 +162,7 @@ public com.google.backstory.Noun getEntity() { * * *
-   * Noun in the UDM event that this entity represents.
+   * Noun in the Udm event that this entity represents.
    * 
* * .google.backstory.Noun entity = 2; @@ -640,7 +640,7 @@ protected Builder newBuilderForType(com.google.protobuf.GeneratedMessage.Builder * * *
-   * An Entity provides additional context about an item in a UDM event. For
+   * An Entity provides additional context about an item in a Udm event. For
    * example, a PROCESS_LAUNCH event describes that user 'abc@example.corp'
    * launched process 'shady.exe'.
    * The event does not include information that user 'abc@example.com' is a
@@ -1144,7 +1144,7 @@ public com.google.backstory.EntityMetadataOrBuilder getMetadataOrBuilder() {
      *
      *
      * 
-     * Noun in the UDM event that this entity represents.
+     * Noun in the Udm event that this entity represents.
      * 
* * .google.backstory.Noun entity = 2; @@ -1159,7 +1159,7 @@ public boolean hasEntity() { * * *
-     * Noun in the UDM event that this entity represents.
+     * Noun in the Udm event that this entity represents.
      * 
* * .google.backstory.Noun entity = 2; @@ -1178,7 +1178,7 @@ public com.google.backstory.Noun getEntity() { * * *
-     * Noun in the UDM event that this entity represents.
+     * Noun in the Udm event that this entity represents.
      * 
* * .google.backstory.Noun entity = 2; @@ -1201,7 +1201,7 @@ public Builder setEntity(com.google.backstory.Noun value) { * * *
-     * Noun in the UDM event that this entity represents.
+     * Noun in the Udm event that this entity represents.
      * 
* * .google.backstory.Noun entity = 2; @@ -1221,7 +1221,7 @@ public Builder setEntity(com.google.backstory.Noun.Builder builderForValue) { * * *
-     * Noun in the UDM event that this entity represents.
+     * Noun in the Udm event that this entity represents.
      * 
* * .google.backstory.Noun entity = 2; @@ -1249,7 +1249,7 @@ public Builder mergeEntity(com.google.backstory.Noun value) { * * *
-     * Noun in the UDM event that this entity represents.
+     * Noun in the Udm event that this entity represents.
      * 
* * .google.backstory.Noun entity = 2; @@ -1269,7 +1269,7 @@ public Builder clearEntity() { * * *
-     * Noun in the UDM event that this entity represents.
+     * Noun in the Udm event that this entity represents.
      * 
* * .google.backstory.Noun entity = 2; @@ -1284,7 +1284,7 @@ public com.google.backstory.Noun.Builder getEntityBuilder() { * * *
-     * Noun in the UDM event that this entity represents.
+     * Noun in the Udm event that this entity represents.
      * 
* * .google.backstory.Noun entity = 2; @@ -1301,7 +1301,7 @@ public com.google.backstory.NounOrBuilder getEntityOrBuilder() { * * *
-     * Noun in the UDM event that this entity represents.
+     * Noun in the Udm event that this entity represents.
      * 
* * .google.backstory.Noun entity = 2; diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/EntityOrBuilder.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/EntityOrBuilder.java index ce6aa3fbebef..ad726baf0e2a 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/EntityOrBuilder.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/EntityOrBuilder.java @@ -67,7 +67,7 @@ public interface EntityOrBuilder * * *
-   * Noun in the UDM event that this entity represents.
+   * Noun in the Udm event that this entity represents.
    * 
* * .google.backstory.Noun entity = 2; @@ -80,7 +80,7 @@ public interface EntityOrBuilder * * *
-   * Noun in the UDM event that this entity represents.
+   * Noun in the Udm event that this entity represents.
    * 
* * .google.backstory.Noun entity = 2; @@ -93,7 +93,7 @@ public interface EntityOrBuilder * * *
-   * Noun in the UDM event that this entity represents.
+   * Noun in the Udm event that this entity represents.
    * 
* * .google.backstory.Noun entity = 2; diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Extensions.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Extensions.java index 755c25556da3..56fa1a019a2b 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Extensions.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Extensions.java @@ -24,7 +24,7 @@ * * *
- * Extensions to a UDM event.
+ * Extensions to a Udm event.
  * 
* * Protobuf type {@code google.backstory.Extensions} @@ -892,7 +892,7 @@ protected Builder newBuilderForType(com.google.protobuf.GeneratedMessage.Builder * * *
-   * Extensions to a UDM event.
+   * Extensions to a Udm event.
    * 
* * Protobuf type {@code google.backstory.Extensions} diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/FindingVariable.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/FindingVariable.java index fefb170d9976..977dca5d461a 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/FindingVariable.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/FindingVariable.java @@ -428,7 +428,7 @@ public com.google.protobuf.ByteString getValueBytes() { * * *
-   * The UDM field path for the field which this value was derived from.
+   * The Udm field path for the field which this value was derived from.
    * Example: `principal.user.username`
    * 
* @@ -453,7 +453,7 @@ public java.lang.String getSourcePath() { * * *
-   * The UDM field path for the field which this value was derived from.
+   * The Udm field path for the field which this value was derived from.
    * Example: `principal.user.username`
    * 
* @@ -2167,7 +2167,7 @@ public Builder setValueBytes(com.google.protobuf.ByteString value) { * * *
-     * The UDM field path for the field which this value was derived from.
+     * The Udm field path for the field which this value was derived from.
      * Example: `principal.user.username`
      * 
* @@ -2191,7 +2191,7 @@ public java.lang.String getSourcePath() { * * *
-     * The UDM field path for the field which this value was derived from.
+     * The Udm field path for the field which this value was derived from.
      * Example: `principal.user.username`
      * 
* @@ -2215,7 +2215,7 @@ public com.google.protobuf.ByteString getSourcePathBytes() { * * *
-     * The UDM field path for the field which this value was derived from.
+     * The Udm field path for the field which this value was derived from.
      * Example: `principal.user.username`
      * 
* @@ -2238,7 +2238,7 @@ public Builder setSourcePath(java.lang.String value) { * * *
-     * The UDM field path for the field which this value was derived from.
+     * The Udm field path for the field which this value was derived from.
      * Example: `principal.user.username`
      * 
* @@ -2257,7 +2257,7 @@ public Builder clearSourcePath() { * * *
-     * The UDM field path for the field which this value was derived from.
+     * The Udm field path for the field which this value was derived from.
      * Example: `principal.user.username`
      * 
* diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/FindingVariableOrBuilder.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/FindingVariableOrBuilder.java index 01980e432cfe..8703bbf84191 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/FindingVariableOrBuilder.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/FindingVariableOrBuilder.java @@ -82,7 +82,7 @@ public interface FindingVariableOrBuilder * * *
-   * The UDM field path for the field which this value was derived from.
+   * The Udm field path for the field which this value was derived from.
    * Example: `principal.user.username`
    * 
* @@ -96,7 +96,7 @@ public interface FindingVariableOrBuilder * * *
-   * The UDM field path for the field which this value was derived from.
+   * The Udm field path for the field which this value was derived from.
    * Example: `principal.user.username`
    * 
* diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/GroupedFields.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/GroupedFields.java index 2ce6f534c47d..70583b233843 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/GroupedFields.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/GroupedFields.java @@ -24,7 +24,7 @@ * * *
- * Grouped fields are aliases for groups of related UDM fields. All
+ * Grouped fields are aliases for groups of related Udm fields. All
  * fields grouped together are of type string.
  * 
* @@ -902,7 +902,7 @@ protected Builder newBuilderForType(com.google.protobuf.GeneratedMessage.Builder * * *
-   * Grouped fields are aliases for groups of related UDM fields. All
+   * Grouped fields are aliases for groups of related Udm fields. All
    * fields grouped together are of type string.
    * 
* diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Id.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Id.java index 4dc60e3221b3..fb27fa9edcda 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Id.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Id.java @@ -24,7 +24,7 @@ * * *
- * Identifier to identify a UDM object like a UDM event, Entity, Collection.
+ * Identifier to identify a Udm object like a Udm event, Entity, Collection.
  * The full identifier for persistence is created by setting the 32 most
  * significant bits as the Id.Namespace enum This is a convenience wrapper to
  * define the id space enum values and provide an easy interface for RPCs, most
@@ -673,7 +673,7 @@ protected Builder newBuilderForType(com.google.protobuf.GeneratedMessage.Builder
    *
    *
    * 
-   * Identifier to identify a UDM object like a UDM event, Entity, Collection.
+   * Identifier to identify a Udm object like a Udm event, Entity, Collection.
    * The full identifier for persistence is created by setting the 32 most
    * significant bits as the Id.Namespace enum This is a convenience wrapper to
    * define the id space enum values and provide an easy interface for RPCs, most
diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Metadata.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Metadata.java
index 3bccd7b1a1d7..9b5fe1304c1a 100644
--- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Metadata.java
+++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Metadata.java
@@ -24,7 +24,7 @@
  *
  *
  * 
- * General information associated with a UDM event.
+ * General information associated with a Udm event.
  * 
* * Protobuf type {@code google.backstory.Metadata} @@ -4576,7 +4576,7 @@ private EnrichmentState(int value) { * * *
-   * ID of the UDM event. Can be used for raw and normalized event retrieval.
+   * ID of the Udm event. Can be used for raw and normalized event retrieval.
    * 
* * bytes id = 15; @@ -5742,7 +5742,7 @@ public com.google.protobuf.StructOrBuilder getStructuredFieldsOrBuilder() { * * *
-   * The version of the parser that generated this UDM event.
+   * The version of the parser that generated this Udm event.
    * 
* * string parser_version = 22; @@ -5766,7 +5766,7 @@ public java.lang.String getParserVersion() { * * *
-   * The version of the parser that generated this UDM event.
+   * The version of the parser that generated this Udm event.
    * 
* * string parser_version = 22; @@ -6194,7 +6194,7 @@ protected Builder newBuilderForType(com.google.protobuf.GeneratedMessage.Builder * * *
-   * General information associated with a UDM event.
+   * General information associated with a Udm event.
    * 
* * Protobuf type {@code google.backstory.Metadata} @@ -6766,7 +6766,7 @@ public Builder mergeFrom( * * *
-     * ID of the UDM event. Can be used for raw and normalized event retrieval.
+     * ID of the Udm event. Can be used for raw and normalized event retrieval.
      * 
* * bytes id = 15; @@ -6782,7 +6782,7 @@ public com.google.protobuf.ByteString getId() { * * *
-     * ID of the UDM event. Can be used for raw and normalized event retrieval.
+     * ID of the Udm event. Can be used for raw and normalized event retrieval.
      * 
* * bytes id = 15; @@ -6804,7 +6804,7 @@ public Builder setId(com.google.protobuf.ByteString value) { * * *
-     * ID of the UDM event. Can be used for raw and normalized event retrieval.
+     * ID of the Udm event. Can be used for raw and normalized event retrieval.
      * 
* * bytes id = 15; @@ -10082,7 +10082,7 @@ public com.google.protobuf.StructOrBuilder getStructuredFieldsOrBuilder() { * * *
-     * The version of the parser that generated this UDM event.
+     * The version of the parser that generated this Udm event.
      * 
* * string parser_version = 22; @@ -10105,7 +10105,7 @@ public java.lang.String getParserVersion() { * * *
-     * The version of the parser that generated this UDM event.
+     * The version of the parser that generated this Udm event.
      * 
* * string parser_version = 22; @@ -10128,7 +10128,7 @@ public com.google.protobuf.ByteString getParserVersionBytes() { * * *
-     * The version of the parser that generated this UDM event.
+     * The version of the parser that generated this Udm event.
      * 
* * string parser_version = 22; @@ -10150,7 +10150,7 @@ public Builder setParserVersion(java.lang.String value) { * * *
-     * The version of the parser that generated this UDM event.
+     * The version of the parser that generated this Udm event.
      * 
* * string parser_version = 22; @@ -10168,7 +10168,7 @@ public Builder clearParserVersion() { * * *
-     * The version of the parser that generated this UDM event.
+     * The version of the parser that generated this Udm event.
      * 
* * string parser_version = 22; diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/MetadataOrBuilder.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/MetadataOrBuilder.java index d3c11d03e21f..642492c1d2aa 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/MetadataOrBuilder.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/MetadataOrBuilder.java @@ -30,7 +30,7 @@ public interface MetadataOrBuilder * * *
-   * ID of the UDM event. Can be used for raw and normalized event retrieval.
+   * ID of the Udm event. Can be used for raw and normalized event retrieval.
    * 
* * bytes id = 15; @@ -755,7 +755,7 @@ public interface MetadataOrBuilder * * *
-   * The version of the parser that generated this UDM event.
+   * The version of the parser that generated this Udm event.
    * 
* * string parser_version = 22; @@ -768,7 +768,7 @@ public interface MetadataOrBuilder * * *
-   * The version of the parser that generated this UDM event.
+   * The version of the parser that generated this Udm event.
    * 
* * string parser_version = 22; diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Metric.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Metric.java index f1c41007d05f..cba0749ef6a4 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Metric.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Metric.java @@ -741,7 +741,7 @@ public enum MetricName implements com.google.protobuf.ProtocolMessageEnum { * * *
-     * UDM data summary tracking unique values of dimensions.
+     * Udm data summary tracking unique values of dimensions.
      * 
* * UDM_DATA_PRESENCE_SUMMARY = 39; @@ -1194,7 +1194,7 @@ public enum MetricName implements com.google.protobuf.ProtocolMessageEnum { * * *
-     * UDM data summary tracking unique values of dimensions.
+     * Udm data summary tracking unique values of dimensions.
      * 
* * UDM_DATA_PRESENCE_SUMMARY = 39; diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Reference.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Reference.java index 6142f254828b..6bbd136b7d90 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Reference.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Reference.java @@ -74,7 +74,7 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { private int bitField0_; public static final int EVENT_FIELD_NUMBER = 1; - private com.google.backstory.UDM event_; + private com.google.backstory.Udm event_; /** * @@ -86,7 +86,7 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { * Event being referenced. *
* - * .google.backstory.UDM event = 1; + * .google.backstory.Udm event = 1; * * @return Whether the event field is set. */ @@ -105,13 +105,13 @@ public boolean hasEvent() { * Event being referenced. *
* - * .google.backstory.UDM event = 1; + * .google.backstory.Udm event = 1; * * @return The event. */ @java.lang.Override - public com.google.backstory.UDM getEvent() { - return event_ == null ? com.google.backstory.UDM.getDefaultInstance() : event_; + public com.google.backstory.Udm getEvent() { + return event_ == null ? com.google.backstory.Udm.getDefaultInstance() : event_; } /** @@ -124,11 +124,11 @@ public com.google.backstory.UDM getEvent() { * Event being referenced. *
* - * .google.backstory.UDM event = 1; + * .google.backstory.Udm event = 1; */ @java.lang.Override - public com.google.backstory.UDMOrBuilder getEventOrBuilder() { - return event_ == null ? com.google.backstory.UDM.getDefaultInstance() : event_; + public com.google.backstory.UdmOrBuilder getEventOrBuilder() { + return event_ == null ? com.google.backstory.Udm.getDefaultInstance() : event_; } public static final int ENTITY_FIELD_NUMBER = 2; @@ -957,11 +957,11 @@ public Builder mergeFrom( private int bitField0_; - private com.google.backstory.UDM event_; + private com.google.backstory.Udm event_; private com.google.protobuf.SingleFieldBuilder< - com.google.backstory.UDM, - com.google.backstory.UDM.Builder, - com.google.backstory.UDMOrBuilder> + com.google.backstory.Udm, + com.google.backstory.Udm.Builder, + com.google.backstory.UdmOrBuilder> eventBuilder_; /** @@ -974,7 +974,7 @@ public Builder mergeFrom( * Event being referenced. *
* - * .google.backstory.UDM event = 1; + * .google.backstory.Udm event = 1; * * @return Whether the event field is set. */ @@ -992,13 +992,13 @@ public boolean hasEvent() { * Event being referenced. * * - * .google.backstory.UDM event = 1; + * .google.backstory.Udm event = 1; * * @return The event. */ - public com.google.backstory.UDM getEvent() { + public com.google.backstory.Udm getEvent() { if (eventBuilder_ == null) { - return event_ == null ? com.google.backstory.UDM.getDefaultInstance() : event_; + return event_ == null ? com.google.backstory.Udm.getDefaultInstance() : event_; } else { return eventBuilder_.getMessage(); } @@ -1014,9 +1014,9 @@ public com.google.backstory.UDM getEvent() { * Event being referenced. * * - * .google.backstory.UDM event = 1; + * .google.backstory.Udm event = 1; */ - public Builder setEvent(com.google.backstory.UDM value) { + public Builder setEvent(com.google.backstory.Udm value) { if (eventBuilder_ == null) { if (value == null) { throw new NullPointerException(); @@ -1040,9 +1040,9 @@ public Builder setEvent(com.google.backstory.UDM value) { * Event being referenced. * * - * .google.backstory.UDM event = 1; + * .google.backstory.Udm event = 1; */ - public Builder setEvent(com.google.backstory.UDM.Builder builderForValue) { + public Builder setEvent(com.google.backstory.Udm.Builder builderForValue) { if (eventBuilder_ == null) { event_ = builderForValue.build(); } else { @@ -1063,13 +1063,13 @@ public Builder setEvent(com.google.backstory.UDM.Builder builderForValue) { * Event being referenced. * * - * .google.backstory.UDM event = 1; + * .google.backstory.Udm event = 1; */ - public Builder mergeEvent(com.google.backstory.UDM value) { + public Builder mergeEvent(com.google.backstory.Udm value) { if (eventBuilder_ == null) { if (((bitField0_ & 0x00000001) != 0) && event_ != null - && event_ != com.google.backstory.UDM.getDefaultInstance()) { + && event_ != com.google.backstory.Udm.getDefaultInstance()) { getEventBuilder().mergeFrom(value); } else { event_ = value; @@ -1094,7 +1094,7 @@ public Builder mergeEvent(com.google.backstory.UDM value) { * Event being referenced. * * - * .google.backstory.UDM event = 1; + * .google.backstory.Udm event = 1; */ public Builder clearEvent() { bitField0_ = (bitField0_ & ~0x00000001); @@ -1117,9 +1117,9 @@ public Builder clearEvent() { * Event being referenced. * * - * .google.backstory.UDM event = 1; + * .google.backstory.Udm event = 1; */ - public com.google.backstory.UDM.Builder getEventBuilder() { + public com.google.backstory.Udm.Builder getEventBuilder() { bitField0_ |= 0x00000001; onChanged(); return internalGetEventFieldBuilder().getBuilder(); @@ -1135,13 +1135,13 @@ public com.google.backstory.UDM.Builder getEventBuilder() { * Event being referenced. * * - * .google.backstory.UDM event = 1; + * .google.backstory.Udm event = 1; */ - public com.google.backstory.UDMOrBuilder getEventOrBuilder() { + public com.google.backstory.UdmOrBuilder getEventOrBuilder() { if (eventBuilder_ != null) { return eventBuilder_.getMessageOrBuilder(); } else { - return event_ == null ? com.google.backstory.UDM.getDefaultInstance() : event_; + return event_ == null ? com.google.backstory.Udm.getDefaultInstance() : event_; } } @@ -1155,19 +1155,19 @@ public com.google.backstory.UDMOrBuilder getEventOrBuilder() { * Event being referenced. * * - * .google.backstory.UDM event = 1; + * .google.backstory.Udm event = 1; */ private com.google.protobuf.SingleFieldBuilder< - com.google.backstory.UDM, - com.google.backstory.UDM.Builder, - com.google.backstory.UDMOrBuilder> + com.google.backstory.Udm, + com.google.backstory.Udm.Builder, + com.google.backstory.UdmOrBuilder> internalGetEventFieldBuilder() { if (eventBuilder_ == null) { eventBuilder_ = new com.google.protobuf.SingleFieldBuilder< - com.google.backstory.UDM, - com.google.backstory.UDM.Builder, - com.google.backstory.UDMOrBuilder>(getEvent(), getParentForChildren(), isClean()); + com.google.backstory.Udm, + com.google.backstory.Udm.Builder, + com.google.backstory.UdmOrBuilder>(getEvent(), getParentForChildren(), isClean()); event_ = null; } return eventBuilder_; diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/ReferenceOrBuilder.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/ReferenceOrBuilder.java index b52740e0b25e..d65fc70b39f5 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/ReferenceOrBuilder.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/ReferenceOrBuilder.java @@ -36,7 +36,7 @@ public interface ReferenceOrBuilder * Event being referenced. * * - * .google.backstory.UDM event = 1; + * .google.backstory.Udm event = 1; * * @return Whether the event field is set. */ @@ -52,11 +52,11 @@ public interface ReferenceOrBuilder * Event being referenced. * * - * .google.backstory.UDM event = 1; + * .google.backstory.Udm event = 1; * * @return The event. */ - com.google.backstory.UDM getEvent(); + com.google.backstory.Udm getEvent(); /** * @@ -68,9 +68,9 @@ public interface ReferenceOrBuilder * Event being referenced. * * - * .google.backstory.UDM event = 1; + * .google.backstory.Udm event = 1; */ - com.google.backstory.UDMOrBuilder getEventOrBuilder(); + com.google.backstory.UdmOrBuilder getEventOrBuilder(); /** * diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Tags.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Tags.java index f9daa79704a7..6ae8cc95e199 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Tags.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Tags.java @@ -25,7 +25,7 @@ * *
  * Tags are event metadata which is set by examining event contents
- * post-parsing. For example, a UDM event may be assigned a tenant_id based on
+ * post-parsing. For example, a Udm event may be assigned a tenant_id based on
  * certain customer-defined parameters.
  * 
* @@ -377,7 +377,7 @@ protected Builder newBuilderForType(com.google.protobuf.GeneratedMessage.Builder * *
    * Tags are event metadata which is set by examining event contents
-   * post-parsing. For example, a UDM event may be assigned a tenant_id based on
+   * post-parsing. For example, a Udm event may be assigned a tenant_id based on
    * certain customer-defined parameters.
    * 
* diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/UDM.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Udm.java similarity index 97% rename from java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/UDM.java rename to java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Udm.java index 66831dc45392..0f3cc380c719 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/UDM.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/Udm.java @@ -27,13 +27,13 @@ * A Unified Data Model event. * * - * Protobuf type {@code google.backstory.UDM} + * Protobuf type {@code google.backstory.Udm} */ @com.google.protobuf.Generated -public final class UDM extends com.google.protobuf.GeneratedMessage +public final class Udm extends com.google.protobuf.GeneratedMessage implements - // @@protoc_insertion_point(message_implements:google.backstory.UDM) - UDMOrBuilder { + // @@protoc_insertion_point(message_implements:google.backstory.Udm) + UdmOrBuilder { private static final long serialVersionUID = 0L; static { @@ -43,30 +43,30 @@ public final class UDM extends com.google.protobuf.GeneratedMessage /* minor= */ 33, /* patch= */ 6, /* suffix= */ "", - "UDM"); + "Udm"); } - // Use UDM.newBuilder() to construct. - private UDM(com.google.protobuf.GeneratedMessage.Builder builder) { + // Use Udm.newBuilder() to construct. + private Udm(com.google.protobuf.GeneratedMessage.Builder builder) { super(builder); } - private UDM() { + private Udm() { intermediary_ = java.util.Collections.emptyList(); about_ = java.util.Collections.emptyList(); securityResult_ = java.util.Collections.emptyList(); } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_UDM_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Udm_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto.internal_static_google_backstory_UDM_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_Udm_fieldAccessorTable .ensureFieldAccessorsInitialized( - com.google.backstory.UDM.class, com.google.backstory.UDM.Builder.class); + com.google.backstory.Udm.class, com.google.backstory.Udm.Builder.class); } private int bitField0_; @@ -127,7 +127,7 @@ public com.google.backstory.MetadataOrBuilder getMetadataOrBuilder() { * *
    * Any important vendor-specific event data that cannot be adequately
-   * represented within the formal sections of the UDM model.
+   * represented within the formal sections of the Udm model.
    * 
* * .google.protobuf.Struct additional = 2; @@ -144,7 +144,7 @@ public boolean hasAdditional() { * *
    * Any important vendor-specific event data that cannot be adequately
-   * represented within the formal sections of the UDM model.
+   * represented within the formal sections of the Udm model.
    * 
* * .google.protobuf.Struct additional = 2; @@ -161,7 +161,7 @@ public com.google.protobuf.Struct getAdditional() { * *
    * Any important vendor-specific event data that cannot be adequately
-   * represented within the formal sections of the UDM model.
+   * represented within the formal sections of the Udm model.
    * 
* * .google.protobuf.Struct additional = 2; @@ -246,7 +246,7 @@ public com.google.backstory.NounOrBuilder getPrincipalOrBuilder() { * the device or process context for the source object (the machine where the * source object resides). For example, if user U copies file A on machine X * to file B on machine Y, both file A and machine X would be specified in the - * src portion of the UDM event. + * src portion of the Udm event. * * * .google.backstory.Noun src = 4; @@ -266,7 +266,7 @@ public boolean hasSrc() { * the device or process context for the source object (the machine where the * source object resides). For example, if user U copies file A on machine X * to file B on machine Y, both file A and machine X would be specified in the - * src portion of the UDM event. + * src portion of the Udm event. * * * .google.backstory.Noun src = 4; @@ -286,7 +286,7 @@ public com.google.backstory.Noun getSrc() { * the device or process context for the source object (the machine where the * source object resides). For example, if user U copies file A on machine X * to file B on machine Y, both file A and machine X would be specified in the - * src portion of the UDM event. + * src portion of the Udm event. * * * .google.backstory.Noun src = 4; @@ -864,7 +864,7 @@ public com.google.protobuf.StructOrBuilder getExtractedOrBuilder() { * * *
-   * Related UDM fields that are grouped together.
+   * Related Udm fields that are grouped together.
    * 
* * optional .google.backstory.GroupedFields grouped = 13; @@ -880,7 +880,7 @@ public boolean hasGrouped() { * * *
-   * Related UDM fields that are grouped together.
+   * Related Udm fields that are grouped together.
    * 
* * optional .google.backstory.GroupedFields grouped = 13; @@ -896,7 +896,7 @@ public com.google.backstory.GroupedFields getGrouped() { * * *
-   * Related UDM fields that are grouped together.
+   * Related Udm fields that are grouped together.
    * 
* * optional .google.backstory.GroupedFields grouped = 13; @@ -1017,10 +1017,10 @@ public boolean equals(final java.lang.Object obj) { if (obj == this) { return true; } - if (!(obj instanceof com.google.backstory.UDM)) { + if (!(obj instanceof com.google.backstory.Udm)) { return super.equals(obj); } - com.google.backstory.UDM other = (com.google.backstory.UDM) obj; + com.google.backstory.Udm other = (com.google.backstory.Udm) obj; if (hasMetadata() != other.hasMetadata()) return false; if (hasMetadata()) { @@ -1133,70 +1133,70 @@ public int hashCode() { return hash; } - public static com.google.backstory.UDM parseFrom(java.nio.ByteBuffer data) + public static com.google.backstory.Udm parseFrom(java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } - public static com.google.backstory.UDM parseFrom( + public static com.google.backstory.Udm parseFrom( java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } - public static com.google.backstory.UDM parseFrom(com.google.protobuf.ByteString data) + public static com.google.backstory.Udm parseFrom(com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } - public static com.google.backstory.UDM parseFrom( + public static com.google.backstory.Udm parseFrom( com.google.protobuf.ByteString data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } - public static com.google.backstory.UDM parseFrom(byte[] data) + public static com.google.backstory.Udm parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } - public static com.google.backstory.UDM parseFrom( + public static com.google.backstory.Udm parseFrom( byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } - public static com.google.backstory.UDM parseFrom(java.io.InputStream input) + public static com.google.backstory.Udm parseFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessage.parseWithIOException(PARSER, input); } - public static com.google.backstory.UDM parseFrom( + public static com.google.backstory.Udm parseFrom( java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { return com.google.protobuf.GeneratedMessage.parseWithIOException( PARSER, input, extensionRegistry); } - public static com.google.backstory.UDM parseDelimitedFrom(java.io.InputStream input) + public static com.google.backstory.Udm parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessage.parseDelimitedWithIOException(PARSER, input); } - public static com.google.backstory.UDM parseDelimitedFrom( + public static com.google.backstory.Udm parseDelimitedFrom( java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { return com.google.protobuf.GeneratedMessage.parseDelimitedWithIOException( PARSER, input, extensionRegistry); } - public static com.google.backstory.UDM parseFrom(com.google.protobuf.CodedInputStream input) + public static com.google.backstory.Udm parseFrom(com.google.protobuf.CodedInputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessage.parseWithIOException(PARSER, input); } - public static com.google.backstory.UDM parseFrom( + public static com.google.backstory.Udm parseFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { @@ -1213,7 +1213,7 @@ public static Builder newBuilder() { return DEFAULT_INSTANCE.toBuilder(); } - public static Builder newBuilder(com.google.backstory.UDM prototype) { + public static Builder newBuilder(com.google.backstory.Udm prototype) { return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); } @@ -1235,25 +1235,25 @@ protected Builder newBuilderForType(com.google.protobuf.GeneratedMessage.Builder * A Unified Data Model event. * * - * Protobuf type {@code google.backstory.UDM} + * Protobuf type {@code google.backstory.Udm} */ public static final class Builder extends com.google.protobuf.GeneratedMessage.Builder implements - // @@protoc_insertion_point(builder_implements:google.backstory.UDM) - com.google.backstory.UDMOrBuilder { + // @@protoc_insertion_point(builder_implements:google.backstory.Udm) + com.google.backstory.UdmOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.backstory.UdmProto.internal_static_google_backstory_UDM_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Udm_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.google.backstory.UdmProto.internal_static_google_backstory_UDM_fieldAccessorTable + return com.google.backstory.UdmProto.internal_static_google_backstory_Udm_fieldAccessorTable .ensureFieldAccessorsInitialized( - com.google.backstory.UDM.class, com.google.backstory.UDM.Builder.class); + com.google.backstory.Udm.class, com.google.backstory.Udm.Builder.class); } - // Construct using com.google.backstory.UDM.newBuilder() + // Construct using com.google.backstory.Udm.newBuilder() private Builder() { maybeForceBuilderInitialization(); } @@ -1361,17 +1361,17 @@ public Builder clear() { @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.backstory.UdmProto.internal_static_google_backstory_UDM_descriptor; + return com.google.backstory.UdmProto.internal_static_google_backstory_Udm_descriptor; } @java.lang.Override - public com.google.backstory.UDM getDefaultInstanceForType() { - return com.google.backstory.UDM.getDefaultInstance(); + public com.google.backstory.Udm getDefaultInstanceForType() { + return com.google.backstory.Udm.getDefaultInstance(); } @java.lang.Override - public com.google.backstory.UDM build() { - com.google.backstory.UDM result = buildPartial(); + public com.google.backstory.Udm build() { + com.google.backstory.Udm result = buildPartial(); if (!result.isInitialized()) { throw newUninitializedMessageException(result); } @@ -1379,8 +1379,8 @@ public com.google.backstory.UDM build() { } @java.lang.Override - public com.google.backstory.UDM buildPartial() { - com.google.backstory.UDM result = new com.google.backstory.UDM(this); + public com.google.backstory.Udm buildPartial() { + com.google.backstory.Udm result = new com.google.backstory.Udm(this); buildPartialRepeatedFields(result); if (bitField0_ != 0) { buildPartial0(result); @@ -1389,7 +1389,7 @@ public com.google.backstory.UDM buildPartial() { return result; } - private void buildPartialRepeatedFields(com.google.backstory.UDM result) { + private void buildPartialRepeatedFields(com.google.backstory.Udm result) { if (intermediaryBuilder_ == null) { if (((bitField0_ & 0x00000020) != 0)) { intermediary_ = java.util.Collections.unmodifiableList(intermediary_); @@ -1419,7 +1419,7 @@ private void buildPartialRepeatedFields(com.google.backstory.UDM result) { } } - private void buildPartial0(com.google.backstory.UDM result) { + private void buildPartial0(com.google.backstory.Udm result) { int from_bitField0_ = bitField0_; int to_bitField0_ = 0; if (((from_bitField0_ & 0x00000001) != 0)) { @@ -1467,16 +1467,16 @@ private void buildPartial0(com.google.backstory.UDM result) { @java.lang.Override public Builder mergeFrom(com.google.protobuf.Message other) { - if (other instanceof com.google.backstory.UDM) { - return mergeFrom((com.google.backstory.UDM) other); + if (other instanceof com.google.backstory.Udm) { + return mergeFrom((com.google.backstory.Udm) other); } else { super.mergeFrom(other); return this; } } - public Builder mergeFrom(com.google.backstory.UDM other) { - if (other == com.google.backstory.UDM.getDefaultInstance()) return this; + public Builder mergeFrom(com.google.backstory.Udm other) { + if (other == com.google.backstory.Udm.getDefaultInstance()) return this; if (other.hasMetadata()) { mergeMetadata(other.getMetadata()); } @@ -1938,7 +1938,7 @@ public com.google.backstory.MetadataOrBuilder getMetadataOrBuilder() { * *
      * Any important vendor-specific event data that cannot be adequately
-     * represented within the formal sections of the UDM model.
+     * represented within the formal sections of the Udm model.
      * 
* * .google.protobuf.Struct additional = 2; @@ -1954,7 +1954,7 @@ public boolean hasAdditional() { * *
      * Any important vendor-specific event data that cannot be adequately
-     * represented within the formal sections of the UDM model.
+     * represented within the formal sections of the Udm model.
      * 
* * .google.protobuf.Struct additional = 2; @@ -1974,7 +1974,7 @@ public com.google.protobuf.Struct getAdditional() { * *
      * Any important vendor-specific event data that cannot be adequately
-     * represented within the formal sections of the UDM model.
+     * represented within the formal sections of the Udm model.
      * 
* * .google.protobuf.Struct additional = 2; @@ -1998,7 +1998,7 @@ public Builder setAdditional(com.google.protobuf.Struct value) { * *
      * Any important vendor-specific event data that cannot be adequately
-     * represented within the formal sections of the UDM model.
+     * represented within the formal sections of the Udm model.
      * 
* * .google.protobuf.Struct additional = 2; @@ -2019,7 +2019,7 @@ public Builder setAdditional(com.google.protobuf.Struct.Builder builderForValue) * *
      * Any important vendor-specific event data that cannot be adequately
-     * represented within the formal sections of the UDM model.
+     * represented within the formal sections of the Udm model.
      * 
* * .google.protobuf.Struct additional = 2; @@ -2048,7 +2048,7 @@ public Builder mergeAdditional(com.google.protobuf.Struct value) { * *
      * Any important vendor-specific event data that cannot be adequately
-     * represented within the formal sections of the UDM model.
+     * represented within the formal sections of the Udm model.
      * 
* * .google.protobuf.Struct additional = 2; @@ -2069,7 +2069,7 @@ public Builder clearAdditional() { * *
      * Any important vendor-specific event data that cannot be adequately
-     * represented within the formal sections of the UDM model.
+     * represented within the formal sections of the Udm model.
      * 
* * .google.protobuf.Struct additional = 2; @@ -2085,7 +2085,7 @@ public com.google.protobuf.Struct.Builder getAdditionalBuilder() { * *
      * Any important vendor-specific event data that cannot be adequately
-     * represented within the formal sections of the UDM model.
+     * represented within the formal sections of the Udm model.
      * 
* * .google.protobuf.Struct additional = 2; @@ -2103,7 +2103,7 @@ public com.google.protobuf.StructOrBuilder getAdditionalOrBuilder() { * *
      * Any important vendor-specific event data that cannot be adequately
-     * represented within the formal sections of the UDM model.
+     * represented within the formal sections of the Udm model.
      * 
* * .google.protobuf.Struct additional = 2; @@ -2375,7 +2375,7 @@ public com.google.backstory.NounOrBuilder getPrincipalOrBuilder() { * the device or process context for the source object (the machine where the * source object resides). For example, if user U copies file A on machine X * to file B on machine Y, both file A and machine X would be specified in the - * src portion of the UDM event. + * src portion of the Udm event. * * * .google.backstory.Noun src = 4; @@ -2394,7 +2394,7 @@ public boolean hasSrc() { * the device or process context for the source object (the machine where the * source object resides). For example, if user U copies file A on machine X * to file B on machine Y, both file A and machine X would be specified in the - * src portion of the UDM event. + * src portion of the Udm event. * * * .google.backstory.Noun src = 4; @@ -2417,7 +2417,7 @@ public com.google.backstory.Noun getSrc() { * the device or process context for the source object (the machine where the * source object resides). For example, if user U copies file A on machine X * to file B on machine Y, both file A and machine X would be specified in the - * src portion of the UDM event. + * src portion of the Udm event. * * * .google.backstory.Noun src = 4; @@ -2444,7 +2444,7 @@ public Builder setSrc(com.google.backstory.Noun value) { * the device or process context for the source object (the machine where the * source object resides). For example, if user U copies file A on machine X * to file B on machine Y, both file A and machine X would be specified in the - * src portion of the UDM event. + * src portion of the Udm event. * * * .google.backstory.Noun src = 4; @@ -2468,7 +2468,7 @@ public Builder setSrc(com.google.backstory.Noun.Builder builderForValue) { * the device or process context for the source object (the machine where the * source object resides). For example, if user U copies file A on machine X * to file B on machine Y, both file A and machine X would be specified in the - * src portion of the UDM event. + * src portion of the Udm event. * * * .google.backstory.Noun src = 4; @@ -2500,7 +2500,7 @@ public Builder mergeSrc(com.google.backstory.Noun value) { * the device or process context for the source object (the machine where the * source object resides). For example, if user U copies file A on machine X * to file B on machine Y, both file A and machine X would be specified in the - * src portion of the UDM event. + * src portion of the Udm event. * * * .google.backstory.Noun src = 4; @@ -2524,7 +2524,7 @@ public Builder clearSrc() { * the device or process context for the source object (the machine where the * source object resides). For example, if user U copies file A on machine X * to file B on machine Y, both file A and machine X would be specified in the - * src portion of the UDM event. + * src portion of the Udm event. * * * .google.backstory.Noun src = 4; @@ -2543,7 +2543,7 @@ public com.google.backstory.Noun.Builder getSrcBuilder() { * the device or process context for the source object (the machine where the * source object resides). For example, if user U copies file A on machine X * to file B on machine Y, both file A and machine X would be specified in the - * src portion of the UDM event. + * src portion of the Udm event. * * * .google.backstory.Noun src = 4; @@ -2564,7 +2564,7 @@ public com.google.backstory.NounOrBuilder getSrcOrBuilder() { * the device or process context for the source object (the machine where the * source object resides). For example, if user U copies file A on machine X * to file B on machine Y, both file A and machine X would be specified in the - * src portion of the UDM event. + * src portion of the Udm event. * * * .google.backstory.Noun src = 4; @@ -4948,7 +4948,7 @@ public com.google.protobuf.StructOrBuilder getExtractedOrBuilder() { * * *
-     * Related UDM fields that are grouped together.
+     * Related Udm fields that are grouped together.
      * 
* * optional .google.backstory.GroupedFields grouped = 13; @@ -4963,7 +4963,7 @@ public boolean hasGrouped() { * * *
-     * Related UDM fields that are grouped together.
+     * Related Udm fields that are grouped together.
      * 
* * optional .google.backstory.GroupedFields grouped = 13; @@ -4984,7 +4984,7 @@ public com.google.backstory.GroupedFields getGrouped() { * * *
-     * Related UDM fields that are grouped together.
+     * Related Udm fields that are grouped together.
      * 
* * optional .google.backstory.GroupedFields grouped = 13; @@ -5007,7 +5007,7 @@ public Builder setGrouped(com.google.backstory.GroupedFields value) { * * *
-     * Related UDM fields that are grouped together.
+     * Related Udm fields that are grouped together.
      * 
* * optional .google.backstory.GroupedFields grouped = 13; @@ -5027,7 +5027,7 @@ public Builder setGrouped(com.google.backstory.GroupedFields.Builder builderForV * * *
-     * Related UDM fields that are grouped together.
+     * Related Udm fields that are grouped together.
      * 
* * optional .google.backstory.GroupedFields grouped = 13; @@ -5055,7 +5055,7 @@ public Builder mergeGrouped(com.google.backstory.GroupedFields value) { * * *
-     * Related UDM fields that are grouped together.
+     * Related Udm fields that are grouped together.
      * 
* * optional .google.backstory.GroupedFields grouped = 13; @@ -5075,7 +5075,7 @@ public Builder clearGrouped() { * * *
-     * Related UDM fields that are grouped together.
+     * Related Udm fields that are grouped together.
      * 
* * optional .google.backstory.GroupedFields grouped = 13; @@ -5090,7 +5090,7 @@ public com.google.backstory.GroupedFields.Builder getGroupedBuilder() { * * *
-     * Related UDM fields that are grouped together.
+     * Related Udm fields that are grouped together.
      * 
* * optional .google.backstory.GroupedFields grouped = 13; @@ -5109,7 +5109,7 @@ public com.google.backstory.GroupedFieldsOrBuilder getGroupedOrBuilder() { * * *
-     * Related UDM fields that are grouped together.
+     * Related Udm fields that are grouped together.
      * 
* * optional .google.backstory.GroupedFields grouped = 13; @@ -5131,24 +5131,24 @@ public com.google.backstory.GroupedFieldsOrBuilder getGroupedOrBuilder() { return groupedBuilder_; } - // @@protoc_insertion_point(builder_scope:google.backstory.UDM) + // @@protoc_insertion_point(builder_scope:google.backstory.Udm) } - // @@protoc_insertion_point(class_scope:google.backstory.UDM) - private static final com.google.backstory.UDM DEFAULT_INSTANCE; + // @@protoc_insertion_point(class_scope:google.backstory.Udm) + private static final com.google.backstory.Udm DEFAULT_INSTANCE; static { - DEFAULT_INSTANCE = new com.google.backstory.UDM(); + DEFAULT_INSTANCE = new com.google.backstory.Udm(); } - public static com.google.backstory.UDM getDefaultInstance() { + public static com.google.backstory.Udm getDefaultInstance() { return DEFAULT_INSTANCE; } - private static final com.google.protobuf.Parser PARSER = - new com.google.protobuf.AbstractParser() { + private static final com.google.protobuf.Parser PARSER = + new com.google.protobuf.AbstractParser() { @java.lang.Override - public UDM parsePartialFrom( + public Udm parsePartialFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { @@ -5167,17 +5167,17 @@ public UDM parsePartialFrom( } }; - public static com.google.protobuf.Parser parser() { + public static com.google.protobuf.Parser parser() { return PARSER; } @java.lang.Override - public com.google.protobuf.Parser getParserForType() { + public com.google.protobuf.Parser getParserForType() { return PARSER; } @java.lang.Override - public com.google.backstory.UDM getDefaultInstanceForType() { + public com.google.backstory.Udm getDefaultInstanceForType() { return DEFAULT_INSTANCE; } } diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/UDMOrBuilder.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/UdmOrBuilder.java similarity index 97% rename from java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/UDMOrBuilder.java rename to java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/UdmOrBuilder.java index a41dc6a971d3..70c49522c2ca 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/UDMOrBuilder.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/UdmOrBuilder.java @@ -21,9 +21,9 @@ package com.google.backstory; @com.google.protobuf.Generated -public interface UDMOrBuilder +public interface UdmOrBuilder extends - // @@protoc_insertion_point(interface_extends:google.backstory.UDM) + // @@protoc_insertion_point(interface_extends:google.backstory.Udm) com.google.protobuf.MessageOrBuilder { /** @@ -68,7 +68,7 @@ public interface UDMOrBuilder * *
    * Any important vendor-specific event data that cannot be adequately
-   * represented within the formal sections of the UDM model.
+   * represented within the formal sections of the Udm model.
    * 
* * .google.protobuf.Struct additional = 2; @@ -82,7 +82,7 @@ public interface UDMOrBuilder * *
    * Any important vendor-specific event data that cannot be adequately
-   * represented within the formal sections of the UDM model.
+   * represented within the formal sections of the Udm model.
    * 
* * .google.protobuf.Struct additional = 2; @@ -96,7 +96,7 @@ public interface UDMOrBuilder * *
    * Any important vendor-specific event data that cannot be adequately
-   * represented within the formal sections of the UDM model.
+   * represented within the formal sections of the Udm model.
    * 
* * .google.protobuf.Struct additional = 2; @@ -163,7 +163,7 @@ public interface UDMOrBuilder * the device or process context for the source object (the machine where the * source object resides). For example, if user U copies file A on machine X * to file B on machine Y, both file A and machine X would be specified in the - * src portion of the UDM event. + * src portion of the Udm event. * * * .google.backstory.Noun src = 4; @@ -180,7 +180,7 @@ public interface UDMOrBuilder * the device or process context for the source object (the machine where the * source object resides). For example, if user U copies file A on machine X * to file B on machine Y, both file A and machine X would be specified in the - * src portion of the UDM event. + * src portion of the Udm event. * * * .google.backstory.Noun src = 4; @@ -197,7 +197,7 @@ public interface UDMOrBuilder * the device or process context for the source object (the machine where the * source object resides). For example, if user U copies file A on machine X * to file B on machine Y, both file A and machine X would be specified in the - * src portion of the UDM event. + * src portion of the Udm event. * * * .google.backstory.Noun src = 4; @@ -648,7 +648,7 @@ public interface UDMOrBuilder * * *
-   * Related UDM fields that are grouped together.
+   * Related Udm fields that are grouped together.
    * 
* * optional .google.backstory.GroupedFields grouped = 13; @@ -661,7 +661,7 @@ public interface UDMOrBuilder * * *
-   * Related UDM fields that are grouped together.
+   * Related Udm fields that are grouped together.
    * 
* * optional .google.backstory.GroupedFields grouped = 13; @@ -674,7 +674,7 @@ public interface UDMOrBuilder * * *
-   * Related UDM fields that are grouped together.
+   * Related Udm fields that are grouped together.
    * 
* * optional .google.backstory.GroupedFields grouped = 13; diff --git a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/UdmProto.java b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/UdmProto.java index af097d223cf2..30d9013e25a2 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/UdmProto.java +++ b/java-backstory/proto-google-cloud-backstory/src/main/java/com/google/backstory/UdmProto.java @@ -41,9 +41,9 @@ public static void registerAllExtensions(com.google.protobuf.ExtensionRegistry r } static final com.google.protobuf.Descriptors.Descriptor - internal_static_google_backstory_UDM_descriptor; + internal_static_google_backstory_Udm_descriptor; static final com.google.protobuf.GeneratedMessage.FieldAccessorTable - internal_static_google_backstory_UDM_fieldAccessorTable; + internal_static_google_backstory_Udm_fieldAccessorTable; static final com.google.protobuf.Descriptors.Descriptor internal_static_google_backstory_Metadata_descriptor; static final com.google.protobuf.GeneratedMessage.FieldAccessorTable @@ -532,7 +532,7 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { + "oogle/protobuf/duration.proto\032\034google/pr" + "otobuf/struct.proto\032\037google/protobuf/tim" + "estamp.proto\032\032google/type/interval.proto\032\030google/type/latlng.proto\"\363\004\n" - + "\003UDM\022,\n" + + "\003Udm\022,\n" + "\010metadata\030\001 \001(\0132\032.google.backstory.Metadata\022+\n\n" + "additional\030\002 \001(\0132\027.google.protobuf.Struct\022)\n" + "\tprincipal\030\003 \001(\0132\026.google.backstory.Noun\022#\n" @@ -2741,10 +2741,10 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { com.google.type.IntervalProto.getDescriptor(), com.google.type.LatLngProto.getDescriptor(), }); - internal_static_google_backstory_UDM_descriptor = getDescriptor().getMessageType(0); - internal_static_google_backstory_UDM_fieldAccessorTable = + internal_static_google_backstory_Udm_descriptor = getDescriptor().getMessageType(0); + internal_static_google_backstory_Udm_fieldAccessorTable = new com.google.protobuf.GeneratedMessage.FieldAccessorTable( - internal_static_google_backstory_UDM_descriptor, + internal_static_google_backstory_Udm_descriptor, new java.lang.String[] { "Metadata", "Additional", diff --git a/java-backstory/proto-google-cloud-backstory/src/main/proto/backstory/collection.proto b/java-backstory/proto-google-cloud-backstory/src/main/proto/backstory/collection.proto index db22471f5340..491263d09afb 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/proto/backstory/collection.proto +++ b/java-backstory/proto-google-cloud-backstory/src/main/proto/backstory/collection.proto @@ -270,7 +270,7 @@ message Reference { // reference. // Start one-of // Event being referenced. - UDM event = 1; + Udm event = 1; // Entity being referenced. In cases where the entity graph is overridden by // data table, this will represent the original entity. diff --git a/java-backstory/proto-google-cloud-backstory/src/main/proto/backstory/udm.proto b/java-backstory/proto-google-cloud-backstory/src/main/proto/backstory/udm.proto index 6153801726cc..63f5ffaaa289 100644 --- a/java-backstory/proto-google-cloud-backstory/src/main/proto/backstory/udm.proto +++ b/java-backstory/proto-google-cloud-backstory/src/main/proto/backstory/udm.proto @@ -34,7 +34,7 @@ option php_namespace = "Google\\Backstory"; option ruby_package = "Google::Backstory"; // A Unified Data Model event. -message UDM { +message Udm { // Event metadata such as timestamp, source product, etc. Metadata metadata = 1;