[f9c482b] | 1 | <?php
|
---|
| 2 | /*
|
---|
| 3 | * Copyright 2014 Google Inc.
|
---|
| 4 | *
|
---|
| 5 | * Licensed under the Apache License, Version 2.0 (the "License"); you may not
|
---|
| 6 | * use this file except in compliance with the License. You may obtain a copy of
|
---|
| 7 | * the License at
|
---|
| 8 | *
|
---|
| 9 | * http://www.apache.org/licenses/LICENSE-2.0
|
---|
| 10 | *
|
---|
| 11 | * Unless required by applicable law or agreed to in writing, software
|
---|
| 12 | * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
---|
| 13 | * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
---|
| 14 | * License for the specific language governing permissions and limitations under
|
---|
| 15 | * the License.
|
---|
| 16 | */
|
---|
| 17 |
|
---|
| 18 | namespace Google\Service\ContainerAnalysis;
|
---|
| 19 |
|
---|
| 20 | class FileOccurrence extends \Google\Collection
|
---|
| 21 | {
|
---|
| 22 | protected $collection_key = 'filesLicenseInfo';
|
---|
| 23 | public $attributions;
|
---|
| 24 | public $comment;
|
---|
| 25 | public $contributors;
|
---|
| 26 | public $copyright;
|
---|
| 27 | public $filesLicenseInfo;
|
---|
| 28 | public $id;
|
---|
| 29 | public $licenseComments;
|
---|
| 30 | public $licenseConcluded;
|
---|
| 31 | public $notice;
|
---|
| 32 |
|
---|
| 33 | public function setAttributions($attributions)
|
---|
| 34 | {
|
---|
| 35 | $this->attributions = $attributions;
|
---|
| 36 | }
|
---|
| 37 | public function getAttributions()
|
---|
| 38 | {
|
---|
| 39 | return $this->attributions;
|
---|
| 40 | }
|
---|
| 41 | public function setComment($comment)
|
---|
| 42 | {
|
---|
| 43 | $this->comment = $comment;
|
---|
| 44 | }
|
---|
| 45 | public function getComment()
|
---|
| 46 | {
|
---|
| 47 | return $this->comment;
|
---|
| 48 | }
|
---|
| 49 | public function setContributors($contributors)
|
---|
| 50 | {
|
---|
| 51 | $this->contributors = $contributors;
|
---|
| 52 | }
|
---|
| 53 | public function getContributors()
|
---|
| 54 | {
|
---|
| 55 | return $this->contributors;
|
---|
| 56 | }
|
---|
| 57 | public function setCopyright($copyright)
|
---|
| 58 | {
|
---|
| 59 | $this->copyright = $copyright;
|
---|
| 60 | }
|
---|
| 61 | public function getCopyright()
|
---|
| 62 | {
|
---|
| 63 | return $this->copyright;
|
---|
| 64 | }
|
---|
| 65 | public function setFilesLicenseInfo($filesLicenseInfo)
|
---|
| 66 | {
|
---|
| 67 | $this->filesLicenseInfo = $filesLicenseInfo;
|
---|
| 68 | }
|
---|
| 69 | public function getFilesLicenseInfo()
|
---|
| 70 | {
|
---|
| 71 | return $this->filesLicenseInfo;
|
---|
| 72 | }
|
---|
| 73 | public function setId($id)
|
---|
| 74 | {
|
---|
| 75 | $this->id = $id;
|
---|
| 76 | }
|
---|
| 77 | public function getId()
|
---|
| 78 | {
|
---|
| 79 | return $this->id;
|
---|
| 80 | }
|
---|
| 81 | public function setLicenseComments($licenseComments)
|
---|
| 82 | {
|
---|
| 83 | $this->licenseComments = $licenseComments;
|
---|
| 84 | }
|
---|
| 85 | public function getLicenseComments()
|
---|
| 86 | {
|
---|
| 87 | return $this->licenseComments;
|
---|
| 88 | }
|
---|
| 89 | public function setLicenseConcluded($licenseConcluded)
|
---|
| 90 | {
|
---|
| 91 | $this->licenseConcluded = $licenseConcluded;
|
---|
| 92 | }
|
---|
| 93 | public function getLicenseConcluded()
|
---|
| 94 | {
|
---|
| 95 | return $this->licenseConcluded;
|
---|
| 96 | }
|
---|
| 97 | public function setNotice($notice)
|
---|
| 98 | {
|
---|
| 99 | $this->notice = $notice;
|
---|
| 100 | }
|
---|
| 101 | public function getNotice()
|
---|
| 102 | {
|
---|
| 103 | return $this->notice;
|
---|
| 104 | }
|
---|
| 105 | }
|
---|
| 106 |
|
---|
| 107 | // Adding a class alias for backwards compatibility with the previous class name.
|
---|
| 108 | class_alias(FileOccurrence::class, 'Google_Service_ContainerAnalysis_FileOccurrence');
|
---|