1 /* 2 * Copyright 2020 Google LLC 3 * 4 * Licensed under the Apache License, Version 2.0 (the "License"); 5 * you may not use this file except in compliance with the License. 6 * You may obtain a copy of the License at 7 * 8 * https://www.apache.org/licenses/LICENSE-2.0 9 * 10 * Unless required by applicable law or agreed to in writing, software 11 * distributed under the License is distributed on an "AS IS" BASIS, 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 * See the License for the specific language governing permissions and 14 * limitations under the License. 15 */ 16 // Generated by the protocol buffer compiler. DO NOT EDIT! 17 // source: google/devtools/cloudtrace/v2/trace.proto 18 19 package com.google.devtools.cloudtrace.v2; 20 21 public interface ModuleOrBuilder 22 extends 23 // @@protoc_insertion_point(interface_extends:google.devtools.cloudtrace.v2.Module) 24 com.google.protobuf.MessageOrBuilder { 25 26 /** 27 * 28 * 29 * <pre> 30 * For example: main binary, kernel modules, and dynamic libraries 31 * such as libc.so, sharedlib.so (up to 256 bytes). 32 * </pre> 33 * 34 * <code>.google.devtools.cloudtrace.v2.TruncatableString module = 1;</code> 35 * 36 * @return Whether the module field is set. 37 */ hasModule()38 boolean hasModule(); 39 /** 40 * 41 * 42 * <pre> 43 * For example: main binary, kernel modules, and dynamic libraries 44 * such as libc.so, sharedlib.so (up to 256 bytes). 45 * </pre> 46 * 47 * <code>.google.devtools.cloudtrace.v2.TruncatableString module = 1;</code> 48 * 49 * @return The module. 50 */ getModule()51 com.google.devtools.cloudtrace.v2.TruncatableString getModule(); 52 /** 53 * 54 * 55 * <pre> 56 * For example: main binary, kernel modules, and dynamic libraries 57 * such as libc.so, sharedlib.so (up to 256 bytes). 58 * </pre> 59 * 60 * <code>.google.devtools.cloudtrace.v2.TruncatableString module = 1;</code> 61 */ getModuleOrBuilder()62 com.google.devtools.cloudtrace.v2.TruncatableStringOrBuilder getModuleOrBuilder(); 63 64 /** 65 * 66 * 67 * <pre> 68 * A unique identifier for the module, usually a hash of its 69 * contents (up to 128 bytes). 70 * </pre> 71 * 72 * <code>.google.devtools.cloudtrace.v2.TruncatableString build_id = 2;</code> 73 * 74 * @return Whether the buildId field is set. 75 */ hasBuildId()76 boolean hasBuildId(); 77 /** 78 * 79 * 80 * <pre> 81 * A unique identifier for the module, usually a hash of its 82 * contents (up to 128 bytes). 83 * </pre> 84 * 85 * <code>.google.devtools.cloudtrace.v2.TruncatableString build_id = 2;</code> 86 * 87 * @return The buildId. 88 */ getBuildId()89 com.google.devtools.cloudtrace.v2.TruncatableString getBuildId(); 90 /** 91 * 92 * 93 * <pre> 94 * A unique identifier for the module, usually a hash of its 95 * contents (up to 128 bytes). 96 * </pre> 97 * 98 * <code>.google.devtools.cloudtrace.v2.TruncatableString build_id = 2;</code> 99 */ getBuildIdOrBuilder()100 com.google.devtools.cloudtrace.v2.TruncatableStringOrBuilder getBuildIdOrBuilder(); 101 } 102