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

com.contrastsecurity.models.LibraryStats Maven / Gradle / Ivy

There is a newer version: 3.4.2
Show newest version
package com.contrastsecurity.models;

/*-
 * #%L
 * Contrast Java SDK
 * %%
 * Copyright (C) 2021 Contrast Security, 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.
 * #L%
 */

import com.google.gson.annotations.SerializedName;

public class LibraryStats {

  // Inner Class for Stats
  public class Stats {
    /**
     * The LOC of all libraries
     *
     * @return LOC of all libraries
     */
    public String getLOCshorthand() {
      return this.locShorthand;
    }

    @SerializedName("library_loc_shorthand")
    private String locShorthand;

    /**
     * The total count of libraries
     *
     * @return the total count of libraries
     */
    public int getTotal() {
      return this.total;
    }

    @SerializedName("total")
    private int total = 0;

    /**
     * The count of vulnerable libraries
     *
     * @return the count of vulnerable libraries
     */
    public int getVulnerableCount() {
      return this.vulnerableCount;
    }

    @SerializedName("vulnerables")
    private int vulnerableCount = 0;

    /**
     * The total vulnerability count of libraries
     *
     * @return the total vulnerability count of libraries
     */
    public int getTotalVulns() {
      return this.totalVulns;
    }

    @SerializedName("total_vulnerabilities")
    private int totalVulns = 0;

    /**
     * The count of stale libraries
     *
     * @return the count of stale libraries
     */
    public int getStaleCount() {
      return this.stale;
    }

    @SerializedName("stale")
    private int stale = 0;
  }

  /**
   * Return the library stats
   *
   * @return the library stats
   */
  public Stats getStats() {
    return stats;
  }

  @SerializedName("stats")
  private Stats stats;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy