187 Public method to get the SBOM configuration data. |
187 Public method to get the SBOM configuration data. |
188 |
188 |
189 @return tuple containing the input source, the input file name, the |
189 @return tuple containing the input source, the input file name, the |
190 file format, the schema version, the path of the SBOM file to be |
190 file format, the schema version, the path of the SBOM file to be |
191 written, a flag indicating to include vulnerability information, |
191 written, a flag indicating to include vulnerability information, |
192 a flag indicating to include dependency information and a |
192 a flag indicating to include dependency information, a flag indicating |
193 dictionary containing the SBOM meta data |
193 to generate readable output and a dictionary containing the SBOM meta data |
194 @rtype tuple of (str, str, str, str, str, bool, bool, dict) |
194 @rtype tuple of (str, str, str, str, str, bool, bool, bool, dict) |
195 """ |
195 """ |
196 if self.environmentButton.isChecked(): |
196 if self.environmentButton.isChecked(): |
197 inputSource = "environment" |
197 inputSource = "environment" |
198 inputFile = None |
198 inputFile = None |
199 elif self.pipenvButton.isChecked(): |
199 elif self.pipenvButton.isChecked(): |