All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.google.api.services.tracing.v2.model.StackTrace Maven / Gradle / Ivy

There is a newer version: v2-rev6-1.22.0
Show newest version
/*
 * Copyright 2010 Google Inc.
 *
 * 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.
 */
/*
 * This code was generated by https://github.com/google/apis-client-generator/
 * (build: 2017-02-15 17:18:02 UTC)
 * on 2017-05-17 at 20:21:11 UTC 
 * Modify at your own risk.
 */

package com.google.api.services.tracing.v2.model;

/**
 * StackTrace collected in a trace.
 *
 * 

This is the Java data model class that specifies how to parse/serialize into the JSON that is * transmitted over HTTP when working with the Google Tracing API. For a detailed explanation see: * https://developers.google.com/api-client-library/java/google-http-java-client/json *

* * @author Google, Inc. */ @SuppressWarnings("javadoc") public final class StackTrace extends com.google.api.client.json.GenericJson { /** * Stack frames in this stack trace. A maximum of 128 frames are allowed. * The value may be {@code null}. */ @com.google.api.client.util.Key private StackFrames stackFrames; /** * The hash ID is used to conserve network bandwidth for duplicate stack traces within a single * trace. * * Often multiple spans will have identical stack traces. The first occurance of a stack trace * should contain both the `stackFrame` content and a value in `stackTraceHashId`. * * Subsequent spans within the same request can refer to that stack trace by only setting * `stackTraceHashId`. * The value may be {@code null}. */ @com.google.api.client.util.Key @com.google.api.client.json.JsonString private java.math.BigInteger stackTraceHashId; /** * Stack frames in this stack trace. A maximum of 128 frames are allowed. * @return value or {@code null} for none */ public StackFrames getStackFrames() { return stackFrames; } /** * Stack frames in this stack trace. A maximum of 128 frames are allowed. * @param stackFrames stackFrames or {@code null} for none */ public StackTrace setStackFrames(StackFrames stackFrames) { this.stackFrames = stackFrames; return this; } /** * The hash ID is used to conserve network bandwidth for duplicate stack traces within a single * trace. * * Often multiple spans will have identical stack traces. The first occurance of a stack trace * should contain both the `stackFrame` content and a value in `stackTraceHashId`. * * Subsequent spans within the same request can refer to that stack trace by only setting * `stackTraceHashId`. * @return value or {@code null} for none */ public java.math.BigInteger getStackTraceHashId() { return stackTraceHashId; } /** * The hash ID is used to conserve network bandwidth for duplicate stack traces within a single * trace. * * Often multiple spans will have identical stack traces. The first occurance of a stack trace * should contain both the `stackFrame` content and a value in `stackTraceHashId`. * * Subsequent spans within the same request can refer to that stack trace by only setting * `stackTraceHashId`. * @param stackTraceHashId stackTraceHashId or {@code null} for none */ public StackTrace setStackTraceHashId(java.math.BigInteger stackTraceHashId) { this.stackTraceHashId = stackTraceHashId; return this; } @Override public StackTrace set(String fieldName, Object value) { return (StackTrace) super.set(fieldName, value); } @Override public StackTrace clone() { return (StackTrace) super.clone(); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy