Aucune description

Finding.php 4.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175
  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. class Google_Service_WebSecurityScanner_Finding extends Google_Model
  18. {
  19. public $body;
  20. public $description;
  21. public $finalUrl;
  22. public $findingType;
  23. public $frameUrl;
  24. public $fuzzedUrl;
  25. public $httpMethod;
  26. public $name;
  27. protected $outdatedLibraryType = 'Google_Service_WebSecurityScanner_OutdatedLibrary';
  28. protected $outdatedLibraryDataType = '';
  29. public $reproductionUrl;
  30. public $trackingId;
  31. protected $violatingResourceType = 'Google_Service_WebSecurityScanner_ViolatingResource';
  32. protected $violatingResourceDataType = '';
  33. protected $vulnerableParametersType = 'Google_Service_WebSecurityScanner_VulnerableParameters';
  34. protected $vulnerableParametersDataType = '';
  35. protected $xssType = 'Google_Service_WebSecurityScanner_Xss';
  36. protected $xssDataType = '';
  37. public function setBody($body)
  38. {
  39. $this->body = $body;
  40. }
  41. public function getBody()
  42. {
  43. return $this->body;
  44. }
  45. public function setDescription($description)
  46. {
  47. $this->description = $description;
  48. }
  49. public function getDescription()
  50. {
  51. return $this->description;
  52. }
  53. public function setFinalUrl($finalUrl)
  54. {
  55. $this->finalUrl = $finalUrl;
  56. }
  57. public function getFinalUrl()
  58. {
  59. return $this->finalUrl;
  60. }
  61. public function setFindingType($findingType)
  62. {
  63. $this->findingType = $findingType;
  64. }
  65. public function getFindingType()
  66. {
  67. return $this->findingType;
  68. }
  69. public function setFrameUrl($frameUrl)
  70. {
  71. $this->frameUrl = $frameUrl;
  72. }
  73. public function getFrameUrl()
  74. {
  75. return $this->frameUrl;
  76. }
  77. public function setFuzzedUrl($fuzzedUrl)
  78. {
  79. $this->fuzzedUrl = $fuzzedUrl;
  80. }
  81. public function getFuzzedUrl()
  82. {
  83. return $this->fuzzedUrl;
  84. }
  85. public function setHttpMethod($httpMethod)
  86. {
  87. $this->httpMethod = $httpMethod;
  88. }
  89. public function getHttpMethod()
  90. {
  91. return $this->httpMethod;
  92. }
  93. public function setName($name)
  94. {
  95. $this->name = $name;
  96. }
  97. public function getName()
  98. {
  99. return $this->name;
  100. }
  101. /**
  102. * @param Google_Service_WebSecurityScanner_OutdatedLibrary
  103. */
  104. public function setOutdatedLibrary(Google_Service_WebSecurityScanner_OutdatedLibrary $outdatedLibrary)
  105. {
  106. $this->outdatedLibrary = $outdatedLibrary;
  107. }
  108. /**
  109. * @return Google_Service_WebSecurityScanner_OutdatedLibrary
  110. */
  111. public function getOutdatedLibrary()
  112. {
  113. return $this->outdatedLibrary;
  114. }
  115. public function setReproductionUrl($reproductionUrl)
  116. {
  117. $this->reproductionUrl = $reproductionUrl;
  118. }
  119. public function getReproductionUrl()
  120. {
  121. return $this->reproductionUrl;
  122. }
  123. public function setTrackingId($trackingId)
  124. {
  125. $this->trackingId = $trackingId;
  126. }
  127. public function getTrackingId()
  128. {
  129. return $this->trackingId;
  130. }
  131. /**
  132. * @param Google_Service_WebSecurityScanner_ViolatingResource
  133. */
  134. public function setViolatingResource(Google_Service_WebSecurityScanner_ViolatingResource $violatingResource)
  135. {
  136. $this->violatingResource = $violatingResource;
  137. }
  138. /**
  139. * @return Google_Service_WebSecurityScanner_ViolatingResource
  140. */
  141. public function getViolatingResource()
  142. {
  143. return $this->violatingResource;
  144. }
  145. /**
  146. * @param Google_Service_WebSecurityScanner_VulnerableParameters
  147. */
  148. public function setVulnerableParameters(Google_Service_WebSecurityScanner_VulnerableParameters $vulnerableParameters)
  149. {
  150. $this->vulnerableParameters = $vulnerableParameters;
  151. }
  152. /**
  153. * @return Google_Service_WebSecurityScanner_VulnerableParameters
  154. */
  155. public function getVulnerableParameters()
  156. {
  157. return $this->vulnerableParameters;
  158. }
  159. /**
  160. * @param Google_Service_WebSecurityScanner_Xss
  161. */
  162. public function setXss(Google_Service_WebSecurityScanner_Xss $xss)
  163. {
  164. $this->xss = $xss;
  165. }
  166. /**
  167. * @return Google_Service_WebSecurityScanner_Xss
  168. */
  169. public function getXss()
  170. {
  171. return $this->xss;
  172. }
  173. }