171 lines
3.7 KiB
PHP
171 lines
3.7 KiB
PHP
|
|
<?php
|
||
|
|
/*
|
||
|
|
* Copyright 2014 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.
|
||
|
|
*/
|
||
|
|
|
||
|
|
namespace Google\Service\ContainerAnalysis;
|
||
|
|
|
||
|
|
class VulnerabilityAssessmentNote extends \Google\Model
|
||
|
|
{
|
||
|
|
protected $assessmentType = Assessment::class;
|
||
|
|
protected $assessmentDataType = '';
|
||
|
|
/**
|
||
|
|
* Identifies the language used by this document, corresponding to IETF BCP 47
|
||
|
|
* / RFC 5646.
|
||
|
|
*
|
||
|
|
* @var string
|
||
|
|
*/
|
||
|
|
public $languageCode;
|
||
|
|
/**
|
||
|
|
* A detailed description of this Vex.
|
||
|
|
*
|
||
|
|
* @var string
|
||
|
|
*/
|
||
|
|
public $longDescription;
|
||
|
|
protected $productType = Product::class;
|
||
|
|
protected $productDataType = '';
|
||
|
|
protected $publisherType = Publisher::class;
|
||
|
|
protected $publisherDataType = '';
|
||
|
|
/**
|
||
|
|
* A one sentence description of this Vex.
|
||
|
|
*
|
||
|
|
* @var string
|
||
|
|
*/
|
||
|
|
public $shortDescription;
|
||
|
|
/**
|
||
|
|
* The title of the note. E.g. `Vex-Debian-11.4`
|
||
|
|
*
|
||
|
|
* @var string
|
||
|
|
*/
|
||
|
|
public $title;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Represents a vulnerability assessment for the product.
|
||
|
|
*
|
||
|
|
* @param Assessment $assessment
|
||
|
|
*/
|
||
|
|
public function setAssessment(Assessment $assessment)
|
||
|
|
{
|
||
|
|
$this->assessment = $assessment;
|
||
|
|
}
|
||
|
|
/**
|
||
|
|
* @return Assessment
|
||
|
|
*/
|
||
|
|
public function getAssessment()
|
||
|
|
{
|
||
|
|
return $this->assessment;
|
||
|
|
}
|
||
|
|
/**
|
||
|
|
* Identifies the language used by this document, corresponding to IETF BCP 47
|
||
|
|
* / RFC 5646.
|
||
|
|
*
|
||
|
|
* @param string $languageCode
|
||
|
|
*/
|
||
|
|
public function setLanguageCode($languageCode)
|
||
|
|
{
|
||
|
|
$this->languageCode = $languageCode;
|
||
|
|
}
|
||
|
|
/**
|
||
|
|
* @return string
|
||
|
|
*/
|
||
|
|
public function getLanguageCode()
|
||
|
|
{
|
||
|
|
return $this->languageCode;
|
||
|
|
}
|
||
|
|
/**
|
||
|
|
* A detailed description of this Vex.
|
||
|
|
*
|
||
|
|
* @param string $longDescription
|
||
|
|
*/
|
||
|
|
public function setLongDescription($longDescription)
|
||
|
|
{
|
||
|
|
$this->longDescription = $longDescription;
|
||
|
|
}
|
||
|
|
/**
|
||
|
|
* @return string
|
||
|
|
*/
|
||
|
|
public function getLongDescription()
|
||
|
|
{
|
||
|
|
return $this->longDescription;
|
||
|
|
}
|
||
|
|
/**
|
||
|
|
* The product affected by this vex.
|
||
|
|
*
|
||
|
|
* @param Product $product
|
||
|
|
*/
|
||
|
|
public function setProduct(Product $product)
|
||
|
|
{
|
||
|
|
$this->product = $product;
|
||
|
|
}
|
||
|
|
/**
|
||
|
|
* @return Product
|
||
|
|
*/
|
||
|
|
public function getProduct()
|
||
|
|
{
|
||
|
|
return $this->product;
|
||
|
|
}
|
||
|
|
/**
|
||
|
|
* Publisher details of this Note.
|
||
|
|
*
|
||
|
|
* @param Publisher $publisher
|
||
|
|
*/
|
||
|
|
public function setPublisher(Publisher $publisher)
|
||
|
|
{
|
||
|
|
$this->publisher = $publisher;
|
||
|
|
}
|
||
|
|
/**
|
||
|
|
* @return Publisher
|
||
|
|
*/
|
||
|
|
public function getPublisher()
|
||
|
|
{
|
||
|
|
return $this->publisher;
|
||
|
|
}
|
||
|
|
/**
|
||
|
|
* A one sentence description of this Vex.
|
||
|
|
*
|
||
|
|
* @param string $shortDescription
|
||
|
|
*/
|
||
|
|
public function setShortDescription($shortDescription)
|
||
|
|
{
|
||
|
|
$this->shortDescription = $shortDescription;
|
||
|
|
}
|
||
|
|
/**
|
||
|
|
* @return string
|
||
|
|
*/
|
||
|
|
public function getShortDescription()
|
||
|
|
{
|
||
|
|
return $this->shortDescription;
|
||
|
|
}
|
||
|
|
/**
|
||
|
|
* The title of the note. E.g. `Vex-Debian-11.4`
|
||
|
|
*
|
||
|
|
* @param string $title
|
||
|
|
*/
|
||
|
|
public function setTitle($title)
|
||
|
|
{
|
||
|
|
$this->title = $title;
|
||
|
|
}
|
||
|
|
/**
|
||
|
|
* @return string
|
||
|
|
*/
|
||
|
|
public function getTitle()
|
||
|
|
{
|
||
|
|
return $this->title;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
// Adding a class alias for backwards compatibility with the previous class name.
|
||
|
|
class_alias(VulnerabilityAssessmentNote::class, 'Google_Service_ContainerAnalysis_VulnerabilityAssessmentNote');
|