/*
 * Copyright 2019 The Grafeas Authors. All rights reserved.
 *
 * 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
 *
 *     https://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.
 */

// Generated by the protocol buffer compiler.  DO NOT EDIT!
// source: grafeas/v1/vex.proto

package io.grafeas.v1;

public interface VulnerabilityAssessmentNoteOrBuilder
    extends
    // @@protoc_insertion_point(interface_extends:grafeas.v1.VulnerabilityAssessmentNote)
    com.google.protobuf.MessageOrBuilder {

  /**
   *
   *
   * <pre>
   * The title of the note. E.g. `Vex-Debian-11.4`
   * </pre>
   *
   * <code>string title = 1;</code>
   *
   * @return The title.
   */
  java.lang.String getTitle();
  /**
   *
   *
   * <pre>
   * The title of the note. E.g. `Vex-Debian-11.4`
   * </pre>
   *
   * <code>string title = 1;</code>
   *
   * @return The bytes for title.
   */
  com.google.protobuf.ByteString getTitleBytes();

  /**
   *
   *
   * <pre>
   * A one sentence description of this Vex.
   * </pre>
   *
   * <code>string short_description = 2;</code>
   *
   * @return The shortDescription.
   */
  java.lang.String getShortDescription();
  /**
   *
   *
   * <pre>
   * A one sentence description of this Vex.
   * </pre>
   *
   * <code>string short_description = 2;</code>
   *
   * @return The bytes for shortDescription.
   */
  com.google.protobuf.ByteString getShortDescriptionBytes();

  /**
   *
   *
   * <pre>
   * A detailed description of this Vex.
   * </pre>
   *
   * <code>string long_description = 3;</code>
   *
   * @return The longDescription.
   */
  java.lang.String getLongDescription();
  /**
   *
   *
   * <pre>
   * A detailed description of this Vex.
   * </pre>
   *
   * <code>string long_description = 3;</code>
   *
   * @return The bytes for longDescription.
   */
  com.google.protobuf.ByteString getLongDescriptionBytes();

  /**
   *
   *
   * <pre>
   * Identifies the language used by this document,
   * corresponding to IETF BCP 47 / RFC 5646.
   * </pre>
   *
   * <code>string language_code = 4;</code>
   *
   * @return The languageCode.
   */
  java.lang.String getLanguageCode();
  /**
   *
   *
   * <pre>
   * Identifies the language used by this document,
   * corresponding to IETF BCP 47 / RFC 5646.
   * </pre>
   *
   * <code>string language_code = 4;</code>
   *
   * @return The bytes for languageCode.
   */
  com.google.protobuf.ByteString getLanguageCodeBytes();

  /**
   *
   *
   * <pre>
   * Publisher details of this Note.
   * </pre>
   *
   * <code>.grafeas.v1.VulnerabilityAssessmentNote.Publisher publisher = 5;</code>
   *
   * @return Whether the publisher field is set.
   */
  boolean hasPublisher();
  /**
   *
   *
   * <pre>
   * Publisher details of this Note.
   * </pre>
   *
   * <code>.grafeas.v1.VulnerabilityAssessmentNote.Publisher publisher = 5;</code>
   *
   * @return The publisher.
   */
  io.grafeas.v1.VulnerabilityAssessmentNote.Publisher getPublisher();
  /**
   *
   *
   * <pre>
   * Publisher details of this Note.
   * </pre>
   *
   * <code>.grafeas.v1.VulnerabilityAssessmentNote.Publisher publisher = 5;</code>
   */
  io.grafeas.v1.VulnerabilityAssessmentNote.PublisherOrBuilder getPublisherOrBuilder();

  /**
   *
   *
   * <pre>
   * The product affected by this vex.
   * </pre>
   *
   * <code>.grafeas.v1.VulnerabilityAssessmentNote.Product product = 6;</code>
   *
   * @return Whether the product field is set.
   */
  boolean hasProduct();
  /**
   *
   *
   * <pre>
   * The product affected by this vex.
   * </pre>
   *
   * <code>.grafeas.v1.VulnerabilityAssessmentNote.Product product = 6;</code>
   *
   * @return The product.
   */
  io.grafeas.v1.VulnerabilityAssessmentNote.Product getProduct();
  /**
   *
   *
   * <pre>
   * The product affected by this vex.
   * </pre>
   *
   * <code>.grafeas.v1.VulnerabilityAssessmentNote.Product product = 6;</code>
   */
  io.grafeas.v1.VulnerabilityAssessmentNote.ProductOrBuilder getProductOrBuilder();

  /**
   *
   *
   * <pre>
   * Represents a vulnerability assessment for the product.
   * </pre>
   *
   * <code>.grafeas.v1.VulnerabilityAssessmentNote.Assessment assessment = 7;</code>
   *
   * @return Whether the assessment field is set.
   */
  boolean hasAssessment();
  /**
   *
   *
   * <pre>
   * Represents a vulnerability assessment for the product.
   * </pre>
   *
   * <code>.grafeas.v1.VulnerabilityAssessmentNote.Assessment assessment = 7;</code>
   *
   * @return The assessment.
   */
  io.grafeas.v1.VulnerabilityAssessmentNote.Assessment getAssessment();
  /**
   *
   *
   * <pre>
   * Represents a vulnerability assessment for the product.
   * </pre>
   *
   * <code>.grafeas.v1.VulnerabilityAssessmentNote.Assessment assessment = 7;</code>
   */
  io.grafeas.v1.VulnerabilityAssessmentNote.AssessmentOrBuilder getAssessmentOrBuilder();
}
