From ea1fb191a94373bafeac04d19d33206f534689a3 Mon Sep 17 00:00:00 2001 From: Jeremy Long Date: Sun, 3 Mar 2013 08:57:38 -0500 Subject: [PATCH] change in namespace as this is now an OWASP project Former-commit-id: dc00f98a142bef2560d90f3b851844f352fbf262 --- pom.xml | 14 +- src/main/config/checkstyle-suppressions.xml | 6 +- .../dependencycheck/App.java | 8 +- .../dependencycheck/Engine.java | 20 +- .../analyzer/AbstractAnalyzer.java | 2 +- .../analyzer/AnalysisException.java | 2 +- .../analyzer/AnalysisPhase.java | 2 +- .../dependencycheck/analyzer/Analyzer.java | 6 +- .../analyzer/AnalyzerService.java | 2 +- .../analyzer/FileNameAnalyzer.java | 8 +- .../dependencycheck/analyzer/JarAnalyzer.java | 22 +- .../analyzer/JavaScriptAnalyzer.java | 126 +++++ .../analyzer/SpringCleaningAnalyzer.java | 8 +- .../analyzer/package-info.java | 6 +- .../analyzer/pom/generated/Activation.java | 64 +-- .../pom/generated/ActivationFile.java | 40 +- .../analyzer/pom/generated/ActivationOS.java | 56 +- .../pom/generated/ActivationProperty.java | 40 +- .../analyzer/pom/generated/Build.java | 232 ++++----- .../analyzer/pom/generated/BuildBase.java | 164 +++--- .../analyzer/pom/generated/CiManagement.java | 64 +-- .../analyzer/pom/generated/Contributor.java | 128 ++--- .../analyzer/pom/generated/Dependency.java | 112 ++-- .../pom/generated/DependencyManagement.java | 52 +- .../pom/generated/DeploymentRepository.java | 64 +-- .../analyzer/pom/generated/Developer.java | 136 ++--- .../pom/generated/DistributionManagement.java | 72 +-- .../analyzer/pom/generated/Exclusion.java | 36 +- .../analyzer/pom/generated/Extension.java | 44 +- .../pom/generated/IssueManagement.java | 40 +- .../analyzer/pom/generated/License.java | 56 +- .../analyzer/pom/generated/MailingList.java | 92 ++-- .../analyzer/pom/generated/Model.java | 484 +++++++++--------- .../analyzer/pom/generated/Notifier.java | 100 ++-- .../analyzer/pom/generated/ObjectFactory.java | 206 ++++---- .../analyzer/pom/generated/Organization.java | 36 +- .../analyzer/pom/generated/Parent.java | 52 +- .../analyzer/pom/generated/Plugin.java | 172 +++---- .../pom/generated/PluginExecution.java | 100 ++-- .../pom/generated/PluginManagement.java | 52 +- .../analyzer/pom/generated/Prerequisites.java | 28 +- .../analyzer/pom/generated/Profile.java | 240 ++++----- .../analyzer/pom/generated/Relocation.java | 52 +- .../analyzer/pom/generated/ReportPlugin.java | 108 ++-- .../analyzer/pom/generated/ReportSet.java | 92 ++-- .../analyzer/pom/generated/Reporting.java | 64 +-- .../analyzer/pom/generated/Repository.java | 72 +-- .../pom/generated/RepositoryPolicy.java | 44 +- .../analyzer/pom/generated/Resource.java | 104 ++-- .../analyzer/pom/generated/Scm.java | 52 +- .../analyzer/pom/generated/Site.java | 48 +- .../analyzer/pom/generated/package-info.java | 10 +- .../data/CachedWebDataSource.java | 2 +- .../dependencycheck/data/UpdateException.java | 2 +- .../dependencycheck/data/UpdateService.java | 2 +- .../dependencycheck/data/cpe/CPEAnalyzer.java | 20 +- .../dependencycheck/data/cpe/Entry.java | 2 +- .../dependencycheck/data/cpe/Fields.java | 2 +- .../dependencycheck/data/cpe/Index.java | 14 +- .../data/cpe/package-info.java | 4 +- .../dependencycheck/data/cwe/CweDB.java | 2 +- .../dependencycheck/data/cwe/CweHandler.java | 2 +- .../data/cwe/package-info.java | 4 +- .../data/lucene/AbstractIndex.java | 2 +- .../data/lucene/DependencySimilarity.java | 2 +- .../data/lucene/FieldAnalyzer.java | 2 +- .../data/lucene/LuceneUtils.java | 2 +- .../data/lucene/SearchFieldAnalyzer.java | 2 +- .../data/lucene/SearchVersionAnalyzer.java | 2 +- .../lucene/TokenPairConcatenatingFilter.java | 2 +- .../data/lucene/VersionAnalyzer.java | 2 +- .../data/lucene/VersionTokenizingFilter.java | 2 +- .../data/lucene/package-info.java | 4 +- .../data/nvdcve/CorruptDatabaseException.java | 2 +- .../dependencycheck/data/nvdcve/CveDB.java | 14 +- .../data/nvdcve/DatabaseException.java | 2 +- .../data/nvdcve/NvdCveAnalyzer.java | 16 +- .../data/nvdcve/package-info.java | 4 +- .../data/nvdcve/xml/DatabaseUpdater.java | 26 +- .../data/nvdcve/xml/InvalidDataException.java | 4 +- .../data/nvdcve/xml/NvdCve12Handler.java | 4 +- .../data/nvdcve/xml/NvdCve20Handler.java | 16 +- .../data/nvdcve/xml/package-info.java | 4 +- .../dependencycheck/data/package-info.java | 4 +- .../dependency/Dependency.java | 6 +- .../dependencycheck/dependency/Evidence.java | 2 +- .../dependency/EvidenceCollection.java | 4 +- .../dependency/Identifier.java | 2 +- .../dependencycheck/dependency/Reference.java | 4 +- .../dependency/Vulnerability.java | 4 +- .../dependency/VulnerabilityComparator.java | 2 +- .../dependency/VulnerableSoftware.java | 4 +- .../dependency/package-info.java | 4 +- .../dependencycheck/package-info.java | 4 +- .../reporting/ReportGenerator.java | 8 +- .../reporting/package-info.java | 4 +- .../dependencycheck/utils/Checksum.java | 2 +- .../dependencycheck/utils/CliParser.java | 5 +- .../utils/DownloadFailedException.java | 2 +- .../dependencycheck/utils/Downloader.java | 2 +- .../dependencycheck/utils/FileUtils.java | 2 +- .../dependencycheck/utils/Filter.java | 2 +- .../utils/InvalidSettingException.java | 2 +- .../utils/NonClosingStream.java | 2 +- .../dependencycheck/utils/Settings.java | 2 +- .../dependencycheck/utils/package-info.java | 6 +- ...desecure.dependencycheck.analyzer.Analyzer | 5 - ...e.dependencycheck.data.CachedWebDataSource | 1 - ...rg.owasp.dependencycheck.analyzer.Analyzer | 5 + ...p.dependencycheck.data.CachedWebDataSource | 1 + .../resources/configuration/log.properties | 2 +- .../resources/schema/pom/generateBindings.bat | 2 +- .../resources/schema/pom/generateBindings.sh | 2 +- src/main/resources/templates/HtmlReport.vsl | 2 +- src/main/resources/templates/XmlReport.vsl | 2 +- .../dependencycheck/data/cpe/EntryTest.java | 47 -- .../xml/DatabaseUpdaterIntegrationTest.java | 48 -- .../EngineIntegrationTest.java | 28 +- .../analyzer/AbstractAnalyzerTest.java | 29 +- .../analyzer/AnalyzerServiceTest.java | 31 +- .../analyzer/FileNameAnalyzerTest.java | 31 +- .../analyzer/JarAnalyzerTest.java | 31 +- .../data/cpe/BaseIndexTestCase.java | 61 ++- .../data/cpe/CPEAnalyzerTest.java | 44 +- .../dependencycheck/data/cpe/EntryTest.java | 67 +++ .../data/cpe/IndexIntegrationTest.java | 22 +- .../dependencycheck/data/cpe/IndexTest.java | 32 +- .../dependencycheck/data/cwe/CweDBTest.java | 28 +- .../data/lucene/FieldAnalyzerTest.java | 26 +- .../data/lucene/LuceneUtilsTest.java | 43 +- .../data/nvdcve/BaseDBTestCase.java | 24 +- .../xml/DatabaseUpdaterIntegrationTest.java | 62 +++ .../nvdcve/xml/NvdCve_1_2_HandlerTest.java | 23 +- .../nvdcve/xml/NvdCve_2_0_HandlerTest.java | 21 +- .../dependency/DependencyTest.java | 49 +- .../reporting/ReportGeneratorTest.java | 23 +- .../dependencycheck/utils/ChecksumTest.java | 40 +- .../dependencycheck/utils/CliParserTest.java | 43 +- .../utils/DownloaderIntegrationTest.java | 29 +- .../dependencycheck/utils/FilterTest.java | 23 +- .../dependencycheck/utils/SettingsTest.java | 43 +- 141 files changed, 2729 insertions(+), 2330 deletions(-) rename src/main/java/org/{codesecure => owasp}/dependencycheck/App.java (96%) rename src/main/java/org/{codesecure => owasp}/dependencycheck/Engine.java (93%) rename src/main/java/org/{codesecure => owasp}/dependencycheck/analyzer/AbstractAnalyzer.java (96%) rename src/main/java/org/{codesecure => owasp}/dependencycheck/analyzer/AnalysisException.java (97%) rename src/main/java/org/{codesecure => owasp}/dependencycheck/analyzer/AnalysisPhase.java (96%) rename src/main/java/org/{codesecure => owasp}/dependencycheck/analyzer/Analyzer.java (95%) rename src/main/java/org/{codesecure => owasp}/dependencycheck/analyzer/AnalyzerService.java (97%) rename src/main/java/org/{codesecure => owasp}/dependencycheck/analyzer/FileNameAnalyzer.java (94%) rename src/main/java/org/{codesecure => owasp}/dependencycheck/analyzer/JarAnalyzer.java (97%) create mode 100644 src/main/java/org/owasp/dependencycheck/analyzer/JavaScriptAnalyzer.java rename src/main/java/org/{codesecure => owasp}/dependencycheck/analyzer/SpringCleaningAnalyzer.java (96%) rename src/main/java/org/{codesecure => owasp}/dependencycheck/analyzer/package-info.java (71%) rename src/main/java/org/{codesecure => owasp}/dependencycheck/analyzer/pom/generated/Activation.java (93%) rename src/main/java/org/{codesecure => owasp}/dependencycheck/analyzer/pom/generated/ActivationFile.java (91%) rename src/main/java/org/{codesecure => owasp}/dependencycheck/analyzer/pom/generated/ActivationOS.java (92%) rename src/main/java/org/{codesecure => owasp}/dependencycheck/analyzer/pom/generated/ActivationProperty.java (90%) rename src/main/java/org/{codesecure => owasp}/dependencycheck/analyzer/pom/generated/Build.java (95%) rename src/main/java/org/{codesecure => owasp}/dependencycheck/analyzer/pom/generated/BuildBase.java (95%) rename src/main/java/org/{codesecure => owasp}/dependencycheck/analyzer/pom/generated/CiManagement.java (93%) rename src/main/java/org/{codesecure => owasp}/dependencycheck/analyzer/pom/generated/Contributor.java (94%) rename src/main/java/org/{codesecure => owasp}/dependencycheck/analyzer/pom/generated/Dependency.java (94%) rename src/main/java/org/{codesecure => owasp}/dependencycheck/analyzer/pom/generated/DependencyManagement.java (92%) rename src/main/java/org/{codesecure => owasp}/dependencycheck/analyzer/pom/generated/DeploymentRepository.java (93%) rename src/main/java/org/{codesecure => owasp}/dependencycheck/analyzer/pom/generated/Developer.java (94%) rename src/main/java/org/{codesecure => owasp}/dependencycheck/analyzer/pom/generated/DistributionManagement.java (93%) rename src/main/java/org/{codesecure => owasp}/dependencycheck/analyzer/pom/generated/Exclusion.java (90%) rename src/main/java/org/{codesecure => owasp}/dependencycheck/analyzer/pom/generated/Extension.java (91%) rename src/main/java/org/{codesecure => owasp}/dependencycheck/analyzer/pom/generated/IssueManagement.java (90%) rename src/main/java/org/{codesecure => owasp}/dependencycheck/analyzer/pom/generated/License.java (92%) rename src/main/java/org/{codesecure => owasp}/dependencycheck/analyzer/pom/generated/MailingList.java (94%) rename src/main/java/org/{codesecure => owasp}/dependencycheck/analyzer/pom/generated/Model.java (95%) rename src/main/java/org/{codesecure => owasp}/dependencycheck/analyzer/pom/generated/Notifier.java (94%) rename src/main/java/org/{codesecure => owasp}/dependencycheck/analyzer/pom/generated/ObjectFactory.java (91%) rename src/main/java/org/{codesecure => owasp}/dependencycheck/analyzer/pom/generated/Organization.java (90%) rename src/main/java/org/{codesecure => owasp}/dependencycheck/analyzer/pom/generated/Parent.java (92%) rename src/main/java/org/{codesecure => owasp}/dependencycheck/analyzer/pom/generated/Plugin.java (95%) rename src/main/java/org/{codesecure => owasp}/dependencycheck/analyzer/pom/generated/PluginExecution.java (94%) rename src/main/java/org/{codesecure => owasp}/dependencycheck/analyzer/pom/generated/PluginManagement.java (92%) rename src/main/java/org/{codesecure => owasp}/dependencycheck/analyzer/pom/generated/Prerequisites.java (88%) rename src/main/java/org/{codesecure => owasp}/dependencycheck/analyzer/pom/generated/Profile.java (95%) rename src/main/java/org/{codesecure => owasp}/dependencycheck/analyzer/pom/generated/Relocation.java (92%) rename src/main/java/org/{codesecure => owasp}/dependencycheck/analyzer/pom/generated/ReportPlugin.java (94%) rename src/main/java/org/{codesecure => owasp}/dependencycheck/analyzer/pom/generated/ReportSet.java (94%) rename src/main/java/org/{codesecure => owasp}/dependencycheck/analyzer/pom/generated/Reporting.java (93%) rename src/main/java/org/{codesecure => owasp}/dependencycheck/analyzer/pom/generated/Repository.java (93%) rename src/main/java/org/{codesecure => owasp}/dependencycheck/analyzer/pom/generated/RepositoryPolicy.java (92%) rename src/main/java/org/{codesecure => owasp}/dependencycheck/analyzer/pom/generated/Resource.java (94%) rename src/main/java/org/{codesecure => owasp}/dependencycheck/analyzer/pom/generated/Scm.java (92%) rename src/main/java/org/{codesecure => owasp}/dependencycheck/analyzer/pom/generated/Site.java (91%) rename src/main/java/org/{codesecure => owasp}/dependencycheck/analyzer/pom/generated/package-info.java (62%) rename src/main/java/org/{codesecure => owasp}/dependencycheck/data/CachedWebDataSource.java (96%) rename src/main/java/org/{codesecure => owasp}/dependencycheck/data/UpdateException.java (97%) rename src/main/java/org/{codesecure => owasp}/dependencycheck/data/UpdateService.java (97%) rename src/main/java/org/{codesecure => owasp}/dependencycheck/data/cpe/CPEAnalyzer.java (96%) rename src/main/java/org/{codesecure => owasp}/dependencycheck/data/cpe/Entry.java (99%) rename src/main/java/org/{codesecure => owasp}/dependencycheck/data/cpe/Fields.java (96%) rename src/main/java/org/{codesecure => owasp}/dependencycheck/data/cpe/Index.java (94%) rename src/main/java/org/{codesecure => owasp}/dependencycheck/data/cpe/package-info.java (54%) rename src/main/java/org/{codesecure => owasp}/dependencycheck/data/cwe/CweDB.java (98%) rename src/main/java/org/{codesecure => owasp}/dependencycheck/data/cwe/CweHandler.java (97%) rename src/main/java/org/{codesecure => owasp}/dependencycheck/data/cwe/package-info.java (54%) rename src/main/java/org/{codesecure => owasp}/dependencycheck/data/lucene/AbstractIndex.java (99%) rename src/main/java/org/{codesecure => owasp}/dependencycheck/data/lucene/DependencySimilarity.java (96%) rename src/main/java/org/{codesecure => owasp}/dependencycheck/data/lucene/FieldAnalyzer.java (98%) rename src/main/java/org/{codesecure => owasp}/dependencycheck/data/lucene/LuceneUtils.java (98%) rename src/main/java/org/{codesecure => owasp}/dependencycheck/data/lucene/SearchFieldAnalyzer.java (98%) rename src/main/java/org/{codesecure => owasp}/dependencycheck/data/lucene/SearchVersionAnalyzer.java (98%) rename src/main/java/org/{codesecure => owasp}/dependencycheck/data/lucene/TokenPairConcatenatingFilter.java (98%) rename src/main/java/org/{codesecure => owasp}/dependencycheck/data/lucene/VersionAnalyzer.java (97%) rename src/main/java/org/{codesecure => owasp}/dependencycheck/data/lucene/VersionTokenizingFilter.java (98%) rename src/main/java/org/{codesecure => owasp}/dependencycheck/data/lucene/package-info.java (53%) rename src/main/java/org/{codesecure => owasp}/dependencycheck/data/nvdcve/CorruptDatabaseException.java (96%) rename src/main/java/org/{codesecure => owasp}/dependencycheck/data/nvdcve/CveDB.java (97%) rename src/main/java/org/{codesecure => owasp}/dependencycheck/data/nvdcve/DatabaseException.java (96%) rename src/main/java/org/{codesecure => owasp}/dependencycheck/data/nvdcve/NvdCveAnalyzer.java (89%) rename src/main/java/org/{codesecure => owasp}/dependencycheck/data/nvdcve/package-info.java (52%) rename src/main/java/org/{codesecure => owasp}/dependencycheck/data/nvdcve/xml/DatabaseUpdater.java (96%) rename src/main/java/org/{codesecure => owasp}/dependencycheck/data/nvdcve/xml/InvalidDataException.java (93%) rename src/main/java/org/{codesecure => owasp}/dependencycheck/data/nvdcve/xml/NvdCve12Handler.java (98%) rename src/main/java/org/{codesecure => owasp}/dependencycheck/data/nvdcve/xml/NvdCve20Handler.java (96%) rename src/main/java/org/{codesecure => owasp}/dependencycheck/data/nvdcve/xml/package-info.java (80%) rename src/main/java/org/{codesecure => owasp}/dependencycheck/data/package-info.java (56%) rename src/main/java/org/{codesecure => owasp}/dependencycheck/dependency/Dependency.java (98%) rename src/main/java/org/{codesecure => owasp}/dependencycheck/dependency/Evidence.java (99%) rename src/main/java/org/{codesecure => owasp}/dependencycheck/dependency/EvidenceCollection.java (98%) rename src/main/java/org/{codesecure => owasp}/dependencycheck/dependency/Identifier.java (98%) rename src/main/java/org/{codesecure => owasp}/dependencycheck/dependency/Reference.java (97%) rename src/main/java/org/{codesecure => owasp}/dependencycheck/dependency/Vulnerability.java (99%) rename src/main/java/org/{codesecure => owasp}/dependencycheck/dependency/VulnerabilityComparator.java (96%) rename src/main/java/org/{codesecure => owasp}/dependencycheck/dependency/VulnerableSoftware.java (96%) rename src/main/java/org/{codesecure => owasp}/dependencycheck/dependency/package-info.java (51%) rename src/main/java/org/{codesecure => owasp}/dependencycheck/package-info.java (59%) rename src/main/java/org/{codesecure => owasp}/dependencycheck/reporting/ReportGenerator.java (97%) rename src/main/java/org/{codesecure => owasp}/dependencycheck/reporting/package-info.java (51%) rename src/main/java/org/{codesecure => owasp}/dependencycheck/utils/Checksum.java (98%) rename src/main/java/org/{codesecure => owasp}/dependencycheck/utils/CliParser.java (99%) rename src/main/java/org/{codesecure => owasp}/dependencycheck/utils/DownloadFailedException.java (97%) rename src/main/java/org/{codesecure => owasp}/dependencycheck/utils/Downloader.java (99%) rename src/main/java/org/{codesecure => owasp}/dependencycheck/utils/FileUtils.java (97%) rename src/main/java/org/{codesecure => owasp}/dependencycheck/utils/Filter.java (97%) rename src/main/java/org/{codesecure => owasp}/dependencycheck/utils/InvalidSettingException.java (97%) rename src/main/java/org/{codesecure => owasp}/dependencycheck/utils/NonClosingStream.java (96%) rename src/main/java/org/{codesecure => owasp}/dependencycheck/utils/Settings.java (99%) rename src/main/java/org/{codesecure => owasp}/dependencycheck/utils/package-info.java (58%) delete mode 100644 src/main/resources/META-INF/services/org.codesecure.dependencycheck.analyzer.Analyzer delete mode 100644 src/main/resources/META-INF/services/org.codesecure.dependencycheck.data.CachedWebDataSource create mode 100644 src/main/resources/META-INF/services/org.owasp.dependencycheck.analyzer.Analyzer create mode 100644 src/main/resources/META-INF/services/org.owasp.dependencycheck.data.CachedWebDataSource delete mode 100644 src/test/java/org/codesecure/dependencycheck/data/cpe/EntryTest.java delete mode 100644 src/test/java/org/codesecure/dependencycheck/data/nvdcve/xml/DatabaseUpdaterIntegrationTest.java rename src/test/java/org/{codesecure => owasp}/dependencycheck/EngineIntegrationTest.java (52%) rename src/test/java/org/{codesecure => owasp}/dependencycheck/analyzer/AbstractAnalyzerTest.java (51%) rename src/test/java/org/{codesecure => owasp}/dependencycheck/analyzer/AnalyzerServiceTest.java (56%) rename src/test/java/org/{codesecure => owasp}/dependencycheck/analyzer/FileNameAnalyzerTest.java (75%) rename src/test/java/org/{codesecure => owasp}/dependencycheck/analyzer/JarAnalyzerTest.java (82%) rename src/test/java/org/{codesecure => owasp}/dependencycheck/data/cpe/BaseIndexTestCase.java (72%) rename src/test/java/org/{codesecure => owasp}/dependencycheck/data/cpe/CPEAnalyzerTest.java (83%) create mode 100644 src/test/java/org/owasp/dependencycheck/data/cpe/EntryTest.java rename src/test/java/org/{codesecure => owasp}/dependencycheck/data/cpe/IndexIntegrationTest.java (61%) rename src/test/java/org/{codesecure => owasp}/dependencycheck/data/cpe/IndexTest.java (52%) rename src/test/java/org/{codesecure => owasp}/dependencycheck/data/cwe/CweDBTest.java (67%) rename src/test/java/org/{codesecure => owasp}/dependencycheck/data/lucene/FieldAnalyzerTest.java (96%) rename src/test/java/org/{codesecure => owasp}/dependencycheck/data/lucene/LuceneUtilsTest.java (66%) rename src/test/java/org/{codesecure => owasp}/dependencycheck/data/nvdcve/BaseDBTestCase.java (83%) create mode 100644 src/test/java/org/owasp/dependencycheck/data/nvdcve/xml/DatabaseUpdaterIntegrationTest.java rename src/test/java/org/{codesecure => owasp}/dependencycheck/data/nvdcve/xml/NvdCve_1_2_HandlerTest.java (58%) rename src/test/java/org/{codesecure => owasp}/dependencycheck/data/nvdcve/xml/NvdCve_2_0_HandlerTest.java (61%) rename src/test/java/org/{codesecure => owasp}/dependencycheck/dependency/DependencyTest.java (88%) rename src/test/java/org/{codesecure => owasp}/dependencycheck/reporting/ReportGeneratorTest.java (77%) rename src/test/java/org/{codesecure => owasp}/dependencycheck/utils/ChecksumTest.java (78%) rename src/test/java/org/{codesecure => owasp}/dependencycheck/utils/CliParserTest.java (86%) rename src/test/java/org/{codesecure => owasp}/dependencycheck/utils/DownloaderIntegrationTest.java (64%) rename src/test/java/org/{codesecure => owasp}/dependencycheck/utils/FilterTest.java (68%) rename src/test/java/org/{codesecure => owasp}/dependencycheck/utils/SettingsTest.java (74%) diff --git a/pom.xml b/pom.xml index 1d792e51e..d0d07c946 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ along with DependencyCheck. If not, see . 4.0.0 - org.codesecure + org.owasp.dependency-check dependency-check 0.2.6.0 jar @@ -30,15 +30,15 @@ along with DependencyCheck. If not, see . DependencyCheck is a utility that attempts to detect publically disclosed vulnerabilities contained within project dependencies. It does this by determining if there is a Common Platform Enumeration (CPE) identifier for a given dependency. If found, it will generate a report linking to the associated CVE entries. 2012 - Jeremy Long + owasp Jeremy Long jeremy.long@gmail.com - Codesecure - http://codesecure.blogspot.com + owasp + https://www.owasp.org/index.php/OWASP_Dependency_Check architect developer @@ -137,7 +137,7 @@ along with DependencyCheck. If not, see . - org.codesecure.dependencycheck.App + org.owasp.dependencycheck.App true true lib/ @@ -179,12 +179,12 @@ along with DependencyCheck. If not, see . 0 - org.codesecure.dependencycheck.data.cpe.Fields + org.owasp.dependencycheck.data.cpe.Fields 0 0 - org.codesecure.dependencycheck.App + org.owasp.dependencycheck.App 0 0 diff --git a/src/main/config/checkstyle-suppressions.xml b/src/main/config/checkstyle-suppressions.xml index 0287d70d1..33b732bef 100644 --- a/src/main/config/checkstyle-suppressions.xml +++ b/src/main/config/checkstyle-suppressions.xml @@ -6,10 +6,10 @@ - - + + \ No newline at end of file diff --git a/src/main/java/org/codesecure/dependencycheck/App.java b/src/main/java/org/owasp/dependencycheck/App.java similarity index 96% rename from src/main/java/org/codesecure/dependencycheck/App.java rename to src/main/java/org/owasp/dependencycheck/App.java index 66d8efcbb..070cef936 100644 --- a/src/main/java/org/codesecure/dependencycheck/App.java +++ b/src/main/java/org/owasp/dependencycheck/App.java @@ -16,7 +16,7 @@ * * Copyright (c) 2012 Jeremy Long. All Rights Reserved. */ -package org.codesecure.dependencycheck; +package org.owasp.dependencycheck; import java.io.FileNotFoundException; import java.io.IOException; @@ -26,9 +26,9 @@ import java.util.logging.Level; import java.util.logging.LogManager; import java.util.logging.Logger; import org.apache.commons.cli.ParseException; -import org.codesecure.dependencycheck.reporting.ReportGenerator; -import org.codesecure.dependencycheck.dependency.Dependency; -import org.codesecure.dependencycheck.utils.CliParser; +import org.owasp.dependencycheck.reporting.ReportGenerator; +import org.owasp.dependencycheck.dependency.Dependency; +import org.owasp.dependencycheck.utils.CliParser; /* * This file is part of App. diff --git a/src/main/java/org/codesecure/dependencycheck/Engine.java b/src/main/java/org/owasp/dependencycheck/Engine.java similarity index 93% rename from src/main/java/org/codesecure/dependencycheck/Engine.java rename to src/main/java/org/owasp/dependencycheck/Engine.java index c45b14680..f60a27051 100644 --- a/src/main/java/org/codesecure/dependencycheck/Engine.java +++ b/src/main/java/org/owasp/dependencycheck/Engine.java @@ -16,7 +16,7 @@ * * Copyright (c) 2012 Jeremy Long. All Rights Reserved. */ -package org.codesecure.dependencycheck; +package org.owasp.dependencycheck; import java.util.EnumMap; import java.io.File; @@ -27,15 +27,15 @@ import java.util.List; import java.util.Set; import java.util.logging.Level; import java.util.logging.Logger; -import org.codesecure.dependencycheck.analyzer.AnalysisException; -import org.codesecure.dependencycheck.analyzer.AnalysisPhase; -import org.codesecure.dependencycheck.analyzer.Analyzer; -import org.codesecure.dependencycheck.analyzer.AnalyzerService; -import org.codesecure.dependencycheck.data.CachedWebDataSource; -import org.codesecure.dependencycheck.data.UpdateException; -import org.codesecure.dependencycheck.data.UpdateService; -import org.codesecure.dependencycheck.dependency.Dependency; -import org.codesecure.dependencycheck.utils.FileUtils; +import org.owasp.dependencycheck.analyzer.AnalysisException; +import org.owasp.dependencycheck.analyzer.AnalysisPhase; +import org.owasp.dependencycheck.analyzer.Analyzer; +import org.owasp.dependencycheck.analyzer.AnalyzerService; +import org.owasp.dependencycheck.data.CachedWebDataSource; +import org.owasp.dependencycheck.data.UpdateException; +import org.owasp.dependencycheck.data.UpdateService; +import org.owasp.dependencycheck.dependency.Dependency; +import org.owasp.dependencycheck.utils.FileUtils; /** * Scans files, directories, etc. for Dependencies. Analyzers are loaded and diff --git a/src/main/java/org/codesecure/dependencycheck/analyzer/AbstractAnalyzer.java b/src/main/java/org/owasp/dependencycheck/analyzer/AbstractAnalyzer.java similarity index 96% rename from src/main/java/org/codesecure/dependencycheck/analyzer/AbstractAnalyzer.java rename to src/main/java/org/owasp/dependencycheck/analyzer/AbstractAnalyzer.java index e9230f4c7..5e2df6ecc 100644 --- a/src/main/java/org/codesecure/dependencycheck/analyzer/AbstractAnalyzer.java +++ b/src/main/java/org/owasp/dependencycheck/analyzer/AbstractAnalyzer.java @@ -16,7 +16,7 @@ * * Copyright (c) 2012 Jeremy Long. All Rights Reserved. */ -package org.codesecure.dependencycheck.analyzer; +package org.owasp.dependencycheck.analyzer; import java.util.Collections; import java.util.HashSet; diff --git a/src/main/java/org/codesecure/dependencycheck/analyzer/AnalysisException.java b/src/main/java/org/owasp/dependencycheck/analyzer/AnalysisException.java similarity index 97% rename from src/main/java/org/codesecure/dependencycheck/analyzer/AnalysisException.java rename to src/main/java/org/owasp/dependencycheck/analyzer/AnalysisException.java index 0c1f539bf..e011077b9 100644 --- a/src/main/java/org/codesecure/dependencycheck/analyzer/AnalysisException.java +++ b/src/main/java/org/owasp/dependencycheck/analyzer/AnalysisException.java @@ -16,7 +16,7 @@ * * Copyright (c) 2012 Jeremy Long. All Rights Reserved. */ -package org.codesecure.dependencycheck.analyzer; +package org.owasp.dependencycheck.analyzer; /** * An exception thrown when the analysis of a dependency fails. diff --git a/src/main/java/org/codesecure/dependencycheck/analyzer/AnalysisPhase.java b/src/main/java/org/owasp/dependencycheck/analyzer/AnalysisPhase.java similarity index 96% rename from src/main/java/org/codesecure/dependencycheck/analyzer/AnalysisPhase.java rename to src/main/java/org/owasp/dependencycheck/analyzer/AnalysisPhase.java index 84fd663cd..e58724d2c 100644 --- a/src/main/java/org/codesecure/dependencycheck/analyzer/AnalysisPhase.java +++ b/src/main/java/org/owasp/dependencycheck/analyzer/AnalysisPhase.java @@ -16,7 +16,7 @@ * * Copyright (c) 2012 Jeremy Long. All Rights Reserved. */ -package org.codesecure.dependencycheck.analyzer; +package org.owasp.dependencycheck.analyzer; /** * An enumeration defining the phases of analysis. diff --git a/src/main/java/org/codesecure/dependencycheck/analyzer/Analyzer.java b/src/main/java/org/owasp/dependencycheck/analyzer/Analyzer.java similarity index 95% rename from src/main/java/org/codesecure/dependencycheck/analyzer/Analyzer.java rename to src/main/java/org/owasp/dependencycheck/analyzer/Analyzer.java index a463be5a1..ad594ffdb 100644 --- a/src/main/java/org/codesecure/dependencycheck/analyzer/Analyzer.java +++ b/src/main/java/org/owasp/dependencycheck/analyzer/Analyzer.java @@ -16,11 +16,11 @@ * * Copyright (c) 2012 Jeremy Long. All Rights Reserved. */ -package org.codesecure.dependencycheck.analyzer; +package org.owasp.dependencycheck.analyzer; import java.util.Set; -import org.codesecure.dependencycheck.Engine; -import org.codesecure.dependencycheck.dependency.Dependency; +import org.owasp.dependencycheck.Engine; +import org.owasp.dependencycheck.dependency.Dependency; /** * An interface that defines an Analyzer that is used to identify Dependencies. diff --git a/src/main/java/org/codesecure/dependencycheck/analyzer/AnalyzerService.java b/src/main/java/org/owasp/dependencycheck/analyzer/AnalyzerService.java similarity index 97% rename from src/main/java/org/codesecure/dependencycheck/analyzer/AnalyzerService.java rename to src/main/java/org/owasp/dependencycheck/analyzer/AnalyzerService.java index 13e2b5788..08f0a4f97 100644 --- a/src/main/java/org/codesecure/dependencycheck/analyzer/AnalyzerService.java +++ b/src/main/java/org/owasp/dependencycheck/analyzer/AnalyzerService.java @@ -16,7 +16,7 @@ * * Copyright (c) 2012 Jeremy Long. All Rights Reserved. */ -package org.codesecure.dependencycheck.analyzer; +package org.owasp.dependencycheck.analyzer; import java.util.Iterator; import java.util.ServiceLoader; diff --git a/src/main/java/org/codesecure/dependencycheck/analyzer/FileNameAnalyzer.java b/src/main/java/org/owasp/dependencycheck/analyzer/FileNameAnalyzer.java similarity index 94% rename from src/main/java/org/codesecure/dependencycheck/analyzer/FileNameAnalyzer.java rename to src/main/java/org/owasp/dependencycheck/analyzer/FileNameAnalyzer.java index 3a10e11e4..6f0d05cd4 100644 --- a/src/main/java/org/codesecure/dependencycheck/analyzer/FileNameAnalyzer.java +++ b/src/main/java/org/owasp/dependencycheck/analyzer/FileNameAnalyzer.java @@ -16,12 +16,12 @@ * * Copyright (c) 2012 Jeremy Long. All Rights Reserved. */ -package org.codesecure.dependencycheck.analyzer; +package org.owasp.dependencycheck.analyzer; -import org.codesecure.dependencycheck.dependency.Dependency; -import org.codesecure.dependencycheck.dependency.Evidence; +import org.owasp.dependencycheck.dependency.Dependency; +import org.owasp.dependencycheck.dependency.Evidence; import java.util.Set; -import org.codesecure.dependencycheck.Engine; +import org.owasp.dependencycheck.Engine; /** * diff --git a/src/main/java/org/codesecure/dependencycheck/analyzer/JarAnalyzer.java b/src/main/java/org/owasp/dependencycheck/analyzer/JarAnalyzer.java similarity index 97% rename from src/main/java/org/codesecure/dependencycheck/analyzer/JarAnalyzer.java rename to src/main/java/org/owasp/dependencycheck/analyzer/JarAnalyzer.java index 9beea2820..8d8e06612 100644 --- a/src/main/java/org/codesecure/dependencycheck/analyzer/JarAnalyzer.java +++ b/src/main/java/org/owasp/dependencycheck/analyzer/JarAnalyzer.java @@ -16,17 +16,17 @@ * * Copyright (c) 2012 Jeremy Long. All Rights Reserved. */ -package org.codesecure.dependencycheck.analyzer; +package org.owasp.dependencycheck.analyzer; import java.io.File; import java.io.FileInputStream; import java.util.logging.Level; import java.util.logging.Logger; import javax.xml.bind.JAXBException; -import org.codesecure.dependencycheck.Engine; -import org.codesecure.dependencycheck.dependency.Dependency; -import org.codesecure.dependencycheck.dependency.Evidence; -import org.codesecure.dependencycheck.dependency.EvidenceCollection; +import org.owasp.dependencycheck.Engine; +import org.owasp.dependencycheck.dependency.Dependency; +import org.owasp.dependencycheck.dependency.Evidence; +import org.owasp.dependencycheck.dependency.EvidenceCollection; import java.io.IOException; import java.io.InputStreamReader; import java.io.Reader; @@ -43,10 +43,10 @@ import java.util.zip.ZipInputStream; import javax.xml.bind.JAXBContext; import javax.xml.bind.JAXBElement; import javax.xml.bind.Unmarshaller; -import org.codesecure.dependencycheck.analyzer.pom.generated.License; -import org.codesecure.dependencycheck.analyzer.pom.generated.Model; -import org.codesecure.dependencycheck.analyzer.pom.generated.Organization; -import org.codesecure.dependencycheck.utils.NonClosingStream; +import org.owasp.dependencycheck.analyzer.pom.generated.License; +import org.owasp.dependencycheck.analyzer.pom.generated.Model; +import org.owasp.dependencycheck.analyzer.pom.generated.Organization; +import org.owasp.dependencycheck.utils.NonClosingStream; /** * @@ -125,7 +125,7 @@ public class JarAnalyzer extends AbstractAnalyzer implements Analyzer { */ public JarAnalyzer() { try { - JAXBContext jaxbContext = JAXBContext.newInstance("org.codesecure.dependencycheck.analyzer.pom.generated"); + JAXBContext jaxbContext = JAXBContext.newInstance("org.owasp.dependencycheck.analyzer.pom.generated"); pomUnmarshaller = jaxbContext.createUnmarshaller(); } catch (JAXBException ex) { //guess we will just have a null pointer exception later... Logger.getLogger(JarAnalyzer.class.getName()).log(Level.SEVERE, null, ex); @@ -220,7 +220,7 @@ public class JarAnalyzer extends AbstractAnalyzer implements Analyzer { if (pom == null) { NonClosingStream stream = new NonClosingStream(zin); JAXBElement obj = (JAXBElement) pomUnmarshaller.unmarshal(stream); - pom = (org.codesecure.dependencycheck.analyzer.pom.generated.Model) obj.getValue(); + pom = (org.owasp.dependencycheck.analyzer.pom.generated.Model) obj.getValue(); zin.closeEntry(); } else { throw new AnalysisException("JAR file contains multiple pom.xml files - unable to process POM"); diff --git a/src/main/java/org/owasp/dependencycheck/analyzer/JavaScriptAnalyzer.java b/src/main/java/org/owasp/dependencycheck/analyzer/JavaScriptAnalyzer.java new file mode 100644 index 000000000..62b6da5e0 --- /dev/null +++ b/src/main/java/org/owasp/dependencycheck/analyzer/JavaScriptAnalyzer.java @@ -0,0 +1,126 @@ +/* + * This file is part of DependencyCheck. + * + * DependencyCheck is free software: you can redistribute it and/or modify it + * under the terms of the GNU General Public License as published by the Free + * Software Foundation, either version 3 of the License, or (at your option) any + * later version. + * + * DependencyCheck is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more + * details. + * + * You should have received a copy of the GNU General Public License along with + * DependencyCheck. If not, see http://www.gnu.org/licenses/. + * + * Copyright (c) 2012 Jeremy Long. All Rights Reserved. + */ +package org.owasp.dependencycheck.analyzer; + +import org.owasp.dependencycheck.Engine; +import org.owasp.dependencycheck.dependency.Dependency; +import java.util.Set; +import java.util.regex.Pattern; + +/** + * + * Used to load a JAR file and collect information that can be used to determine + * the associated CPE. + * + * @author Jeremy Long (jeremy.long@gmail.com) + */ +public class JavaScriptAnalyzer extends AbstractAnalyzer implements Analyzer { + + /** + * The system independent newline character. + */ + private static final String NEWLINE = System.getProperty("line.separator"); + /** + * The name of the analyzer. + */ + private static final String ANALYZER_NAME = "JavaScript Analyzer"; + /** + * The phase that this analyzer is intended to run in. + */ + private static final AnalysisPhase ANALYSIS_PHASE = AnalysisPhase.INFORMATION_COLLECTION; + /** + * The set of file extensions supported by this analyzer. + */ + private static final Set EXTENSIONS = newHashSet("js"); + + /** + * Returns a list of file EXTENSIONS supported by this analyzer. + * + * @return a list of file EXTENSIONS supported by this analyzer. + */ + public Set getSupportedExtensions() { + return EXTENSIONS; + } + + /** + * Returns the name of the analyzer. + * + * @return the name of the analyzer. + */ + public String getName() { + return ANALYZER_NAME; + } + + /** + * Returns whether or not this analyzer can process the given extension. + * + * @param extension the file extension to test for support. + * @return whether or not the specified file extension is supported by this + * analyzer. + */ + public boolean supportsExtension(String extension) { + return EXTENSIONS.contains(extension); + } + + /** + * Returns the phase that the analyzer is intended to run in. + * + * @return the phase that the analyzer is intended to run in. + */ + public AnalysisPhase getAnalysisPhase() { + return ANALYSIS_PHASE; + } + + /** + * Loads a specified JAR file and collects information from the manifest and + * checksums to identify the correct CPE information. + * + * @param dependency the dependency to analyze. + * @param engine the engine that is scanning the dependencies + * @throws AnalysisException is thrown if there is an error reading the JAR + * file. + */ + public void analyze(Dependency dependency, Engine engine) throws AnalysisException { + Pattern extractComments = Pattern.compile("(/\\*([^*]|[\\r\\n]|(\\*+([^*/]|[\\r\\n])))*\\*+/)|(//.*)"); + + } + + private void addLicense(Dependency d, String license) { + if (d.getLicense() == null) { + d.setLicense(license); + } else if (!d.getLicense().contains(license)) { + d.setLicense(d.getLicense() + NEWLINE + license); + } + } + + /** + * The initialize method does nothing for this Analyzer + */ + public void initialize() { + //do nothing + } + + /** + * The close method does nothing for this Analyzer + */ + public void close() { + //do nothing + } + +} diff --git a/src/main/java/org/codesecure/dependencycheck/analyzer/SpringCleaningAnalyzer.java b/src/main/java/org/owasp/dependencycheck/analyzer/SpringCleaningAnalyzer.java similarity index 96% rename from src/main/java/org/codesecure/dependencycheck/analyzer/SpringCleaningAnalyzer.java rename to src/main/java/org/owasp/dependencycheck/analyzer/SpringCleaningAnalyzer.java index 9e9bc9824..4f0501d2a 100644 --- a/src/main/java/org/codesecure/dependencycheck/analyzer/SpringCleaningAnalyzer.java +++ b/src/main/java/org/owasp/dependencycheck/analyzer/SpringCleaningAnalyzer.java @@ -16,14 +16,14 @@ * * Copyright (c) 2012 Jeremy Long. All Rights Reserved. */ -package org.codesecure.dependencycheck.analyzer; +package org.owasp.dependencycheck.analyzer; import java.util.ArrayList; import java.util.List; import java.util.Set; -import org.codesecure.dependencycheck.Engine; -import org.codesecure.dependencycheck.dependency.Dependency; -import org.codesecure.dependencycheck.dependency.Identifier; +import org.owasp.dependencycheck.Engine; +import org.owasp.dependencycheck.dependency.Dependency; +import org.owasp.dependencycheck.dependency.Identifier; /** * This analyzer ensures that the Spring Framework Core CPE identifiers are only associated diff --git a/src/main/java/org/codesecure/dependencycheck/analyzer/package-info.java b/src/main/java/org/owasp/dependencycheck/analyzer/package-info.java similarity index 71% rename from src/main/java/org/codesecure/dependencycheck/analyzer/package-info.java rename to src/main/java/org/owasp/dependencycheck/analyzer/package-info.java index 5d473644e..69023528e 100644 --- a/src/main/java/org/codesecure/dependencycheck/analyzer/package-info.java +++ b/src/main/java/org/owasp/dependencycheck/analyzer/package-info.java @@ -1,10 +1,10 @@ /** * * - * org.codesecure.dependencycheck.scanner + * org.owasp.dependencycheck.scanner * * - * The scanner package contains the utilities to scan files and directories for + * The scanner package contains the utilities to scan files and directories for * dependencies. Analyzers are used to inspect the identified dependencies and * collect Evidence. This evidence is then used to determine if the dependency * has a known CPE. @@ -12,4 +12,4 @@ * */ -package org.codesecure.dependencycheck.analyzer; +package org.owasp.dependencycheck.analyzer; diff --git a/src/main/java/org/codesecure/dependencycheck/analyzer/pom/generated/Activation.java b/src/main/java/org/owasp/dependencycheck/analyzer/pom/generated/Activation.java similarity index 93% rename from src/main/java/org/codesecure/dependencycheck/analyzer/pom/generated/Activation.java rename to src/main/java/org/owasp/dependencycheck/analyzer/pom/generated/Activation.java index e3cae8294..610a0a432 100644 --- a/src/main/java/org/codesecure/dependencycheck/analyzer/pom/generated/Activation.java +++ b/src/main/java/org/owasp/dependencycheck/analyzer/pom/generated/Activation.java @@ -1,12 +1,12 @@ // -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 in JDK 6 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2012.11.09 at 12:33:57 PM EST +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 in JDK 6 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2012.11.09 at 12:33:57 PM EST // -package org.codesecure.dependencycheck.analyzer.pom.generated; +package org.owasp.dependencycheck.analyzer.pom.generated; import javax.annotation.Generated; import javax.xml.bind.annotation.XmlAccessType; @@ -16,15 +16,15 @@ import javax.xml.bind.annotation.XmlType; /** - * + * * The conditions within the build runtime environment which will trigger * the automatic inclusion of the build profile. - * - * + * + * *

Java class for Activation complex type. - * + * *

The following schema fragment specifies the expected content contained within this class. - * + * *

  * <complexType name="Activation">
  *   <complexContent>
@@ -40,8 +40,8 @@ import javax.xml.bind.annotation.XmlType;
  *   </complexContent>
  * </complexType>
  * 
- * - * + * + * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Activation", propOrder = { @@ -64,11 +64,11 @@ public class Activation { /** * Gets the value of the activeByDefault property. - * + * * @return * possible object is * {@link Boolean } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public Boolean isActiveByDefault() { @@ -77,11 +77,11 @@ public class Activation { /** * Sets the value of the activeByDefault property. - * + * * @param value * allowed object is * {@link Boolean } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setActiveByDefault(Boolean value) { @@ -90,11 +90,11 @@ public class Activation { /** * Gets the value of the jdk property. - * + * * @return * possible object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public String getJdk() { @@ -103,11 +103,11 @@ public class Activation { /** * Sets the value of the jdk property. - * + * * @param value * allowed object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setJdk(String value) { @@ -116,11 +116,11 @@ public class Activation { /** * Gets the value of the os property. - * + * * @return * possible object is * {@link ActivationOS } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public ActivationOS getOs() { @@ -129,11 +129,11 @@ public class Activation { /** * Sets the value of the os property. - * + * * @param value * allowed object is * {@link ActivationOS } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setOs(ActivationOS value) { @@ -142,11 +142,11 @@ public class Activation { /** * Gets the value of the property property. - * + * * @return * possible object is * {@link ActivationProperty } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public ActivationProperty getProperty() { @@ -155,11 +155,11 @@ public class Activation { /** * Sets the value of the property property. - * + * * @param value * allowed object is * {@link ActivationProperty } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setProperty(ActivationProperty value) { @@ -168,11 +168,11 @@ public class Activation { /** * Gets the value of the file property. - * + * * @return * possible object is * {@link ActivationFile } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public ActivationFile getFile() { @@ -181,11 +181,11 @@ public class Activation { /** * Sets the value of the file property. - * + * * @param value * allowed object is * {@link ActivationFile } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setFile(ActivationFile value) { diff --git a/src/main/java/org/codesecure/dependencycheck/analyzer/pom/generated/ActivationFile.java b/src/main/java/org/owasp/dependencycheck/analyzer/pom/generated/ActivationFile.java similarity index 91% rename from src/main/java/org/codesecure/dependencycheck/analyzer/pom/generated/ActivationFile.java rename to src/main/java/org/owasp/dependencycheck/analyzer/pom/generated/ActivationFile.java index 0363d3d4e..e7e200d0f 100644 --- a/src/main/java/org/codesecure/dependencycheck/analyzer/pom/generated/ActivationFile.java +++ b/src/main/java/org/owasp/dependencycheck/analyzer/pom/generated/ActivationFile.java @@ -1,12 +1,12 @@ // -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 in JDK 6 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2012.11.09 at 12:33:57 PM EST +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 in JDK 6 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2012.11.09 at 12:33:57 PM EST // -package org.codesecure.dependencycheck.analyzer.pom.generated; +package org.owasp.dependencycheck.analyzer.pom.generated; import javax.annotation.Generated; import javax.xml.bind.annotation.XmlAccessType; @@ -15,16 +15,16 @@ import javax.xml.bind.annotation.XmlType; /** - * + * * This is the file specification used to activate the profile. The missing value will be the location * of a file that needs to exist, and if it doesn't the profile will be activated. On the other hand exists will test * for the existence of the file and if it is there the profile will be activated. - * - * + * + * *

Java class for ActivationFile complex type. - * + * *

The following schema fragment specifies the expected content contained within this class. - * + * *

  * <complexType name="ActivationFile">
  *   <complexContent>
@@ -37,8 +37,8 @@ import javax.xml.bind.annotation.XmlType;
  *   </complexContent>
  * </complexType>
  * 
- * - * + * + * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ActivationFile", propOrder = { @@ -54,11 +54,11 @@ public class ActivationFile { /** * Gets the value of the missing property. - * + * * @return * possible object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public String getMissing() { @@ -67,11 +67,11 @@ public class ActivationFile { /** * Sets the value of the missing property. - * + * * @param value * allowed object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setMissing(String value) { @@ -80,11 +80,11 @@ public class ActivationFile { /** * Gets the value of the exists property. - * + * * @return * possible object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public String getExists() { @@ -93,11 +93,11 @@ public class ActivationFile { /** * Sets the value of the exists property. - * + * * @param value * allowed object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setExists(String value) { diff --git a/src/main/java/org/codesecure/dependencycheck/analyzer/pom/generated/ActivationOS.java b/src/main/java/org/owasp/dependencycheck/analyzer/pom/generated/ActivationOS.java similarity index 92% rename from src/main/java/org/codesecure/dependencycheck/analyzer/pom/generated/ActivationOS.java rename to src/main/java/org/owasp/dependencycheck/analyzer/pom/generated/ActivationOS.java index f05477895..367cab632 100644 --- a/src/main/java/org/codesecure/dependencycheck/analyzer/pom/generated/ActivationOS.java +++ b/src/main/java/org/owasp/dependencycheck/analyzer/pom/generated/ActivationOS.java @@ -1,12 +1,12 @@ // -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 in JDK 6 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2012.11.09 at 12:33:57 PM EST +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 in JDK 6 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2012.11.09 at 12:33:57 PM EST // -package org.codesecure.dependencycheck.analyzer.pom.generated; +package org.owasp.dependencycheck.analyzer.pom.generated; import javax.annotation.Generated; import javax.xml.bind.annotation.XmlAccessType; @@ -15,15 +15,15 @@ import javax.xml.bind.annotation.XmlType; /** - * + * * This is an activator which will detect an operating system's attributes in order to activate * its profile. - * - * + * + * *

Java class for ActivationOS complex type. - * + * *

The following schema fragment specifies the expected content contained within this class. - * + * *

  * <complexType name="ActivationOS">
  *   <complexContent>
@@ -38,8 +38,8 @@ import javax.xml.bind.annotation.XmlType;
  *   </complexContent>
  * </complexType>
  * 
- * - * + * + * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ActivationOS", propOrder = { @@ -59,11 +59,11 @@ public class ActivationOS { /** * Gets the value of the name property. - * + * * @return * possible object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public String getName() { @@ -72,11 +72,11 @@ public class ActivationOS { /** * Sets the value of the name property. - * + * * @param value * allowed object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setName(String value) { @@ -85,11 +85,11 @@ public class ActivationOS { /** * Gets the value of the family property. - * + * * @return * possible object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public String getFamily() { @@ -98,11 +98,11 @@ public class ActivationOS { /** * Sets the value of the family property. - * + * * @param value * allowed object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setFamily(String value) { @@ -111,11 +111,11 @@ public class ActivationOS { /** * Gets the value of the arch property. - * + * * @return * possible object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public String getArch() { @@ -124,11 +124,11 @@ public class ActivationOS { /** * Sets the value of the arch property. - * + * * @param value * allowed object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setArch(String value) { @@ -137,11 +137,11 @@ public class ActivationOS { /** * Gets the value of the version property. - * + * * @return * possible object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public String getVersion() { @@ -150,11 +150,11 @@ public class ActivationOS { /** * Sets the value of the version property. - * + * * @param value * allowed object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setVersion(String value) { diff --git a/src/main/java/org/codesecure/dependencycheck/analyzer/pom/generated/ActivationProperty.java b/src/main/java/org/owasp/dependencycheck/analyzer/pom/generated/ActivationProperty.java similarity index 90% rename from src/main/java/org/codesecure/dependencycheck/analyzer/pom/generated/ActivationProperty.java rename to src/main/java/org/owasp/dependencycheck/analyzer/pom/generated/ActivationProperty.java index dcf3ef5ff..073764e84 100644 --- a/src/main/java/org/codesecure/dependencycheck/analyzer/pom/generated/ActivationProperty.java +++ b/src/main/java/org/owasp/dependencycheck/analyzer/pom/generated/ActivationProperty.java @@ -1,12 +1,12 @@ // -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 in JDK 6 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2012.11.09 at 12:33:57 PM EST +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 in JDK 6 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2012.11.09 at 12:33:57 PM EST // -package org.codesecure.dependencycheck.analyzer.pom.generated; +package org.owasp.dependencycheck.analyzer.pom.generated; import javax.annotation.Generated; import javax.xml.bind.annotation.XmlAccessType; @@ -15,16 +15,16 @@ import javax.xml.bind.annotation.XmlType; /** - * + * * This is the property specification used to activate a profile. If the value field is empty, * then the existence of the named property will activate the profile, otherwise it does a case-sensitive * match against the property value as well. - * - * + * + * *

Java class for ActivationProperty complex type. - * + * *

The following schema fragment specifies the expected content contained within this class. - * + * *

  * <complexType name="ActivationProperty">
  *   <complexContent>
@@ -37,8 +37,8 @@ import javax.xml.bind.annotation.XmlType;
  *   </complexContent>
  * </complexType>
  * 
- * - * + * + * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ActivationProperty", propOrder = { @@ -54,11 +54,11 @@ public class ActivationProperty { /** * Gets the value of the name property. - * + * * @return * possible object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public String getName() { @@ -67,11 +67,11 @@ public class ActivationProperty { /** * Sets the value of the name property. - * + * * @param value * allowed object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setName(String value) { @@ -80,11 +80,11 @@ public class ActivationProperty { /** * Gets the value of the value property. - * + * * @return * possible object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public String getValue() { @@ -93,11 +93,11 @@ public class ActivationProperty { /** * Sets the value of the value property. - * + * * @param value * allowed object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setValue(String value) { diff --git a/src/main/java/org/codesecure/dependencycheck/analyzer/pom/generated/Build.java b/src/main/java/org/owasp/dependencycheck/analyzer/pom/generated/Build.java similarity index 95% rename from src/main/java/org/codesecure/dependencycheck/analyzer/pom/generated/Build.java rename to src/main/java/org/owasp/dependencycheck/analyzer/pom/generated/Build.java index e4bd2442c..df469f8a9 100644 --- a/src/main/java/org/codesecure/dependencycheck/analyzer/pom/generated/Build.java +++ b/src/main/java/org/owasp/dependencycheck/analyzer/pom/generated/Build.java @@ -1,12 +1,12 @@ // -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 in JDK 6 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2012.11.09 at 12:33:57 PM EST +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 in JDK 6 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2012.11.09 at 12:33:57 PM EST // -package org.codesecure.dependencycheck.analyzer.pom.generated; +package org.owasp.dependencycheck.analyzer.pom.generated; import java.util.ArrayList; import java.util.List; @@ -18,11 +18,11 @@ import javax.xml.bind.annotation.XmlType; /** * 3.0.0+ - * + * *

Java class for Build complex type. - * + * *

The following schema fragment specifies the expected content contained within this class. - * + * *

  * <complexType name="Build">
  *   <complexContent>
@@ -97,8 +97,8 @@ import javax.xml.bind.annotation.XmlType;
  *   </complexContent>
  * </complexType>
  * 
- * - * + * + * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Build", propOrder = { @@ -138,11 +138,11 @@ public class Build { /** * Gets the value of the sourceDirectory property. - * + * * @return * possible object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public String getSourceDirectory() { @@ -151,11 +151,11 @@ public class Build { /** * Sets the value of the sourceDirectory property. - * + * * @param value * allowed object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setSourceDirectory(String value) { @@ -164,11 +164,11 @@ public class Build { /** * Gets the value of the scriptSourceDirectory property. - * + * * @return * possible object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public String getScriptSourceDirectory() { @@ -177,11 +177,11 @@ public class Build { /** * Sets the value of the scriptSourceDirectory property. - * + * * @param value * allowed object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setScriptSourceDirectory(String value) { @@ -190,11 +190,11 @@ public class Build { /** * Gets the value of the testSourceDirectory property. - * + * * @return * possible object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public String getTestSourceDirectory() { @@ -203,11 +203,11 @@ public class Build { /** * Sets the value of the testSourceDirectory property. - * + * * @param value * allowed object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setTestSourceDirectory(String value) { @@ -216,11 +216,11 @@ public class Build { /** * Gets the value of the outputDirectory property. - * + * * @return * possible object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public String getOutputDirectory() { @@ -229,11 +229,11 @@ public class Build { /** * Sets the value of the outputDirectory property. - * + * * @param value * allowed object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setOutputDirectory(String value) { @@ -242,11 +242,11 @@ public class Build { /** * Gets the value of the testOutputDirectory property. - * + * * @return * possible object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public String getTestOutputDirectory() { @@ -255,11 +255,11 @@ public class Build { /** * Sets the value of the testOutputDirectory property. - * + * * @param value * allowed object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setTestOutputDirectory(String value) { @@ -268,11 +268,11 @@ public class Build { /** * Gets the value of the extensions property. - * + * * @return * possible object is * {@link Build.Extensions } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public Build.Extensions getExtensions() { @@ -281,11 +281,11 @@ public class Build { /** * Sets the value of the extensions property. - * + * * @param value * allowed object is * {@link Build.Extensions } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setExtensions(Build.Extensions value) { @@ -294,11 +294,11 @@ public class Build { /** * Gets the value of the defaultGoal property. - * + * * @return * possible object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public String getDefaultGoal() { @@ -307,11 +307,11 @@ public class Build { /** * Sets the value of the defaultGoal property. - * + * * @param value * allowed object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setDefaultGoal(String value) { @@ -320,11 +320,11 @@ public class Build { /** * Gets the value of the resources property. - * + * * @return * possible object is * {@link Build.Resources } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public Build.Resources getResources() { @@ -333,11 +333,11 @@ public class Build { /** * Sets the value of the resources property. - * + * * @param value * allowed object is * {@link Build.Resources } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setResources(Build.Resources value) { @@ -346,11 +346,11 @@ public class Build { /** * Gets the value of the testResources property. - * + * * @return * possible object is * {@link Build.TestResources } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public Build.TestResources getTestResources() { @@ -359,11 +359,11 @@ public class Build { /** * Sets the value of the testResources property. - * + * * @param value * allowed object is * {@link Build.TestResources } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setTestResources(Build.TestResources value) { @@ -372,11 +372,11 @@ public class Build { /** * Gets the value of the directory property. - * + * * @return * possible object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public String getDirectory() { @@ -385,11 +385,11 @@ public class Build { /** * Sets the value of the directory property. - * + * * @param value * allowed object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setDirectory(String value) { @@ -398,11 +398,11 @@ public class Build { /** * Gets the value of the finalName property. - * + * * @return * possible object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public String getFinalName() { @@ -411,11 +411,11 @@ public class Build { /** * Sets the value of the finalName property. - * + * * @param value * allowed object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setFinalName(String value) { @@ -424,11 +424,11 @@ public class Build { /** * Gets the value of the filters property. - * + * * @return * possible object is * {@link Build.Filters } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public Build.Filters getFilters() { @@ -437,11 +437,11 @@ public class Build { /** * Sets the value of the filters property. - * + * * @param value * allowed object is * {@link Build.Filters } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setFilters(Build.Filters value) { @@ -450,11 +450,11 @@ public class Build { /** * Gets the value of the pluginManagement property. - * + * * @return * possible object is * {@link PluginManagement } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public PluginManagement getPluginManagement() { @@ -463,11 +463,11 @@ public class Build { /** * Sets the value of the pluginManagement property. - * + * * @param value * allowed object is * {@link PluginManagement } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setPluginManagement(PluginManagement value) { @@ -476,11 +476,11 @@ public class Build { /** * Gets the value of the plugins property. - * + * * @return * possible object is * {@link Build.Plugins } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public Build.Plugins getPlugins() { @@ -489,11 +489,11 @@ public class Build { /** * Sets the value of the plugins property. - * + * * @param value * allowed object is * {@link Build.Plugins } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setPlugins(Build.Plugins value) { @@ -503,9 +503,9 @@ public class Build { /** *

Java class for anonymous complex type. - * + * *

The following schema fragment specifies the expected content contained within this class. - * + * *

      * <complexType>
      *   <complexContent>
@@ -517,8 +517,8 @@ public class Build {
      *   </complexContent>
      * </complexType>
      * 
- * - * + * + * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { @@ -532,25 +532,25 @@ public class Build { /** * Gets the value of the extension property. - * + * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the extension property. - * + * *

* For example, to add a new item, do as follows: *

          *    getExtension().add(newItem);
          * 
- * - * + * + * *

* Objects of the following type(s) are allowed in the list * {@link Extension } - * - * + * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public List getExtension() { @@ -565,9 +565,9 @@ public class Build { /** *

Java class for anonymous complex type. - * + * *

The following schema fragment specifies the expected content contained within this class. - * + * *

      * <complexType>
      *   <complexContent>
@@ -579,8 +579,8 @@ public class Build {
      *   </complexContent>
      * </complexType>
      * 
- * - * + * + * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { @@ -594,25 +594,25 @@ public class Build { /** * Gets the value of the filter property. - * + * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the filter property. - * + * *

* For example, to add a new item, do as follows: *

          *    getFilter().add(newItem);
          * 
- * - * + * + * *

* Objects of the following type(s) are allowed in the list * {@link String } - * - * + * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public List getFilter() { @@ -627,9 +627,9 @@ public class Build { /** *

Java class for anonymous complex type. - * + * *

The following schema fragment specifies the expected content contained within this class. - * + * *

      * <complexType>
      *   <complexContent>
@@ -641,8 +641,8 @@ public class Build {
      *   </complexContent>
      * </complexType>
      * 
- * - * + * + * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { @@ -656,25 +656,25 @@ public class Build { /** * Gets the value of the plugin property. - * + * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the plugin property. - * + * *

* For example, to add a new item, do as follows: *

          *    getPlugin().add(newItem);
          * 
- * - * + * + * *

* Objects of the following type(s) are allowed in the list * {@link Plugin } - * - * + * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public List getPlugin() { @@ -689,9 +689,9 @@ public class Build { /** *

Java class for anonymous complex type. - * + * *

The following schema fragment specifies the expected content contained within this class. - * + * *

      * <complexType>
      *   <complexContent>
@@ -703,8 +703,8 @@ public class Build {
      *   </complexContent>
      * </complexType>
      * 
- * - * + * + * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { @@ -718,25 +718,25 @@ public class Build { /** * Gets the value of the resource property. - * + * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the resource property. - * + * *

* For example, to add a new item, do as follows: *

          *    getResource().add(newItem);
          * 
- * - * + * + * *

* Objects of the following type(s) are allowed in the list * {@link Resource } - * - * + * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public List getResource() { @@ -751,9 +751,9 @@ public class Build { /** *

Java class for anonymous complex type. - * + * *

The following schema fragment specifies the expected content contained within this class. - * + * *

      * <complexType>
      *   <complexContent>
@@ -765,8 +765,8 @@ public class Build {
      *   </complexContent>
      * </complexType>
      * 
- * - * + * + * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { @@ -780,25 +780,25 @@ public class Build { /** * Gets the value of the testResource property. - * + * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the testResource property. - * + * *

* For example, to add a new item, do as follows: *

          *    getTestResource().add(newItem);
          * 
- * - * + * + * *

* Objects of the following type(s) are allowed in the list * {@link Resource } - * - * + * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public List getTestResource() { diff --git a/src/main/java/org/codesecure/dependencycheck/analyzer/pom/generated/BuildBase.java b/src/main/java/org/owasp/dependencycheck/analyzer/pom/generated/BuildBase.java similarity index 95% rename from src/main/java/org/codesecure/dependencycheck/analyzer/pom/generated/BuildBase.java rename to src/main/java/org/owasp/dependencycheck/analyzer/pom/generated/BuildBase.java index 118cde73e..7c6364f35 100644 --- a/src/main/java/org/codesecure/dependencycheck/analyzer/pom/generated/BuildBase.java +++ b/src/main/java/org/owasp/dependencycheck/analyzer/pom/generated/BuildBase.java @@ -1,12 +1,12 @@ // -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 in JDK 6 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2012.11.09 at 12:33:57 PM EST +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 in JDK 6 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2012.11.09 at 12:33:57 PM EST // -package org.codesecure.dependencycheck.analyzer.pom.generated; +package org.owasp.dependencycheck.analyzer.pom.generated; import java.util.ArrayList; import java.util.List; @@ -18,11 +18,11 @@ import javax.xml.bind.annotation.XmlType; /** * 3.0.0+ - * + * *

Java class for BuildBase complex type. - * + * *

The following schema fragment specifies the expected content contained within this class. - * + * *

  * <complexType name="BuildBase">
  *   <complexContent>
@@ -81,8 +81,8 @@ import javax.xml.bind.annotation.XmlType;
  *   </complexContent>
  * </complexType>
  * 
- * - * + * + * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "BuildBase", propOrder = { @@ -110,11 +110,11 @@ public class BuildBase { /** * Gets the value of the defaultGoal property. - * + * * @return * possible object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public String getDefaultGoal() { @@ -123,11 +123,11 @@ public class BuildBase { /** * Sets the value of the defaultGoal property. - * + * * @param value * allowed object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setDefaultGoal(String value) { @@ -136,11 +136,11 @@ public class BuildBase { /** * Gets the value of the resources property. - * + * * @return * possible object is * {@link BuildBase.Resources } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public BuildBase.Resources getResources() { @@ -149,11 +149,11 @@ public class BuildBase { /** * Sets the value of the resources property. - * + * * @param value * allowed object is * {@link BuildBase.Resources } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setResources(BuildBase.Resources value) { @@ -162,11 +162,11 @@ public class BuildBase { /** * Gets the value of the testResources property. - * + * * @return * possible object is * {@link BuildBase.TestResources } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public BuildBase.TestResources getTestResources() { @@ -175,11 +175,11 @@ public class BuildBase { /** * Sets the value of the testResources property. - * + * * @param value * allowed object is * {@link BuildBase.TestResources } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setTestResources(BuildBase.TestResources value) { @@ -188,11 +188,11 @@ public class BuildBase { /** * Gets the value of the directory property. - * + * * @return * possible object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public String getDirectory() { @@ -201,11 +201,11 @@ public class BuildBase { /** * Sets the value of the directory property. - * + * * @param value * allowed object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setDirectory(String value) { @@ -214,11 +214,11 @@ public class BuildBase { /** * Gets the value of the finalName property. - * + * * @return * possible object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public String getFinalName() { @@ -227,11 +227,11 @@ public class BuildBase { /** * Sets the value of the finalName property. - * + * * @param value * allowed object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setFinalName(String value) { @@ -240,11 +240,11 @@ public class BuildBase { /** * Gets the value of the filters property. - * + * * @return * possible object is * {@link BuildBase.Filters } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public BuildBase.Filters getFilters() { @@ -253,11 +253,11 @@ public class BuildBase { /** * Sets the value of the filters property. - * + * * @param value * allowed object is * {@link BuildBase.Filters } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setFilters(BuildBase.Filters value) { @@ -266,11 +266,11 @@ public class BuildBase { /** * Gets the value of the pluginManagement property. - * + * * @return * possible object is * {@link PluginManagement } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public PluginManagement getPluginManagement() { @@ -279,11 +279,11 @@ public class BuildBase { /** * Sets the value of the pluginManagement property. - * + * * @param value * allowed object is * {@link PluginManagement } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setPluginManagement(PluginManagement value) { @@ -292,11 +292,11 @@ public class BuildBase { /** * Gets the value of the plugins property. - * + * * @return * possible object is * {@link BuildBase.Plugins } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public BuildBase.Plugins getPlugins() { @@ -305,11 +305,11 @@ public class BuildBase { /** * Sets the value of the plugins property. - * + * * @param value * allowed object is * {@link BuildBase.Plugins } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setPlugins(BuildBase.Plugins value) { @@ -319,9 +319,9 @@ public class BuildBase { /** *

Java class for anonymous complex type. - * + * *

The following schema fragment specifies the expected content contained within this class. - * + * *

      * <complexType>
      *   <complexContent>
@@ -333,8 +333,8 @@ public class BuildBase {
      *   </complexContent>
      * </complexType>
      * 
- * - * + * + * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { @@ -348,25 +348,25 @@ public class BuildBase { /** * Gets the value of the filter property. - * + * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the filter property. - * + * *

* For example, to add a new item, do as follows: *

          *    getFilter().add(newItem);
          * 
- * - * + * + * *

* Objects of the following type(s) are allowed in the list * {@link String } - * - * + * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public List getFilter() { @@ -381,9 +381,9 @@ public class BuildBase { /** *

Java class for anonymous complex type. - * + * *

The following schema fragment specifies the expected content contained within this class. - * + * *

      * <complexType>
      *   <complexContent>
@@ -395,8 +395,8 @@ public class BuildBase {
      *   </complexContent>
      * </complexType>
      * 
- * - * + * + * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { @@ -410,25 +410,25 @@ public class BuildBase { /** * Gets the value of the plugin property. - * + * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the plugin property. - * + * *

* For example, to add a new item, do as follows: *

          *    getPlugin().add(newItem);
          * 
- * - * + * + * *

* Objects of the following type(s) are allowed in the list * {@link Plugin } - * - * + * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public List getPlugin() { @@ -443,9 +443,9 @@ public class BuildBase { /** *

Java class for anonymous complex type. - * + * *

The following schema fragment specifies the expected content contained within this class. - * + * *

      * <complexType>
      *   <complexContent>
@@ -457,8 +457,8 @@ public class BuildBase {
      *   </complexContent>
      * </complexType>
      * 
- * - * + * + * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { @@ -472,25 +472,25 @@ public class BuildBase { /** * Gets the value of the resource property. - * + * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the resource property. - * + * *

* For example, to add a new item, do as follows: *

          *    getResource().add(newItem);
          * 
- * - * + * + * *

* Objects of the following type(s) are allowed in the list * {@link Resource } - * - * + * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public List getResource() { @@ -505,9 +505,9 @@ public class BuildBase { /** *

Java class for anonymous complex type. - * + * *

The following schema fragment specifies the expected content contained within this class. - * + * *

      * <complexType>
      *   <complexContent>
@@ -519,8 +519,8 @@ public class BuildBase {
      *   </complexContent>
      * </complexType>
      * 
- * - * + * + * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { @@ -534,25 +534,25 @@ public class BuildBase { /** * Gets the value of the testResource property. - * + * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the testResource property. - * + * *

* For example, to add a new item, do as follows: *

          *    getTestResource().add(newItem);
          * 
- * - * + * + * *

* Objects of the following type(s) are allowed in the list * {@link Resource } - * - * + * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public List getTestResource() { diff --git a/src/main/java/org/codesecure/dependencycheck/analyzer/pom/generated/CiManagement.java b/src/main/java/org/owasp/dependencycheck/analyzer/pom/generated/CiManagement.java similarity index 93% rename from src/main/java/org/codesecure/dependencycheck/analyzer/pom/generated/CiManagement.java rename to src/main/java/org/owasp/dependencycheck/analyzer/pom/generated/CiManagement.java index 2c47987cf..ed8773fac 100644 --- a/src/main/java/org/codesecure/dependencycheck/analyzer/pom/generated/CiManagement.java +++ b/src/main/java/org/owasp/dependencycheck/analyzer/pom/generated/CiManagement.java @@ -1,12 +1,12 @@ // -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 in JDK 6 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2012.11.09 at 12:33:57 PM EST +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 in JDK 6 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2012.11.09 at 12:33:57 PM EST // -package org.codesecure.dependencycheck.analyzer.pom.generated; +package org.owasp.dependencycheck.analyzer.pom.generated; import java.util.ArrayList; import java.util.List; @@ -18,11 +18,11 @@ import javax.xml.bind.annotation.XmlType; /** * 4.0.0 - * + * *

Java class for CiManagement complex type. - * + * *

The following schema fragment specifies the expected content contained within this class. - * + * *

  * <complexType name="CiManagement">
  *   <complexContent>
@@ -46,8 +46,8 @@ import javax.xml.bind.annotation.XmlType;
  *   </complexContent>
  * </complexType>
  * 
- * - * + * + * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "CiManagement", propOrder = { @@ -65,11 +65,11 @@ public class CiManagement { /** * Gets the value of the system property. - * + * * @return * possible object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public String getSystem() { @@ -78,11 +78,11 @@ public class CiManagement { /** * Sets the value of the system property. - * + * * @param value * allowed object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setSystem(String value) { @@ -91,11 +91,11 @@ public class CiManagement { /** * Gets the value of the url property. - * + * * @return * possible object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public String getUrl() { @@ -104,11 +104,11 @@ public class CiManagement { /** * Sets the value of the url property. - * + * * @param value * allowed object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setUrl(String value) { @@ -117,11 +117,11 @@ public class CiManagement { /** * Gets the value of the notifiers property. - * + * * @return * possible object is * {@link CiManagement.Notifiers } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public CiManagement.Notifiers getNotifiers() { @@ -130,11 +130,11 @@ public class CiManagement { /** * Sets the value of the notifiers property. - * + * * @param value * allowed object is * {@link CiManagement.Notifiers } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setNotifiers(CiManagement.Notifiers value) { @@ -144,9 +144,9 @@ public class CiManagement { /** *

Java class for anonymous complex type. - * + * *

The following schema fragment specifies the expected content contained within this class. - * + * *

      * <complexType>
      *   <complexContent>
@@ -158,8 +158,8 @@ public class CiManagement {
      *   </complexContent>
      * </complexType>
      * 
- * - * + * + * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { @@ -173,25 +173,25 @@ public class CiManagement { /** * Gets the value of the notifier property. - * + * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the notifier property. - * + * *

* For example, to add a new item, do as follows: *

          *    getNotifier().add(newItem);
          * 
- * - * + * + * *

* Objects of the following type(s) are allowed in the list * {@link Notifier } - * - * + * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public List getNotifier() { diff --git a/src/main/java/org/codesecure/dependencycheck/analyzer/pom/generated/Contributor.java b/src/main/java/org/owasp/dependencycheck/analyzer/pom/generated/Contributor.java similarity index 94% rename from src/main/java/org/codesecure/dependencycheck/analyzer/pom/generated/Contributor.java rename to src/main/java/org/owasp/dependencycheck/analyzer/pom/generated/Contributor.java index 0f8fdd94d..254ad8e50 100644 --- a/src/main/java/org/codesecure/dependencycheck/analyzer/pom/generated/Contributor.java +++ b/src/main/java/org/owasp/dependencycheck/analyzer/pom/generated/Contributor.java @@ -1,12 +1,12 @@ // -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 in JDK 6 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2012.11.09 at 12:33:57 PM EST +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 in JDK 6 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2012.11.09 at 12:33:57 PM EST // -package org.codesecure.dependencycheck.analyzer.pom.generated; +package org.owasp.dependencycheck.analyzer.pom.generated; import java.util.ArrayList; import java.util.List; @@ -19,16 +19,16 @@ import org.w3c.dom.Element; /** - * + * * Description of a person who has contributed to the project, but who does * not have commit privileges. Usually, these contributions come in the * form of patches submitted. - * - * + * + * *

Java class for Contributor complex type. - * + * *

The following schema fragment specifies the expected content contained within this class. - * + * *

  * <complexType name="Contributor">
  *   <complexContent>
@@ -67,8 +67,8 @@ import org.w3c.dom.Element;
  *   </complexContent>
  * </complexType>
  * 
- * - * + * + * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Contributor", propOrder = { @@ -96,11 +96,11 @@ public class Contributor { /** * Gets the value of the name property. - * + * * @return * possible object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public String getName() { @@ -109,11 +109,11 @@ public class Contributor { /** * Sets the value of the name property. - * + * * @param value * allowed object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setName(String value) { @@ -122,11 +122,11 @@ public class Contributor { /** * Gets the value of the email property. - * + * * @return * possible object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public String getEmail() { @@ -135,11 +135,11 @@ public class Contributor { /** * Sets the value of the email property. - * + * * @param value * allowed object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setEmail(String value) { @@ -148,11 +148,11 @@ public class Contributor { /** * Gets the value of the url property. - * + * * @return * possible object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public String getUrl() { @@ -161,11 +161,11 @@ public class Contributor { /** * Sets the value of the url property. - * + * * @param value * allowed object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setUrl(String value) { @@ -174,11 +174,11 @@ public class Contributor { /** * Gets the value of the organization property. - * + * * @return * possible object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public String getOrganization() { @@ -187,11 +187,11 @@ public class Contributor { /** * Sets the value of the organization property. - * + * * @param value * allowed object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setOrganization(String value) { @@ -200,11 +200,11 @@ public class Contributor { /** * Gets the value of the organizationUrl property. - * + * * @return * possible object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public String getOrganizationUrl() { @@ -213,11 +213,11 @@ public class Contributor { /** * Sets the value of the organizationUrl property. - * + * * @param value * allowed object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setOrganizationUrl(String value) { @@ -226,11 +226,11 @@ public class Contributor { /** * Gets the value of the roles property. - * + * * @return * possible object is * {@link Contributor.Roles } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public Contributor.Roles getRoles() { @@ -239,11 +239,11 @@ public class Contributor { /** * Sets the value of the roles property. - * + * * @param value * allowed object is * {@link Contributor.Roles } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setRoles(Contributor.Roles value) { @@ -252,11 +252,11 @@ public class Contributor { /** * Gets the value of the timezone property. - * + * * @return * possible object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public String getTimezone() { @@ -265,11 +265,11 @@ public class Contributor { /** * Sets the value of the timezone property. - * + * * @param value * allowed object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setTimezone(String value) { @@ -278,11 +278,11 @@ public class Contributor { /** * Gets the value of the properties property. - * + * * @return * possible object is * {@link Contributor.Properties } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public Contributor.Properties getProperties() { @@ -291,11 +291,11 @@ public class Contributor { /** * Sets the value of the properties property. - * + * * @param value * allowed object is * {@link Contributor.Properties } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setProperties(Contributor.Properties value) { @@ -305,9 +305,9 @@ public class Contributor { /** *

Java class for anonymous complex type. - * + * *

The following schema fragment specifies the expected content contained within this class. - * + * *

      * <complexType>
      *   <complexContent>
@@ -319,8 +319,8 @@ public class Contributor {
      *   </complexContent>
      * </complexType>
      * 
- * - * + * + * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { @@ -335,25 +335,25 @@ public class Contributor { /** * Gets the value of the any property. - * + * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. - * + * *

* For example, to add a new item, do as follows: *

          *    getAny().add(newItem);
          * 
- * - * + * + * *

* Objects of the following type(s) are allowed in the list * {@link Element } - * - * + * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public List getAny() { @@ -368,9 +368,9 @@ public class Contributor { /** *

Java class for anonymous complex type. - * + * *

The following schema fragment specifies the expected content contained within this class. - * + * *

      * <complexType>
      *   <complexContent>
@@ -382,8 +382,8 @@ public class Contributor {
      *   </complexContent>
      * </complexType>
      * 
- * - * + * + * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { @@ -397,25 +397,25 @@ public class Contributor { /** * Gets the value of the role property. - * + * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the role property. - * + * *

* For example, to add a new item, do as follows: *

          *    getRole().add(newItem);
          * 
- * - * + * + * *

* Objects of the following type(s) are allowed in the list * {@link String } - * - * + * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public List getRole() { diff --git a/src/main/java/org/codesecure/dependencycheck/analyzer/pom/generated/Dependency.java b/src/main/java/org/owasp/dependencycheck/analyzer/pom/generated/Dependency.java similarity index 94% rename from src/main/java/org/codesecure/dependencycheck/analyzer/pom/generated/Dependency.java rename to src/main/java/org/owasp/dependencycheck/analyzer/pom/generated/Dependency.java index 8783e3015..c7bc2d084 100644 --- a/src/main/java/org/codesecure/dependencycheck/analyzer/pom/generated/Dependency.java +++ b/src/main/java/org/owasp/dependencycheck/analyzer/pom/generated/Dependency.java @@ -1,12 +1,12 @@ // -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 in JDK 6 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2012.11.09 at 12:33:57 PM EST +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 in JDK 6 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2012.11.09 at 12:33:57 PM EST // -package org.codesecure.dependencycheck.analyzer.pom.generated; +package org.owasp.dependencycheck.analyzer.pom.generated; import java.util.ArrayList; import java.util.List; @@ -19,11 +19,11 @@ import javax.xml.bind.annotation.XmlType; /** * 3.0.0+ - * + * *

Java class for Dependency complex type. - * + * *

The following schema fragment specifies the expected content contained within this class. - * + * *

  * <complexType name="Dependency">
  *   <complexContent>
@@ -53,8 +53,8 @@ import javax.xml.bind.annotation.XmlType;
  *   </complexContent>
  * </complexType>
  * 
- * - * + * + * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Dependency", propOrder = { @@ -86,11 +86,11 @@ public class Dependency { /** * Gets the value of the groupId property. - * + * * @return * possible object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public String getGroupId() { @@ -99,11 +99,11 @@ public class Dependency { /** * Sets the value of the groupId property. - * + * * @param value * allowed object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setGroupId(String value) { @@ -112,11 +112,11 @@ public class Dependency { /** * Gets the value of the artifactId property. - * + * * @return * possible object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public String getArtifactId() { @@ -125,11 +125,11 @@ public class Dependency { /** * Sets the value of the artifactId property. - * + * * @param value * allowed object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setArtifactId(String value) { @@ -138,11 +138,11 @@ public class Dependency { /** * Gets the value of the version property. - * + * * @return * possible object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public String getVersion() { @@ -151,11 +151,11 @@ public class Dependency { /** * Sets the value of the version property. - * + * * @param value * allowed object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setVersion(String value) { @@ -164,11 +164,11 @@ public class Dependency { /** * Gets the value of the type property. - * + * * @return * possible object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public String getType() { @@ -177,11 +177,11 @@ public class Dependency { /** * Sets the value of the type property. - * + * * @param value * allowed object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setType(String value) { @@ -190,11 +190,11 @@ public class Dependency { /** * Gets the value of the classifier property. - * + * * @return * possible object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public String getClassifier() { @@ -203,11 +203,11 @@ public class Dependency { /** * Sets the value of the classifier property. - * + * * @param value * allowed object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setClassifier(String value) { @@ -216,11 +216,11 @@ public class Dependency { /** * Gets the value of the scope property. - * + * * @return * possible object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public String getScope() { @@ -229,11 +229,11 @@ public class Dependency { /** * Sets the value of the scope property. - * + * * @param value * allowed object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setScope(String value) { @@ -242,11 +242,11 @@ public class Dependency { /** * Gets the value of the systemPath property. - * + * * @return * possible object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public String getSystemPath() { @@ -255,11 +255,11 @@ public class Dependency { /** * Sets the value of the systemPath property. - * + * * @param value * allowed object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setSystemPath(String value) { @@ -268,11 +268,11 @@ public class Dependency { /** * Gets the value of the exclusions property. - * + * * @return * possible object is * {@link Dependency.Exclusions } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public Dependency.Exclusions getExclusions() { @@ -281,11 +281,11 @@ public class Dependency { /** * Sets the value of the exclusions property. - * + * * @param value * allowed object is * {@link Dependency.Exclusions } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setExclusions(Dependency.Exclusions value) { @@ -294,11 +294,11 @@ public class Dependency { /** * Gets the value of the optional property. - * + * * @return * possible object is * {@link Boolean } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public Boolean isOptional() { @@ -307,11 +307,11 @@ public class Dependency { /** * Sets the value of the optional property. - * + * * @param value * allowed object is * {@link Boolean } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setOptional(Boolean value) { @@ -321,9 +321,9 @@ public class Dependency { /** *

Java class for anonymous complex type. - * + * *

The following schema fragment specifies the expected content contained within this class. - * + * *

      * <complexType>
      *   <complexContent>
@@ -335,8 +335,8 @@ public class Dependency {
      *   </complexContent>
      * </complexType>
      * 
- * - * + * + * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { @@ -350,25 +350,25 @@ public class Dependency { /** * Gets the value of the exclusion property. - * + * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the exclusion property. - * + * *

* For example, to add a new item, do as follows: *

          *    getExclusion().add(newItem);
          * 
- * - * + * + * *

* Objects of the following type(s) are allowed in the list * {@link Exclusion } - * - * + * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public List getExclusion() { diff --git a/src/main/java/org/codesecure/dependencycheck/analyzer/pom/generated/DependencyManagement.java b/src/main/java/org/owasp/dependencycheck/analyzer/pom/generated/DependencyManagement.java similarity index 92% rename from src/main/java/org/codesecure/dependencycheck/analyzer/pom/generated/DependencyManagement.java rename to src/main/java/org/owasp/dependencycheck/analyzer/pom/generated/DependencyManagement.java index 3867a2895..f130edce0 100644 --- a/src/main/java/org/codesecure/dependencycheck/analyzer/pom/generated/DependencyManagement.java +++ b/src/main/java/org/owasp/dependencycheck/analyzer/pom/generated/DependencyManagement.java @@ -1,12 +1,12 @@ // -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 in JDK 6 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2012.11.09 at 12:33:57 PM EST +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 in JDK 6 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2012.11.09 at 12:33:57 PM EST // -package org.codesecure.dependencycheck.analyzer.pom.generated; +package org.owasp.dependencycheck.analyzer.pom.generated; import java.util.ArrayList; import java.util.List; @@ -17,14 +17,14 @@ import javax.xml.bind.annotation.XmlType; /** - * + * * Section for management of default dependency information for use in a group of POMs. - * - * + * + * *

Java class for DependencyManagement complex type. - * + * *

The following schema fragment specifies the expected content contained within this class. - * + * *

  * <complexType name="DependencyManagement">
  *   <complexContent>
@@ -46,8 +46,8 @@ import javax.xml.bind.annotation.XmlType;
  *   </complexContent>
  * </complexType>
  * 
- * - * + * + * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "DependencyManagement", propOrder = { @@ -61,11 +61,11 @@ public class DependencyManagement { /** * Gets the value of the dependencies property. - * + * * @return * possible object is * {@link DependencyManagement.Dependencies } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public DependencyManagement.Dependencies getDependencies() { @@ -74,11 +74,11 @@ public class DependencyManagement { /** * Sets the value of the dependencies property. - * + * * @param value * allowed object is * {@link DependencyManagement.Dependencies } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setDependencies(DependencyManagement.Dependencies value) { @@ -88,9 +88,9 @@ public class DependencyManagement { /** *

Java class for anonymous complex type. - * + * *

The following schema fragment specifies the expected content contained within this class. - * + * *

      * <complexType>
      *   <complexContent>
@@ -102,8 +102,8 @@ public class DependencyManagement {
      *   </complexContent>
      * </complexType>
      * 
- * - * + * + * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { @@ -117,25 +117,25 @@ public class DependencyManagement { /** * Gets the value of the dependency property. - * + * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the dependency property. - * + * *

* For example, to add a new item, do as follows: *

          *    getDependency().add(newItem);
          * 
- * - * + * + * *

* Objects of the following type(s) are allowed in the list * {@link Dependency } - * - * + * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public List getDependency() { diff --git a/src/main/java/org/codesecure/dependencycheck/analyzer/pom/generated/DeploymentRepository.java b/src/main/java/org/owasp/dependencycheck/analyzer/pom/generated/DeploymentRepository.java similarity index 93% rename from src/main/java/org/codesecure/dependencycheck/analyzer/pom/generated/DeploymentRepository.java rename to src/main/java/org/owasp/dependencycheck/analyzer/pom/generated/DeploymentRepository.java index a1c4e4d86..4a6dceb62 100644 --- a/src/main/java/org/codesecure/dependencycheck/analyzer/pom/generated/DeploymentRepository.java +++ b/src/main/java/org/owasp/dependencycheck/analyzer/pom/generated/DeploymentRepository.java @@ -1,12 +1,12 @@ // -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 in JDK 6 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2012.11.09 at 12:33:57 PM EST +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 in JDK 6 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2012.11.09 at 12:33:57 PM EST // -package org.codesecure.dependencycheck.analyzer.pom.generated; +package org.owasp.dependencycheck.analyzer.pom.generated; import javax.annotation.Generated; import javax.xml.bind.annotation.XmlAccessType; @@ -16,14 +16,14 @@ import javax.xml.bind.annotation.XmlType; /** - * + * * Repository contains the information needed for deploying to the remote repository. - * - * + * + * *

Java class for DeploymentRepository complex type. - * + * *

The following schema fragment specifies the expected content contained within this class. - * + * *

  * <complexType name="DeploymentRepository">
  *   <complexContent>
@@ -39,8 +39,8 @@ import javax.xml.bind.annotation.XmlType;
  *   </complexContent>
  * </complexType>
  * 
- * - * + * + * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "DeploymentRepository", propOrder = { @@ -64,11 +64,11 @@ public class DeploymentRepository { /** * Gets the value of the uniqueVersion property. - * + * * @return * possible object is * {@link Boolean } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public Boolean isUniqueVersion() { @@ -77,11 +77,11 @@ public class DeploymentRepository { /** * Sets the value of the uniqueVersion property. - * + * * @param value * allowed object is * {@link Boolean } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setUniqueVersion(Boolean value) { @@ -90,11 +90,11 @@ public class DeploymentRepository { /** * Gets the value of the id property. - * + * * @return * possible object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public String getId() { @@ -103,11 +103,11 @@ public class DeploymentRepository { /** * Sets the value of the id property. - * + * * @param value * allowed object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setId(String value) { @@ -116,11 +116,11 @@ public class DeploymentRepository { /** * Gets the value of the name property. - * + * * @return * possible object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public String getName() { @@ -129,11 +129,11 @@ public class DeploymentRepository { /** * Sets the value of the name property. - * + * * @param value * allowed object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setName(String value) { @@ -142,11 +142,11 @@ public class DeploymentRepository { /** * Gets the value of the url property. - * + * * @return * possible object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public String getUrl() { @@ -155,11 +155,11 @@ public class DeploymentRepository { /** * Sets the value of the url property. - * + * * @param value * allowed object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setUrl(String value) { @@ -168,11 +168,11 @@ public class DeploymentRepository { /** * Gets the value of the layout property. - * + * * @return * possible object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public String getLayout() { @@ -181,11 +181,11 @@ public class DeploymentRepository { /** * Sets the value of the layout property. - * + * * @param value * allowed object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setLayout(String value) { diff --git a/src/main/java/org/codesecure/dependencycheck/analyzer/pom/generated/Developer.java b/src/main/java/org/owasp/dependencycheck/analyzer/pom/generated/Developer.java similarity index 94% rename from src/main/java/org/codesecure/dependencycheck/analyzer/pom/generated/Developer.java rename to src/main/java/org/owasp/dependencycheck/analyzer/pom/generated/Developer.java index 8b354510b..af94c9a61 100644 --- a/src/main/java/org/codesecure/dependencycheck/analyzer/pom/generated/Developer.java +++ b/src/main/java/org/owasp/dependencycheck/analyzer/pom/generated/Developer.java @@ -1,12 +1,12 @@ // -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 in JDK 6 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2012.11.09 at 12:33:57 PM EST +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 in JDK 6 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2012.11.09 at 12:33:57 PM EST // -package org.codesecure.dependencycheck.analyzer.pom.generated; +package org.owasp.dependencycheck.analyzer.pom.generated; import java.util.ArrayList; import java.util.List; @@ -19,14 +19,14 @@ import org.w3c.dom.Element; /** - * + * * Information about one of the committers on this project. - * - * + * + * *

Java class for Developer complex type. - * + * *

The following schema fragment specifies the expected content contained within this class. - * + * *

  * <complexType name="Developer">
  *   <complexContent>
@@ -66,8 +66,8 @@ import org.w3c.dom.Element;
  *   </complexContent>
  * </complexType>
  * 
- * - * + * + * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Developer", propOrder = { @@ -97,11 +97,11 @@ public class Developer { /** * Gets the value of the id property. - * + * * @return * possible object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public String getId() { @@ -110,11 +110,11 @@ public class Developer { /** * Sets the value of the id property. - * + * * @param value * allowed object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setId(String value) { @@ -123,11 +123,11 @@ public class Developer { /** * Gets the value of the name property. - * + * * @return * possible object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public String getName() { @@ -136,11 +136,11 @@ public class Developer { /** * Sets the value of the name property. - * + * * @param value * allowed object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setName(String value) { @@ -149,11 +149,11 @@ public class Developer { /** * Gets the value of the email property. - * + * * @return * possible object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public String getEmail() { @@ -162,11 +162,11 @@ public class Developer { /** * Sets the value of the email property. - * + * * @param value * allowed object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setEmail(String value) { @@ -175,11 +175,11 @@ public class Developer { /** * Gets the value of the url property. - * + * * @return * possible object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public String getUrl() { @@ -188,11 +188,11 @@ public class Developer { /** * Sets the value of the url property. - * + * * @param value * allowed object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setUrl(String value) { @@ -201,11 +201,11 @@ public class Developer { /** * Gets the value of the organization property. - * + * * @return * possible object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public String getOrganization() { @@ -214,11 +214,11 @@ public class Developer { /** * Sets the value of the organization property. - * + * * @param value * allowed object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setOrganization(String value) { @@ -227,11 +227,11 @@ public class Developer { /** * Gets the value of the organizationUrl property. - * + * * @return * possible object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public String getOrganizationUrl() { @@ -240,11 +240,11 @@ public class Developer { /** * Sets the value of the organizationUrl property. - * + * * @param value * allowed object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setOrganizationUrl(String value) { @@ -253,11 +253,11 @@ public class Developer { /** * Gets the value of the roles property. - * + * * @return * possible object is * {@link Developer.Roles } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public Developer.Roles getRoles() { @@ -266,11 +266,11 @@ public class Developer { /** * Sets the value of the roles property. - * + * * @param value * allowed object is * {@link Developer.Roles } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setRoles(Developer.Roles value) { @@ -279,11 +279,11 @@ public class Developer { /** * Gets the value of the timezone property. - * + * * @return * possible object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public String getTimezone() { @@ -292,11 +292,11 @@ public class Developer { /** * Sets the value of the timezone property. - * + * * @param value * allowed object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setTimezone(String value) { @@ -305,11 +305,11 @@ public class Developer { /** * Gets the value of the properties property. - * + * * @return * possible object is * {@link Developer.Properties } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public Developer.Properties getProperties() { @@ -318,11 +318,11 @@ public class Developer { /** * Sets the value of the properties property. - * + * * @param value * allowed object is * {@link Developer.Properties } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setProperties(Developer.Properties value) { @@ -332,9 +332,9 @@ public class Developer { /** *

Java class for anonymous complex type. - * + * *

The following schema fragment specifies the expected content contained within this class. - * + * *

      * <complexType>
      *   <complexContent>
@@ -346,8 +346,8 @@ public class Developer {
      *   </complexContent>
      * </complexType>
      * 
- * - * + * + * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { @@ -362,25 +362,25 @@ public class Developer { /** * Gets the value of the any property. - * + * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. - * + * *

* For example, to add a new item, do as follows: *

          *    getAny().add(newItem);
          * 
- * - * + * + * *

* Objects of the following type(s) are allowed in the list * {@link Element } - * - * + * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public List getAny() { @@ -395,9 +395,9 @@ public class Developer { /** *

Java class for anonymous complex type. - * + * *

The following schema fragment specifies the expected content contained within this class. - * + * *

      * <complexType>
      *   <complexContent>
@@ -409,8 +409,8 @@ public class Developer {
      *   </complexContent>
      * </complexType>
      * 
- * - * + * + * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { @@ -424,25 +424,25 @@ public class Developer { /** * Gets the value of the role property. - * + * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the role property. - * + * *

* For example, to add a new item, do as follows: *

          *    getRole().add(newItem);
          * 
- * - * + * + * *

* Objects of the following type(s) are allowed in the list * {@link String } - * - * + * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public List getRole() { diff --git a/src/main/java/org/codesecure/dependencycheck/analyzer/pom/generated/DistributionManagement.java b/src/main/java/org/owasp/dependencycheck/analyzer/pom/generated/DistributionManagement.java similarity index 93% rename from src/main/java/org/codesecure/dependencycheck/analyzer/pom/generated/DistributionManagement.java rename to src/main/java/org/owasp/dependencycheck/analyzer/pom/generated/DistributionManagement.java index 4e025bb4c..d477fe150 100644 --- a/src/main/java/org/codesecure/dependencycheck/analyzer/pom/generated/DistributionManagement.java +++ b/src/main/java/org/owasp/dependencycheck/analyzer/pom/generated/DistributionManagement.java @@ -1,12 +1,12 @@ // -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 in JDK 6 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2012.11.09 at 12:33:57 PM EST +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 in JDK 6 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2012.11.09 at 12:33:57 PM EST // -package org.codesecure.dependencycheck.analyzer.pom.generated; +package org.owasp.dependencycheck.analyzer.pom.generated; import javax.annotation.Generated; import javax.xml.bind.annotation.XmlAccessType; @@ -15,16 +15,16 @@ import javax.xml.bind.annotation.XmlType; /** - * + * * This elements describes all that pertains to distribution for a project. * It is primarily used for deployment of artifacts and the site * produced by the build. - * - * + * + * *

Java class for DistributionManagement complex type. - * + * *

The following schema fragment specifies the expected content contained within this class. - * + * *

  * <complexType name="DistributionManagement">
  *   <complexContent>
@@ -41,8 +41,8 @@ import javax.xml.bind.annotation.XmlType;
  *   </complexContent>
  * </complexType>
  * 
- * - * + * + * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "DistributionManagement", propOrder = { @@ -66,11 +66,11 @@ public class DistributionManagement { /** * Gets the value of the repository property. - * + * * @return * possible object is * {@link DeploymentRepository } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public DeploymentRepository getRepository() { @@ -79,11 +79,11 @@ public class DistributionManagement { /** * Sets the value of the repository property. - * + * * @param value * allowed object is * {@link DeploymentRepository } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setRepository(DeploymentRepository value) { @@ -92,11 +92,11 @@ public class DistributionManagement { /** * Gets the value of the snapshotRepository property. - * + * * @return * possible object is * {@link DeploymentRepository } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public DeploymentRepository getSnapshotRepository() { @@ -105,11 +105,11 @@ public class DistributionManagement { /** * Sets the value of the snapshotRepository property. - * + * * @param value * allowed object is * {@link DeploymentRepository } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setSnapshotRepository(DeploymentRepository value) { @@ -118,11 +118,11 @@ public class DistributionManagement { /** * Gets the value of the site property. - * + * * @return * possible object is * {@link Site } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public Site getSite() { @@ -131,11 +131,11 @@ public class DistributionManagement { /** * Sets the value of the site property. - * + * * @param value * allowed object is * {@link Site } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setSite(Site value) { @@ -144,11 +144,11 @@ public class DistributionManagement { /** * Gets the value of the downloadUrl property. - * + * * @return * possible object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public String getDownloadUrl() { @@ -157,11 +157,11 @@ public class DistributionManagement { /** * Sets the value of the downloadUrl property. - * + * * @param value * allowed object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setDownloadUrl(String value) { @@ -170,11 +170,11 @@ public class DistributionManagement { /** * Gets the value of the relocation property. - * + * * @return * possible object is * {@link Relocation } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public Relocation getRelocation() { @@ -183,11 +183,11 @@ public class DistributionManagement { /** * Sets the value of the relocation property. - * + * * @param value * allowed object is * {@link Relocation } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setRelocation(Relocation value) { @@ -196,11 +196,11 @@ public class DistributionManagement { /** * Gets the value of the status property. - * + * * @return * possible object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public String getStatus() { @@ -209,11 +209,11 @@ public class DistributionManagement { /** * Sets the value of the status property. - * + * * @param value * allowed object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setStatus(String value) { diff --git a/src/main/java/org/codesecure/dependencycheck/analyzer/pom/generated/Exclusion.java b/src/main/java/org/owasp/dependencycheck/analyzer/pom/generated/Exclusion.java similarity index 90% rename from src/main/java/org/codesecure/dependencycheck/analyzer/pom/generated/Exclusion.java rename to src/main/java/org/owasp/dependencycheck/analyzer/pom/generated/Exclusion.java index 46dfdc9b7..d4310ad59 100644 --- a/src/main/java/org/codesecure/dependencycheck/analyzer/pom/generated/Exclusion.java +++ b/src/main/java/org/owasp/dependencycheck/analyzer/pom/generated/Exclusion.java @@ -1,12 +1,12 @@ // -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 in JDK 6 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2012.11.09 at 12:33:57 PM EST +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 in JDK 6 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2012.11.09 at 12:33:57 PM EST // -package org.codesecure.dependencycheck.analyzer.pom.generated; +package org.owasp.dependencycheck.analyzer.pom.generated; import javax.annotation.Generated; import javax.xml.bind.annotation.XmlAccessType; @@ -16,11 +16,11 @@ import javax.xml.bind.annotation.XmlType; /** * 4.0.0 - * + * *

Java class for Exclusion complex type. - * + * *

The following schema fragment specifies the expected content contained within this class. - * + * *

  * <complexType name="Exclusion">
  *   <complexContent>
@@ -33,8 +33,8 @@ import javax.xml.bind.annotation.XmlType;
  *   </complexContent>
  * </complexType>
  * 
- * - * + * + * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Exclusion", propOrder = { @@ -50,11 +50,11 @@ public class Exclusion { /** * Gets the value of the artifactId property. - * + * * @return * possible object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public String getArtifactId() { @@ -63,11 +63,11 @@ public class Exclusion { /** * Sets the value of the artifactId property. - * + * * @param value * allowed object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setArtifactId(String value) { @@ -76,11 +76,11 @@ public class Exclusion { /** * Gets the value of the groupId property. - * + * * @return * possible object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public String getGroupId() { @@ -89,11 +89,11 @@ public class Exclusion { /** * Sets the value of the groupId property. - * + * * @param value * allowed object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setGroupId(String value) { diff --git a/src/main/java/org/codesecure/dependencycheck/analyzer/pom/generated/Extension.java b/src/main/java/org/owasp/dependencycheck/analyzer/pom/generated/Extension.java similarity index 91% rename from src/main/java/org/codesecure/dependencycheck/analyzer/pom/generated/Extension.java rename to src/main/java/org/owasp/dependencycheck/analyzer/pom/generated/Extension.java index 7322695b1..c38000b32 100644 --- a/src/main/java/org/codesecure/dependencycheck/analyzer/pom/generated/Extension.java +++ b/src/main/java/org/owasp/dependencycheck/analyzer/pom/generated/Extension.java @@ -1,12 +1,12 @@ // -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 in JDK 6 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2012.11.09 at 12:33:57 PM EST +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 in JDK 6 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2012.11.09 at 12:33:57 PM EST // -package org.codesecure.dependencycheck.analyzer.pom.generated; +package org.owasp.dependencycheck.analyzer.pom.generated; import javax.annotation.Generated; import javax.xml.bind.annotation.XmlAccessType; @@ -16,11 +16,11 @@ import javax.xml.bind.annotation.XmlType; /** * Describes a build extension to utilise. - * + * *

Java class for Extension complex type. - * + * *

The following schema fragment specifies the expected content contained within this class. - * + * *

  * <complexType name="Extension">
  *   <complexContent>
@@ -34,8 +34,8 @@ import javax.xml.bind.annotation.XmlType;
  *   </complexContent>
  * </complexType>
  * 
- * - * + * + * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Extension", propOrder = { @@ -53,11 +53,11 @@ public class Extension { /** * Gets the value of the groupId property. - * + * * @return * possible object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public String getGroupId() { @@ -66,11 +66,11 @@ public class Extension { /** * Sets the value of the groupId property. - * + * * @param value * allowed object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setGroupId(String value) { @@ -79,11 +79,11 @@ public class Extension { /** * Gets the value of the artifactId property. - * + * * @return * possible object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public String getArtifactId() { @@ -92,11 +92,11 @@ public class Extension { /** * Sets the value of the artifactId property. - * + * * @param value * allowed object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setArtifactId(String value) { @@ -105,11 +105,11 @@ public class Extension { /** * Gets the value of the version property. - * + * * @return * possible object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public String getVersion() { @@ -118,11 +118,11 @@ public class Extension { /** * Sets the value of the version property. - * + * * @param value * allowed object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setVersion(String value) { diff --git a/src/main/java/org/codesecure/dependencycheck/analyzer/pom/generated/IssueManagement.java b/src/main/java/org/owasp/dependencycheck/analyzer/pom/generated/IssueManagement.java similarity index 90% rename from src/main/java/org/codesecure/dependencycheck/analyzer/pom/generated/IssueManagement.java rename to src/main/java/org/owasp/dependencycheck/analyzer/pom/generated/IssueManagement.java index 7eb379ce2..c7ed10e95 100644 --- a/src/main/java/org/codesecure/dependencycheck/analyzer/pom/generated/IssueManagement.java +++ b/src/main/java/org/owasp/dependencycheck/analyzer/pom/generated/IssueManagement.java @@ -1,12 +1,12 @@ // -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 in JDK 6 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2012.11.09 at 12:33:57 PM EST +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 in JDK 6 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2012.11.09 at 12:33:57 PM EST // -package org.codesecure.dependencycheck.analyzer.pom.generated; +package org.owasp.dependencycheck.analyzer.pom.generated; import javax.annotation.Generated; import javax.xml.bind.annotation.XmlAccessType; @@ -15,14 +15,14 @@ import javax.xml.bind.annotation.XmlType; /** - * + * * Information about the issue tracking (or bug tracking) system used to manage this project. - * - * + * + * *

Java class for IssueManagement complex type. - * + * *

The following schema fragment specifies the expected content contained within this class. - * + * *

  * <complexType name="IssueManagement">
  *   <complexContent>
@@ -35,8 +35,8 @@ import javax.xml.bind.annotation.XmlType;
  *   </complexContent>
  * </complexType>
  * 
- * - * + * + * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "IssueManagement", propOrder = { @@ -52,11 +52,11 @@ public class IssueManagement { /** * Gets the value of the system property. - * + * * @return * possible object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public String getSystem() { @@ -65,11 +65,11 @@ public class IssueManagement { /** * Sets the value of the system property. - * + * * @param value * allowed object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setSystem(String value) { @@ -78,11 +78,11 @@ public class IssueManagement { /** * Gets the value of the url property. - * + * * @return * possible object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public String getUrl() { @@ -91,11 +91,11 @@ public class IssueManagement { /** * Sets the value of the url property. - * + * * @param value * allowed object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setUrl(String value) { diff --git a/src/main/java/org/codesecure/dependencycheck/analyzer/pom/generated/License.java b/src/main/java/org/owasp/dependencycheck/analyzer/pom/generated/License.java similarity index 92% rename from src/main/java/org/codesecure/dependencycheck/analyzer/pom/generated/License.java rename to src/main/java/org/owasp/dependencycheck/analyzer/pom/generated/License.java index 43592ad28..c6c6b4614 100644 --- a/src/main/java/org/codesecure/dependencycheck/analyzer/pom/generated/License.java +++ b/src/main/java/org/owasp/dependencycheck/analyzer/pom/generated/License.java @@ -1,12 +1,12 @@ // -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 in JDK 6 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2012.11.09 at 12:33:57 PM EST +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 in JDK 6 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2012.11.09 at 12:33:57 PM EST // -package org.codesecure.dependencycheck.analyzer.pom.generated; +package org.owasp.dependencycheck.analyzer.pom.generated; import javax.annotation.Generated; import javax.xml.bind.annotation.XmlAccessType; @@ -15,16 +15,16 @@ import javax.xml.bind.annotation.XmlType; /** - * + * * Describes the licenses for this project. This is used to generate * the license page of the project's web site, as well as being taken into consideration in other reporting and * validation. The licenses listed for the project are that of the project itself, and not of dependencies. - * - * + * + * *

Java class for License complex type. - * + * *

The following schema fragment specifies the expected content contained within this class. - * + * *

  * <complexType name="License">
  *   <complexContent>
@@ -39,8 +39,8 @@ import javax.xml.bind.annotation.XmlType;
  *   </complexContent>
  * </complexType>
  * 
- * - * + * + * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "License", propOrder = { @@ -60,11 +60,11 @@ public class License { /** * Gets the value of the name property. - * + * * @return * possible object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public String getName() { @@ -73,11 +73,11 @@ public class License { /** * Sets the value of the name property. - * + * * @param value * allowed object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setName(String value) { @@ -86,11 +86,11 @@ public class License { /** * Gets the value of the url property. - * + * * @return * possible object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public String getUrl() { @@ -99,11 +99,11 @@ public class License { /** * Sets the value of the url property. - * + * * @param value * allowed object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setUrl(String value) { @@ -112,11 +112,11 @@ public class License { /** * Gets the value of the distribution property. - * + * * @return * possible object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public String getDistribution() { @@ -125,11 +125,11 @@ public class License { /** * Sets the value of the distribution property. - * + * * @param value * allowed object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setDistribution(String value) { @@ -138,11 +138,11 @@ public class License { /** * Gets the value of the comments property. - * + * * @return * possible object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public String getComments() { @@ -151,11 +151,11 @@ public class License { /** * Sets the value of the comments property. - * + * * @param value * allowed object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setComments(String value) { diff --git a/src/main/java/org/codesecure/dependencycheck/analyzer/pom/generated/MailingList.java b/src/main/java/org/owasp/dependencycheck/analyzer/pom/generated/MailingList.java similarity index 94% rename from src/main/java/org/codesecure/dependencycheck/analyzer/pom/generated/MailingList.java rename to src/main/java/org/owasp/dependencycheck/analyzer/pom/generated/MailingList.java index 0efcb279d..a69a5f4da 100644 --- a/src/main/java/org/codesecure/dependencycheck/analyzer/pom/generated/MailingList.java +++ b/src/main/java/org/owasp/dependencycheck/analyzer/pom/generated/MailingList.java @@ -1,12 +1,12 @@ // -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 in JDK 6 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2012.11.09 at 12:33:57 PM EST +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 in JDK 6 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2012.11.09 at 12:33:57 PM EST // -package org.codesecure.dependencycheck.analyzer.pom.generated; +package org.owasp.dependencycheck.analyzer.pom.generated; import java.util.ArrayList; import java.util.List; @@ -17,15 +17,15 @@ import javax.xml.bind.annotation.XmlType; /** - * + * * This element describes all of the mailing lists associated with * a project. The auto-generated site references this information. - * - * + * + * *

Java class for MailingList complex type. - * + * *

The following schema fragment specifies the expected content contained within this class. - * + * *

  * <complexType name="MailingList">
  *   <complexContent>
@@ -52,8 +52,8 @@ import javax.xml.bind.annotation.XmlType;
  *   </complexContent>
  * </complexType>
  * 
- * - * + * + * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "MailingList", propOrder = { @@ -77,11 +77,11 @@ public class MailingList { /** * Gets the value of the name property. - * + * * @return * possible object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public String getName() { @@ -90,11 +90,11 @@ public class MailingList { /** * Sets the value of the name property. - * + * * @param value * allowed object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setName(String value) { @@ -103,11 +103,11 @@ public class MailingList { /** * Gets the value of the subscribe property. - * + * * @return * possible object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public String getSubscribe() { @@ -116,11 +116,11 @@ public class MailingList { /** * Sets the value of the subscribe property. - * + * * @param value * allowed object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setSubscribe(String value) { @@ -129,11 +129,11 @@ public class MailingList { /** * Gets the value of the unsubscribe property. - * + * * @return * possible object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public String getUnsubscribe() { @@ -142,11 +142,11 @@ public class MailingList { /** * Sets the value of the unsubscribe property. - * + * * @param value * allowed object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setUnsubscribe(String value) { @@ -155,11 +155,11 @@ public class MailingList { /** * Gets the value of the post property. - * + * * @return * possible object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public String getPost() { @@ -168,11 +168,11 @@ public class MailingList { /** * Sets the value of the post property. - * + * * @param value * allowed object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setPost(String value) { @@ -181,11 +181,11 @@ public class MailingList { /** * Gets the value of the archive property. - * + * * @return * possible object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public String getArchive() { @@ -194,11 +194,11 @@ public class MailingList { /** * Sets the value of the archive property. - * + * * @param value * allowed object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setArchive(String value) { @@ -207,11 +207,11 @@ public class MailingList { /** * Gets the value of the otherArchives property. - * + * * @return * possible object is * {@link MailingList.OtherArchives } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public MailingList.OtherArchives getOtherArchives() { @@ -220,11 +220,11 @@ public class MailingList { /** * Sets the value of the otherArchives property. - * + * * @param value * allowed object is * {@link MailingList.OtherArchives } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setOtherArchives(MailingList.OtherArchives value) { @@ -234,9 +234,9 @@ public class MailingList { /** *

Java class for anonymous complex type. - * + * *

The following schema fragment specifies the expected content contained within this class. - * + * *

      * <complexType>
      *   <complexContent>
@@ -248,8 +248,8 @@ public class MailingList {
      *   </complexContent>
      * </complexType>
      * 
- * - * + * + * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { @@ -263,25 +263,25 @@ public class MailingList { /** * Gets the value of the otherArchive property. - * + * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the otherArchive property. - * + * *

* For example, to add a new item, do as follows: *

          *    getOtherArchive().add(newItem);
          * 
- * - * + * + * *

* Objects of the following type(s) are allowed in the list * {@link String } - * - * + * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public List getOtherArchive() { diff --git a/src/main/java/org/codesecure/dependencycheck/analyzer/pom/generated/Model.java b/src/main/java/org/owasp/dependencycheck/analyzer/pom/generated/Model.java similarity index 95% rename from src/main/java/org/codesecure/dependencycheck/analyzer/pom/generated/Model.java rename to src/main/java/org/owasp/dependencycheck/analyzer/pom/generated/Model.java index 5022c75b8..4e21f16aa 100644 --- a/src/main/java/org/codesecure/dependencycheck/analyzer/pom/generated/Model.java +++ b/src/main/java/org/owasp/dependencycheck/analyzer/pom/generated/Model.java @@ -1,12 +1,12 @@ // -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 in JDK 6 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2012.11.09 at 12:33:57 PM EST +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 in JDK 6 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2012.11.09 at 12:33:57 PM EST // -package org.codesecure.dependencycheck.analyzer.pom.generated; +package org.owasp.dependencycheck.analyzer.pom.generated; import java.util.ArrayList; import java.util.List; @@ -20,15 +20,15 @@ import org.w3c.dom.Element; /** - * + * * The <project> element is the root of the descriptor. * The following table lists all of the possible child elements. - * - * + * + * *

Java class for Model complex type. - * + * *

The following schema fragment specifies the expected content contained within this class. - * + * *

  * <complexType name="Model">
  *   <complexContent>
@@ -179,8 +179,8 @@ import org.w3c.dom.Element;
  *   </complexContent>
  * </complexType>
  * 
- * - * + * + * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Model", propOrder = { @@ -253,11 +253,11 @@ public class Model { /** * Gets the value of the parent property. - * + * * @return * possible object is * {@link Parent } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public Parent getParent() { @@ -266,11 +266,11 @@ public class Model { /** * Sets the value of the parent property. - * + * * @param value * allowed object is * {@link Parent } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setParent(Parent value) { @@ -279,11 +279,11 @@ public class Model { /** * Gets the value of the modelVersion property. - * + * * @return * possible object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public String getModelVersion() { @@ -292,11 +292,11 @@ public class Model { /** * Sets the value of the modelVersion property. - * + * * @param value * allowed object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setModelVersion(String value) { @@ -305,11 +305,11 @@ public class Model { /** * Gets the value of the groupId property. - * + * * @return * possible object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public String getGroupId() { @@ -318,11 +318,11 @@ public class Model { /** * Sets the value of the groupId property. - * + * * @param value * allowed object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setGroupId(String value) { @@ -331,11 +331,11 @@ public class Model { /** * Gets the value of the artifactId property. - * + * * @return * possible object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public String getArtifactId() { @@ -344,11 +344,11 @@ public class Model { /** * Sets the value of the artifactId property. - * + * * @param value * allowed object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setArtifactId(String value) { @@ -357,11 +357,11 @@ public class Model { /** * Gets the value of the packaging property. - * + * * @return * possible object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public String getPackaging() { @@ -370,11 +370,11 @@ public class Model { /** * Sets the value of the packaging property. - * + * * @param value * allowed object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setPackaging(String value) { @@ -383,11 +383,11 @@ public class Model { /** * Gets the value of the name property. - * + * * @return * possible object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public String getName() { @@ -396,11 +396,11 @@ public class Model { /** * Sets the value of the name property. - * + * * @param value * allowed object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setName(String value) { @@ -409,11 +409,11 @@ public class Model { /** * Gets the value of the version property. - * + * * @return * possible object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public String getVersion() { @@ -422,11 +422,11 @@ public class Model { /** * Sets the value of the version property. - * + * * @param value * allowed object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setVersion(String value) { @@ -435,11 +435,11 @@ public class Model { /** * Gets the value of the description property. - * + * * @return * possible object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public String getDescription() { @@ -448,11 +448,11 @@ public class Model { /** * Sets the value of the description property. - * + * * @param value * allowed object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setDescription(String value) { @@ -461,11 +461,11 @@ public class Model { /** * Gets the value of the url property. - * + * * @return * possible object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public String getUrl() { @@ -474,11 +474,11 @@ public class Model { /** * Sets the value of the url property. - * + * * @param value * allowed object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setUrl(String value) { @@ -487,11 +487,11 @@ public class Model { /** * Gets the value of the prerequisites property. - * + * * @return * possible object is * {@link Prerequisites } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public Prerequisites getPrerequisites() { @@ -500,11 +500,11 @@ public class Model { /** * Sets the value of the prerequisites property. - * + * * @param value * allowed object is * {@link Prerequisites } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setPrerequisites(Prerequisites value) { @@ -513,11 +513,11 @@ public class Model { /** * Gets the value of the issueManagement property. - * + * * @return * possible object is * {@link IssueManagement } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public IssueManagement getIssueManagement() { @@ -526,11 +526,11 @@ public class Model { /** * Sets the value of the issueManagement property. - * + * * @param value * allowed object is * {@link IssueManagement } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setIssueManagement(IssueManagement value) { @@ -539,11 +539,11 @@ public class Model { /** * Gets the value of the ciManagement property. - * + * * @return * possible object is * {@link CiManagement } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public CiManagement getCiManagement() { @@ -552,11 +552,11 @@ public class Model { /** * Sets the value of the ciManagement property. - * + * * @param value * allowed object is * {@link CiManagement } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setCiManagement(CiManagement value) { @@ -565,11 +565,11 @@ public class Model { /** * Gets the value of the inceptionYear property. - * + * * @return * possible object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public String getInceptionYear() { @@ -578,11 +578,11 @@ public class Model { /** * Sets the value of the inceptionYear property. - * + * * @param value * allowed object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setInceptionYear(String value) { @@ -591,11 +591,11 @@ public class Model { /** * Gets the value of the mailingLists property. - * + * * @return * possible object is * {@link Model.MailingLists } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public Model.MailingLists getMailingLists() { @@ -604,11 +604,11 @@ public class Model { /** * Sets the value of the mailingLists property. - * + * * @param value * allowed object is * {@link Model.MailingLists } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setMailingLists(Model.MailingLists value) { @@ -617,11 +617,11 @@ public class Model { /** * Gets the value of the developers property. - * + * * @return * possible object is * {@link Model.Developers } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public Model.Developers getDevelopers() { @@ -630,11 +630,11 @@ public class Model { /** * Sets the value of the developers property. - * + * * @param value * allowed object is * {@link Model.Developers } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setDevelopers(Model.Developers value) { @@ -643,11 +643,11 @@ public class Model { /** * Gets the value of the contributors property. - * + * * @return * possible object is * {@link Model.Contributors } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public Model.Contributors getContributors() { @@ -656,11 +656,11 @@ public class Model { /** * Sets the value of the contributors property. - * + * * @param value * allowed object is * {@link Model.Contributors } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setContributors(Model.Contributors value) { @@ -669,11 +669,11 @@ public class Model { /** * Gets the value of the licenses property. - * + * * @return * possible object is * {@link Model.Licenses } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public Model.Licenses getLicenses() { @@ -682,11 +682,11 @@ public class Model { /** * Sets the value of the licenses property. - * + * * @param value * allowed object is * {@link Model.Licenses } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setLicenses(Model.Licenses value) { @@ -695,11 +695,11 @@ public class Model { /** * Gets the value of the scm property. - * + * * @return * possible object is * {@link Scm } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public Scm getScm() { @@ -708,11 +708,11 @@ public class Model { /** * Sets the value of the scm property. - * + * * @param value * allowed object is * {@link Scm } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setScm(Scm value) { @@ -721,11 +721,11 @@ public class Model { /** * Gets the value of the organization property. - * + * * @return * possible object is * {@link Organization } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public Organization getOrganization() { @@ -734,11 +734,11 @@ public class Model { /** * Sets the value of the organization property. - * + * * @param value * allowed object is * {@link Organization } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setOrganization(Organization value) { @@ -747,11 +747,11 @@ public class Model { /** * Gets the value of the build property. - * + * * @return * possible object is * {@link Build } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public Build getBuild() { @@ -760,11 +760,11 @@ public class Model { /** * Sets the value of the build property. - * + * * @param value * allowed object is * {@link Build } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setBuild(Build value) { @@ -773,11 +773,11 @@ public class Model { /** * Gets the value of the profiles property. - * + * * @return * possible object is * {@link Model.Profiles } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public Model.Profiles getProfiles() { @@ -786,11 +786,11 @@ public class Model { /** * Sets the value of the profiles property. - * + * * @param value * allowed object is * {@link Model.Profiles } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setProfiles(Model.Profiles value) { @@ -799,11 +799,11 @@ public class Model { /** * Gets the value of the modules property. - * + * * @return * possible object is * {@link Model.Modules } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public Model.Modules getModules() { @@ -812,11 +812,11 @@ public class Model { /** * Sets the value of the modules property. - * + * * @param value * allowed object is * {@link Model.Modules } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setModules(Model.Modules value) { @@ -825,11 +825,11 @@ public class Model { /** * Gets the value of the repositories property. - * + * * @return * possible object is * {@link Model.Repositories } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public Model.Repositories getRepositories() { @@ -838,11 +838,11 @@ public class Model { /** * Sets the value of the repositories property. - * + * * @param value * allowed object is * {@link Model.Repositories } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setRepositories(Model.Repositories value) { @@ -851,11 +851,11 @@ public class Model { /** * Gets the value of the pluginRepositories property. - * + * * @return * possible object is * {@link Model.PluginRepositories } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public Model.PluginRepositories getPluginRepositories() { @@ -864,11 +864,11 @@ public class Model { /** * Sets the value of the pluginRepositories property. - * + * * @param value * allowed object is * {@link Model.PluginRepositories } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setPluginRepositories(Model.PluginRepositories value) { @@ -877,11 +877,11 @@ public class Model { /** * Gets the value of the dependencies property. - * + * * @return * possible object is * {@link Model.Dependencies } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public Model.Dependencies getDependencies() { @@ -890,11 +890,11 @@ public class Model { /** * Sets the value of the dependencies property. - * + * * @param value * allowed object is * {@link Model.Dependencies } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setDependencies(Model.Dependencies value) { @@ -903,11 +903,11 @@ public class Model { /** * Gets the value of the reports property. - * + * * @return * possible object is * {@link Model.Reports } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public Model.Reports getReports() { @@ -916,11 +916,11 @@ public class Model { /** * Sets the value of the reports property. - * + * * @param value * allowed object is * {@link Model.Reports } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setReports(Model.Reports value) { @@ -929,11 +929,11 @@ public class Model { /** * Gets the value of the reporting property. - * + * * @return * possible object is * {@link Reporting } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public Reporting getReporting() { @@ -942,11 +942,11 @@ public class Model { /** * Sets the value of the reporting property. - * + * * @param value * allowed object is * {@link Reporting } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setReporting(Reporting value) { @@ -955,11 +955,11 @@ public class Model { /** * Gets the value of the dependencyManagement property. - * + * * @return * possible object is * {@link DependencyManagement } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public DependencyManagement getDependencyManagement() { @@ -968,11 +968,11 @@ public class Model { /** * Sets the value of the dependencyManagement property. - * + * * @param value * allowed object is * {@link DependencyManagement } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setDependencyManagement(DependencyManagement value) { @@ -981,11 +981,11 @@ public class Model { /** * Gets the value of the distributionManagement property. - * + * * @return * possible object is * {@link DistributionManagement } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public DistributionManagement getDistributionManagement() { @@ -994,11 +994,11 @@ public class Model { /** * Sets the value of the distributionManagement property. - * + * * @param value * allowed object is * {@link DistributionManagement } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setDistributionManagement(DistributionManagement value) { @@ -1007,11 +1007,11 @@ public class Model { /** * Gets the value of the properties property. - * + * * @return * possible object is * {@link Model.Properties } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public Model.Properties getProperties() { @@ -1020,11 +1020,11 @@ public class Model { /** * Sets the value of the properties property. - * + * * @param value * allowed object is * {@link Model.Properties } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setProperties(Model.Properties value) { @@ -1034,9 +1034,9 @@ public class Model { /** *

Java class for anonymous complex type. - * + * *

The following schema fragment specifies the expected content contained within this class. - * + * *

      * <complexType>
      *   <complexContent>
@@ -1048,8 +1048,8 @@ public class Model {
      *   </complexContent>
      * </complexType>
      * 
- * - * + * + * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { @@ -1063,25 +1063,25 @@ public class Model { /** * Gets the value of the contributor property. - * + * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the contributor property. - * + * *

* For example, to add a new item, do as follows: *

          *    getContributor().add(newItem);
          * 
- * - * + * + * *

* Objects of the following type(s) are allowed in the list * {@link Contributor } - * - * + * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public List getContributor() { @@ -1096,9 +1096,9 @@ public class Model { /** *

Java class for anonymous complex type. - * + * *

The following schema fragment specifies the expected content contained within this class. - * + * *

      * <complexType>
      *   <complexContent>
@@ -1110,8 +1110,8 @@ public class Model {
      *   </complexContent>
      * </complexType>
      * 
- * - * + * + * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { @@ -1125,25 +1125,25 @@ public class Model { /** * Gets the value of the dependency property. - * + * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the dependency property. - * + * *

* For example, to add a new item, do as follows: *

          *    getDependency().add(newItem);
          * 
- * - * + * + * *

* Objects of the following type(s) are allowed in the list * {@link Dependency } - * - * + * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public List getDependency() { @@ -1158,9 +1158,9 @@ public class Model { /** *

Java class for anonymous complex type. - * + * *

The following schema fragment specifies the expected content contained within this class. - * + * *

      * <complexType>
      *   <complexContent>
@@ -1172,8 +1172,8 @@ public class Model {
      *   </complexContent>
      * </complexType>
      * 
- * - * + * + * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { @@ -1187,25 +1187,25 @@ public class Model { /** * Gets the value of the developer property. - * + * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the developer property. - * + * *

* For example, to add a new item, do as follows: *

          *    getDeveloper().add(newItem);
          * 
- * - * + * + * *

* Objects of the following type(s) are allowed in the list * {@link Developer } - * - * + * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public List getDeveloper() { @@ -1220,9 +1220,9 @@ public class Model { /** *

Java class for anonymous complex type. - * + * *

The following schema fragment specifies the expected content contained within this class. - * + * *

      * <complexType>
      *   <complexContent>
@@ -1234,8 +1234,8 @@ public class Model {
      *   </complexContent>
      * </complexType>
      * 
- * - * + * + * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { @@ -1249,25 +1249,25 @@ public class Model { /** * Gets the value of the license property. - * + * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the license property. - * + * *

* For example, to add a new item, do as follows: *

          *    getLicense().add(newItem);
          * 
- * - * + * + * *

* Objects of the following type(s) are allowed in the list * {@link License } - * - * + * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public List getLicense() { @@ -1282,9 +1282,9 @@ public class Model { /** *

Java class for anonymous complex type. - * + * *

The following schema fragment specifies the expected content contained within this class. - * + * *

      * <complexType>
      *   <complexContent>
@@ -1296,8 +1296,8 @@ public class Model {
      *   </complexContent>
      * </complexType>
      * 
- * - * + * + * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { @@ -1311,25 +1311,25 @@ public class Model { /** * Gets the value of the mailingList property. - * + * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the mailingList property. - * + * *

* For example, to add a new item, do as follows: *

          *    getMailingList().add(newItem);
          * 
- * - * + * + * *

* Objects of the following type(s) are allowed in the list * {@link MailingList } - * - * + * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public List getMailingList() { @@ -1344,9 +1344,9 @@ public class Model { /** *

Java class for anonymous complex type. - * + * *

The following schema fragment specifies the expected content contained within this class. - * + * *

      * <complexType>
      *   <complexContent>
@@ -1358,8 +1358,8 @@ public class Model {
      *   </complexContent>
      * </complexType>
      * 
- * - * + * + * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { @@ -1373,25 +1373,25 @@ public class Model { /** * Gets the value of the module property. - * + * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the module property. - * + * *

* For example, to add a new item, do as follows: *

          *    getModule().add(newItem);
          * 
- * - * + * + * *

* Objects of the following type(s) are allowed in the list * {@link String } - * - * + * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public List getModule() { @@ -1406,9 +1406,9 @@ public class Model { /** *

Java class for anonymous complex type. - * + * *

The following schema fragment specifies the expected content contained within this class. - * + * *

      * <complexType>
      *   <complexContent>
@@ -1420,8 +1420,8 @@ public class Model {
      *   </complexContent>
      * </complexType>
      * 
- * - * + * + * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { @@ -1435,25 +1435,25 @@ public class Model { /** * Gets the value of the pluginRepository property. - * + * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the pluginRepository property. - * + * *

* For example, to add a new item, do as follows: *

          *    getPluginRepository().add(newItem);
          * 
- * - * + * + * *

* Objects of the following type(s) are allowed in the list * {@link Repository } - * - * + * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public List getPluginRepository() { @@ -1468,9 +1468,9 @@ public class Model { /** *

Java class for anonymous complex type. - * + * *

The following schema fragment specifies the expected content contained within this class. - * + * *

      * <complexType>
      *   <complexContent>
@@ -1482,8 +1482,8 @@ public class Model {
      *   </complexContent>
      * </complexType>
      * 
- * - * + * + * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { @@ -1497,25 +1497,25 @@ public class Model { /** * Gets the value of the profile property. - * + * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the profile property. - * + * *

* For example, to add a new item, do as follows: *

          *    getProfile().add(newItem);
          * 
- * - * + * + * *

* Objects of the following type(s) are allowed in the list * {@link Profile } - * - * + * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public List getProfile() { @@ -1530,9 +1530,9 @@ public class Model { /** *

Java class for anonymous complex type. - * + * *

The following schema fragment specifies the expected content contained within this class. - * + * *

      * <complexType>
      *   <complexContent>
@@ -1544,8 +1544,8 @@ public class Model {
      *   </complexContent>
      * </complexType>
      * 
- * - * + * + * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { @@ -1560,25 +1560,25 @@ public class Model { /** * Gets the value of the any property. - * + * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. - * + * *

* For example, to add a new item, do as follows: *

          *    getAny().add(newItem);
          * 
- * - * + * + * *

* Objects of the following type(s) are allowed in the list * {@link Element } - * - * + * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public List getAny() { @@ -1593,9 +1593,9 @@ public class Model { /** *

Java class for anonymous complex type. - * + * *

The following schema fragment specifies the expected content contained within this class. - * + * *

      * <complexType>
      *   <complexContent>
@@ -1607,8 +1607,8 @@ public class Model {
      *   </complexContent>
      * </complexType>
      * 
- * - * + * + * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { @@ -1623,25 +1623,25 @@ public class Model { /** * Gets the value of the any property. - * + * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. - * + * *

* For example, to add a new item, do as follows: *

          *    getAny().add(newItem);
          * 
- * - * + * + * *

* Objects of the following type(s) are allowed in the list * {@link Element } - * - * + * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public List getAny() { @@ -1656,9 +1656,9 @@ public class Model { /** *

Java class for anonymous complex type. - * + * *

The following schema fragment specifies the expected content contained within this class. - * + * *

      * <complexType>
      *   <complexContent>
@@ -1670,8 +1670,8 @@ public class Model {
      *   </complexContent>
      * </complexType>
      * 
- * - * + * + * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { @@ -1685,25 +1685,25 @@ public class Model { /** * Gets the value of the repository property. - * + * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the repository property. - * + * *

* For example, to add a new item, do as follows: *

          *    getRepository().add(newItem);
          * 
- * - * + * + * *

* Objects of the following type(s) are allowed in the list * {@link Repository } - * - * + * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public List getRepository() { diff --git a/src/main/java/org/codesecure/dependencycheck/analyzer/pom/generated/Notifier.java b/src/main/java/org/owasp/dependencycheck/analyzer/pom/generated/Notifier.java similarity index 94% rename from src/main/java/org/codesecure/dependencycheck/analyzer/pom/generated/Notifier.java rename to src/main/java/org/owasp/dependencycheck/analyzer/pom/generated/Notifier.java index cd310b617..cd05f281e 100644 --- a/src/main/java/org/codesecure/dependencycheck/analyzer/pom/generated/Notifier.java +++ b/src/main/java/org/owasp/dependencycheck/analyzer/pom/generated/Notifier.java @@ -1,12 +1,12 @@ // -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 in JDK 6 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2012.11.09 at 12:33:57 PM EST +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 in JDK 6 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2012.11.09 at 12:33:57 PM EST // -package org.codesecure.dependencycheck.analyzer.pom.generated; +package org.owasp.dependencycheck.analyzer.pom.generated; import java.util.ArrayList; import java.util.List; @@ -20,14 +20,14 @@ import org.w3c.dom.Element; /** - * + * * Configures one method for notifying users/developers when a build breaks. - * - * + * + * *

Java class for Notifier complex type. - * + * *

The following schema fragment specifies the expected content contained within this class. - * + * *

  * <complexType name="Notifier">
  *   <complexContent>
@@ -55,8 +55,8 @@ import org.w3c.dom.Element;
  *   </complexContent>
  * </complexType>
  * 
- * - * + * + * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Notifier", propOrder = { @@ -87,11 +87,11 @@ public class Notifier { /** * Gets the value of the type property. - * + * * @return * possible object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public String getType() { @@ -100,11 +100,11 @@ public class Notifier { /** * Sets the value of the type property. - * + * * @param value * allowed object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setType(String value) { @@ -113,11 +113,11 @@ public class Notifier { /** * Gets the value of the sendOnError property. - * + * * @return * possible object is * {@link Boolean } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public Boolean isSendOnError() { @@ -126,11 +126,11 @@ public class Notifier { /** * Sets the value of the sendOnError property. - * + * * @param value * allowed object is * {@link Boolean } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setSendOnError(Boolean value) { @@ -139,11 +139,11 @@ public class Notifier { /** * Gets the value of the sendOnFailure property. - * + * * @return * possible object is * {@link Boolean } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public Boolean isSendOnFailure() { @@ -152,11 +152,11 @@ public class Notifier { /** * Sets the value of the sendOnFailure property. - * + * * @param value * allowed object is * {@link Boolean } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setSendOnFailure(Boolean value) { @@ -165,11 +165,11 @@ public class Notifier { /** * Gets the value of the sendOnSuccess property. - * + * * @return * possible object is * {@link Boolean } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public Boolean isSendOnSuccess() { @@ -178,11 +178,11 @@ public class Notifier { /** * Sets the value of the sendOnSuccess property. - * + * * @param value * allowed object is * {@link Boolean } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setSendOnSuccess(Boolean value) { @@ -191,11 +191,11 @@ public class Notifier { /** * Gets the value of the sendOnWarning property. - * + * * @return * possible object is * {@link Boolean } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public Boolean isSendOnWarning() { @@ -204,11 +204,11 @@ public class Notifier { /** * Sets the value of the sendOnWarning property. - * + * * @param value * allowed object is * {@link Boolean } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setSendOnWarning(Boolean value) { @@ -217,11 +217,11 @@ public class Notifier { /** * Gets the value of the address property. - * + * * @return * possible object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public String getAddress() { @@ -230,11 +230,11 @@ public class Notifier { /** * Sets the value of the address property. - * + * * @param value * allowed object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setAddress(String value) { @@ -243,11 +243,11 @@ public class Notifier { /** * Gets the value of the configuration property. - * + * * @return * possible object is * {@link Notifier.Configuration } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public Notifier.Configuration getConfiguration() { @@ -256,11 +256,11 @@ public class Notifier { /** * Sets the value of the configuration property. - * + * * @param value * allowed object is * {@link Notifier.Configuration } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setConfiguration(Notifier.Configuration value) { @@ -270,9 +270,9 @@ public class Notifier { /** *

Java class for anonymous complex type. - * + * *

The following schema fragment specifies the expected content contained within this class. - * + * *

      * <complexType>
      *   <complexContent>
@@ -284,8 +284,8 @@ public class Notifier {
      *   </complexContent>
      * </complexType>
      * 
- * - * + * + * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { @@ -300,25 +300,25 @@ public class Notifier { /** * Gets the value of the any property. - * + * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. - * + * *

* For example, to add a new item, do as follows: *

          *    getAny().add(newItem);
          * 
- * - * + * + * *

* Objects of the following type(s) are allowed in the list * {@link Element } - * - * + * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public List getAny() { diff --git a/src/main/java/org/codesecure/dependencycheck/analyzer/pom/generated/ObjectFactory.java b/src/main/java/org/owasp/dependencycheck/analyzer/pom/generated/ObjectFactory.java similarity index 91% rename from src/main/java/org/codesecure/dependencycheck/analyzer/pom/generated/ObjectFactory.java rename to src/main/java/org/owasp/dependencycheck/analyzer/pom/generated/ObjectFactory.java index a8b1b51bf..606f3792e 100644 --- a/src/main/java/org/codesecure/dependencycheck/analyzer/pom/generated/ObjectFactory.java +++ b/src/main/java/org/owasp/dependencycheck/analyzer/pom/generated/ObjectFactory.java @@ -1,12 +1,12 @@ // -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 in JDK 6 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2012.11.09 at 12:33:57 PM EST +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 in JDK 6 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2012.11.09 at 12:33:57 PM EST // -package org.codesecure.dependencycheck.analyzer.pom.generated; +package org.owasp.dependencycheck.analyzer.pom.generated; import javax.xml.bind.JAXBElement; import javax.xml.bind.annotation.XmlElementDecl; @@ -15,18 +15,18 @@ import javax.xml.namespace.QName; /** - * This object contains factory methods for each - * Java content interface and Java element interface - * generated in the org.codesecure.dependencycheck.analyzer.pom.generated package. + * This object contains factory methods for each + * Java content interface and Java element interface + * generated in the org.owasp.dependencycheck.analyzer.pom.generated package. *

An ObjectFactory allows you to programmatically - * construct new instances of the Java representation - * for XML content. The Java representation of XML - * content can consist of schema derived interfaces - * and classes representing the binding of schema - * type definitions, element declarations and model - * groups. Factory methods for each of these are + * construct new instances of the Java representation + * for XML content. The Java representation of XML + * content can consist of schema derived interfaces + * and classes representing the binding of schema + * type definitions, element declarations and model + * groups. Factory methods for each of these are * provided in this class. - * + * */ @XmlRegistry public class ObjectFactory { @@ -34,15 +34,15 @@ public class ObjectFactory { private final static QName _Project_QNAME = new QName("http://maven.apache.org/POM/4.0.0", "project"); /** - * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: org.codesecure.dependencycheck.analyzer.pom.generated - * + * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: org.owasp.dependencycheck.analyzer.pom.generated + * */ public ObjectFactory() { } /** * Create an instance of {@link Model } - * + * */ public Model createModel() { return new Model(); @@ -50,7 +50,7 @@ public class ObjectFactory { /** * Create an instance of {@link Reporting } - * + * */ public Reporting createReporting() { return new Reporting(); @@ -58,7 +58,7 @@ public class ObjectFactory { /** * Create an instance of {@link Exclusion } - * + * */ public Exclusion createExclusion() { return new Exclusion(); @@ -66,7 +66,7 @@ public class ObjectFactory { /** * Create an instance of {@link Build.Filters } - * + * */ public Build.Filters createBuildFilters() { return new Build.Filters(); @@ -74,7 +74,7 @@ public class ObjectFactory { /** * Create an instance of {@link ReportPlugin.Configuration } - * + * */ public ReportPlugin.Configuration createReportPluginConfiguration() { return new ReportPlugin.Configuration(); @@ -82,7 +82,7 @@ public class ObjectFactory { /** * Create an instance of {@link IssueManagement } - * + * */ public IssueManagement createIssueManagement() { return new IssueManagement(); @@ -90,7 +90,7 @@ public class ObjectFactory { /** * Create an instance of {@link PluginExecution.Goals } - * + * */ public PluginExecution.Goals createPluginExecutionGoals() { return new PluginExecution.Goals(); @@ -98,7 +98,7 @@ public class ObjectFactory { /** * Create an instance of {@link ReportPlugin } - * + * */ public ReportPlugin createReportPlugin() { return new ReportPlugin(); @@ -106,7 +106,7 @@ public class ObjectFactory { /** * Create an instance of {@link Profile.Properties } - * + * */ public Profile.Properties createProfileProperties() { return new Profile.Properties(); @@ -114,7 +114,7 @@ public class ObjectFactory { /** * Create an instance of {@link ActivationProperty } - * + * */ public ActivationProperty createActivationProperty() { return new ActivationProperty(); @@ -122,7 +122,7 @@ public class ObjectFactory { /** * Create an instance of {@link Build.Extensions } - * + * */ public Build.Extensions createBuildExtensions() { return new Build.Extensions(); @@ -130,7 +130,7 @@ public class ObjectFactory { /** * Create an instance of {@link Plugin } - * + * */ public Plugin createPlugin() { return new Plugin(); @@ -138,7 +138,7 @@ public class ObjectFactory { /** * Create an instance of {@link Profile.Dependencies } - * + * */ public Profile.Dependencies createProfileDependencies() { return new Profile.Dependencies(); @@ -146,7 +146,7 @@ public class ObjectFactory { /** * Create an instance of {@link Resource.Excludes } - * + * */ public Resource.Excludes createResourceExcludes() { return new Resource.Excludes(); @@ -154,7 +154,7 @@ public class ObjectFactory { /** * Create an instance of {@link Scm } - * + * */ public Scm createScm() { return new Scm(); @@ -162,7 +162,7 @@ public class ObjectFactory { /** * Create an instance of {@link ReportSet.Reports } - * + * */ public ReportSet.Reports createReportSetReports() { return new ReportSet.Reports(); @@ -170,7 +170,7 @@ public class ObjectFactory { /** * Create an instance of {@link PluginManagement } - * + * */ public PluginManagement createPluginManagement() { return new PluginManagement(); @@ -178,7 +178,7 @@ public class ObjectFactory { /** * Create an instance of {@link CiManagement.Notifiers } - * + * */ public CiManagement.Notifiers createCiManagementNotifiers() { return new CiManagement.Notifiers(); @@ -186,7 +186,7 @@ public class ObjectFactory { /** * Create an instance of {@link Model.PluginRepositories } - * + * */ public Model.PluginRepositories createModelPluginRepositories() { return new Model.PluginRepositories(); @@ -194,7 +194,7 @@ public class ObjectFactory { /** * Create an instance of {@link ActivationFile } - * + * */ public ActivationFile createActivationFile() { return new ActivationFile(); @@ -202,7 +202,7 @@ public class ObjectFactory { /** * Create an instance of {@link Developer.Roles } - * + * */ public Developer.Roles createDeveloperRoles() { return new Developer.Roles(); @@ -210,7 +210,7 @@ public class ObjectFactory { /** * Create an instance of {@link DeploymentRepository } - * + * */ public DeploymentRepository createDeploymentRepository() { return new DeploymentRepository(); @@ -218,7 +218,7 @@ public class ObjectFactory { /** * Create an instance of {@link Contributor.Properties } - * + * */ public Contributor.Properties createContributorProperties() { return new Contributor.Properties(); @@ -226,7 +226,7 @@ public class ObjectFactory { /** * Create an instance of {@link DistributionManagement } - * + * */ public DistributionManagement createDistributionManagement() { return new DistributionManagement(); @@ -234,7 +234,7 @@ public class ObjectFactory { /** * Create an instance of {@link RepositoryPolicy } - * + * */ public RepositoryPolicy createRepositoryPolicy() { return new RepositoryPolicy(); @@ -242,7 +242,7 @@ public class ObjectFactory { /** * Create an instance of {@link Model.Licenses } - * + * */ public Model.Licenses createModelLicenses() { return new Model.Licenses(); @@ -250,7 +250,7 @@ public class ObjectFactory { /** * Create an instance of {@link Build.TestResources } - * + * */ public Build.TestResources createBuildTestResources() { return new Build.TestResources(); @@ -258,7 +258,7 @@ public class ObjectFactory { /** * Create an instance of {@link Plugin.Goals } - * + * */ public Plugin.Goals createPluginGoals() { return new Plugin.Goals(); @@ -266,7 +266,7 @@ public class ObjectFactory { /** * Create an instance of {@link Plugin.Executions } - * + * */ public Plugin.Executions createPluginExecutions() { return new Plugin.Executions(); @@ -274,7 +274,7 @@ public class ObjectFactory { /** * Create an instance of {@link DependencyManagement } - * + * */ public DependencyManagement createDependencyManagement() { return new DependencyManagement(); @@ -282,7 +282,7 @@ public class ObjectFactory { /** * Create an instance of {@link Model.Reports } - * + * */ public Model.Reports createModelReports() { return new Model.Reports(); @@ -290,7 +290,7 @@ public class ObjectFactory { /** * Create an instance of {@link Build } - * + * */ public Build createBuild() { return new Build(); @@ -298,7 +298,7 @@ public class ObjectFactory { /** * Create an instance of {@link Build.Resources } - * + * */ public Build.Resources createBuildResources() { return new Build.Resources(); @@ -306,7 +306,7 @@ public class ObjectFactory { /** * Create an instance of {@link DependencyManagement.Dependencies } - * + * */ public DependencyManagement.Dependencies createDependencyManagementDependencies() { return new DependencyManagement.Dependencies(); @@ -314,7 +314,7 @@ public class ObjectFactory { /** * Create an instance of {@link Model.Contributors } - * + * */ public Model.Contributors createModelContributors() { return new Model.Contributors(); @@ -322,7 +322,7 @@ public class ObjectFactory { /** * Create an instance of {@link Build.Plugins } - * + * */ public Build.Plugins createBuildPlugins() { return new Build.Plugins(); @@ -330,7 +330,7 @@ public class ObjectFactory { /** * Create an instance of {@link Extension } - * + * */ public Extension createExtension() { return new Extension(); @@ -338,7 +338,7 @@ public class ObjectFactory { /** * Create an instance of {@link Organization } - * + * */ public Organization createOrganization() { return new Organization(); @@ -346,7 +346,7 @@ public class ObjectFactory { /** * Create an instance of {@link License } - * + * */ public License createLicense() { return new License(); @@ -354,7 +354,7 @@ public class ObjectFactory { /** * Create an instance of {@link Activation } - * + * */ public Activation createActivation() { return new Activation(); @@ -362,7 +362,7 @@ public class ObjectFactory { /** * Create an instance of {@link ActivationOS } - * + * */ public ActivationOS createActivationOS() { return new ActivationOS(); @@ -370,7 +370,7 @@ public class ObjectFactory { /** * Create an instance of {@link Model.Modules } - * + * */ public Model.Modules createModelModules() { return new Model.Modules(); @@ -378,7 +378,7 @@ public class ObjectFactory { /** * Create an instance of {@link Profile.Repositories } - * + * */ public Profile.Repositories createProfileRepositories() { return new Profile.Repositories(); @@ -386,7 +386,7 @@ public class ObjectFactory { /** * Create an instance of {@link Model.Dependencies } - * + * */ public Model.Dependencies createModelDependencies() { return new Model.Dependencies(); @@ -394,7 +394,7 @@ public class ObjectFactory { /** * Create an instance of {@link BuildBase.Resources } - * + * */ public BuildBase.Resources createBuildBaseResources() { return new BuildBase.Resources(); @@ -402,7 +402,7 @@ public class ObjectFactory { /** * Create an instance of {@link Site } - * + * */ public Site createSite() { return new Site(); @@ -410,7 +410,7 @@ public class ObjectFactory { /** * Create an instance of {@link ReportPlugin.ReportSets } - * + * */ public ReportPlugin.ReportSets createReportPluginReportSets() { return new ReportPlugin.ReportSets(); @@ -418,7 +418,7 @@ public class ObjectFactory { /** * Create an instance of {@link Plugin.Configuration } - * + * */ public Plugin.Configuration createPluginConfiguration() { return new Plugin.Configuration(); @@ -426,7 +426,7 @@ public class ObjectFactory { /** * Create an instance of {@link Profile.PluginRepositories } - * + * */ public Profile.PluginRepositories createProfilePluginRepositories() { return new Profile.PluginRepositories(); @@ -434,7 +434,7 @@ public class ObjectFactory { /** * Create an instance of {@link Dependency.Exclusions } - * + * */ public Dependency.Exclusions createDependencyExclusions() { return new Dependency.Exclusions(); @@ -442,7 +442,7 @@ public class ObjectFactory { /** * Create an instance of {@link Prerequisites } - * + * */ public Prerequisites createPrerequisites() { return new Prerequisites(); @@ -450,7 +450,7 @@ public class ObjectFactory { /** * Create an instance of {@link Model.Profiles } - * + * */ public Model.Profiles createModelProfiles() { return new Model.Profiles(); @@ -458,7 +458,7 @@ public class ObjectFactory { /** * Create an instance of {@link Model.Properties } - * + * */ public Model.Properties createModelProperties() { return new Model.Properties(); @@ -466,7 +466,7 @@ public class ObjectFactory { /** * Create an instance of {@link BuildBase.Plugins } - * + * */ public BuildBase.Plugins createBuildBasePlugins() { return new BuildBase.Plugins(); @@ -474,7 +474,7 @@ public class ObjectFactory { /** * Create an instance of {@link BuildBase } - * + * */ public BuildBase createBuildBase() { return new BuildBase(); @@ -482,7 +482,7 @@ public class ObjectFactory { /** * Create an instance of {@link PluginManagement.Plugins } - * + * */ public PluginManagement.Plugins createPluginManagementPlugins() { return new PluginManagement.Plugins(); @@ -490,7 +490,7 @@ public class ObjectFactory { /** * Create an instance of {@link Contributor.Roles } - * + * */ public Contributor.Roles createContributorRoles() { return new Contributor.Roles(); @@ -498,7 +498,7 @@ public class ObjectFactory { /** * Create an instance of {@link MailingList } - * + * */ public MailingList createMailingList() { return new MailingList(); @@ -506,7 +506,7 @@ public class ObjectFactory { /** * Create an instance of {@link CiManagement } - * + * */ public CiManagement createCiManagement() { return new CiManagement(); @@ -514,7 +514,7 @@ public class ObjectFactory { /** * Create an instance of {@link Model.MailingLists } - * + * */ public Model.MailingLists createModelMailingLists() { return new Model.MailingLists(); @@ -522,7 +522,7 @@ public class ObjectFactory { /** * Create an instance of {@link Model.Developers } - * + * */ public Model.Developers createModelDevelopers() { return new Model.Developers(); @@ -530,7 +530,7 @@ public class ObjectFactory { /** * Create an instance of {@link Reporting.Plugins } - * + * */ public Reporting.Plugins createReportingPlugins() { return new Reporting.Plugins(); @@ -538,7 +538,7 @@ public class ObjectFactory { /** * Create an instance of {@link Contributor } - * + * */ public Contributor createContributor() { return new Contributor(); @@ -546,7 +546,7 @@ public class ObjectFactory { /** * Create an instance of {@link Profile.Reports } - * + * */ public Profile.Reports createProfileReports() { return new Profile.Reports(); @@ -554,7 +554,7 @@ public class ObjectFactory { /** * Create an instance of {@link BuildBase.TestResources } - * + * */ public BuildBase.TestResources createBuildBaseTestResources() { return new BuildBase.TestResources(); @@ -562,7 +562,7 @@ public class ObjectFactory { /** * Create an instance of {@link Developer.Properties } - * + * */ public Developer.Properties createDeveloperProperties() { return new Developer.Properties(); @@ -570,7 +570,7 @@ public class ObjectFactory { /** * Create an instance of {@link Plugin.Dependencies } - * + * */ public Plugin.Dependencies createPluginDependencies() { return new Plugin.Dependencies(); @@ -578,7 +578,7 @@ public class ObjectFactory { /** * Create an instance of {@link Resource.Includes } - * + * */ public Resource.Includes createResourceIncludes() { return new Resource.Includes(); @@ -586,7 +586,7 @@ public class ObjectFactory { /** * Create an instance of {@link Resource } - * + * */ public Resource createResource() { return new Resource(); @@ -594,7 +594,7 @@ public class ObjectFactory { /** * Create an instance of {@link Repository } - * + * */ public Repository createRepository() { return new Repository(); @@ -602,7 +602,7 @@ public class ObjectFactory { /** * Create an instance of {@link BuildBase.Filters } - * + * */ public BuildBase.Filters createBuildBaseFilters() { return new BuildBase.Filters(); @@ -610,7 +610,7 @@ public class ObjectFactory { /** * Create an instance of {@link ReportSet } - * + * */ public ReportSet createReportSet() { return new ReportSet(); @@ -618,7 +618,7 @@ public class ObjectFactory { /** * Create an instance of {@link Notifier.Configuration } - * + * */ public Notifier.Configuration createNotifierConfiguration() { return new Notifier.Configuration(); @@ -626,7 +626,7 @@ public class ObjectFactory { /** * Create an instance of {@link Model.Repositories } - * + * */ public Model.Repositories createModelRepositories() { return new Model.Repositories(); @@ -634,7 +634,7 @@ public class ObjectFactory { /** * Create an instance of {@link Dependency } - * + * */ public Dependency createDependency() { return new Dependency(); @@ -642,7 +642,7 @@ public class ObjectFactory { /** * Create an instance of {@link Relocation } - * + * */ public Relocation createRelocation() { return new Relocation(); @@ -650,7 +650,7 @@ public class ObjectFactory { /** * Create an instance of {@link MailingList.OtherArchives } - * + * */ public MailingList.OtherArchives createMailingListOtherArchives() { return new MailingList.OtherArchives(); @@ -658,7 +658,7 @@ public class ObjectFactory { /** * Create an instance of {@link ReportSet.Configuration } - * + * */ public ReportSet.Configuration createReportSetConfiguration() { return new ReportSet.Configuration(); @@ -666,7 +666,7 @@ public class ObjectFactory { /** * Create an instance of {@link Profile } - * + * */ public Profile createProfile() { return new Profile(); @@ -674,7 +674,7 @@ public class ObjectFactory { /** * Create an instance of {@link PluginExecution.Configuration } - * + * */ public PluginExecution.Configuration createPluginExecutionConfiguration() { return new PluginExecution.Configuration(); @@ -682,7 +682,7 @@ public class ObjectFactory { /** * Create an instance of {@link Notifier } - * + * */ public Notifier createNotifier() { return new Notifier(); @@ -690,7 +690,7 @@ public class ObjectFactory { /** * Create an instance of {@link Parent } - * + * */ public Parent createParent() { return new Parent(); @@ -698,7 +698,7 @@ public class ObjectFactory { /** * Create an instance of {@link PluginExecution } - * + * */ public PluginExecution createPluginExecution() { return new PluginExecution(); @@ -706,7 +706,7 @@ public class ObjectFactory { /** * Create an instance of {@link Developer } - * + * */ public Developer createDeveloper() { return new Developer(); @@ -714,7 +714,7 @@ public class ObjectFactory { /** * Create an instance of {@link Profile.Modules } - * + * */ public Profile.Modules createProfileModules() { return new Profile.Modules(); @@ -722,7 +722,7 @@ public class ObjectFactory { /** * Create an instance of {@link JAXBElement }{@code <}{@link Model }{@code >}} - * + * */ @XmlElementDecl(namespace = "http://maven.apache.org/POM/4.0.0", name = "project") public JAXBElement createProject(Model value) { diff --git a/src/main/java/org/codesecure/dependencycheck/analyzer/pom/generated/Organization.java b/src/main/java/org/owasp/dependencycheck/analyzer/pom/generated/Organization.java similarity index 90% rename from src/main/java/org/codesecure/dependencycheck/analyzer/pom/generated/Organization.java rename to src/main/java/org/owasp/dependencycheck/analyzer/pom/generated/Organization.java index 0a4fad711..f573aed8d 100644 --- a/src/main/java/org/codesecure/dependencycheck/analyzer/pom/generated/Organization.java +++ b/src/main/java/org/owasp/dependencycheck/analyzer/pom/generated/Organization.java @@ -1,12 +1,12 @@ // -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 in JDK 6 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2012.11.09 at 12:33:57 PM EST +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 in JDK 6 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2012.11.09 at 12:33:57 PM EST // -package org.codesecure.dependencycheck.analyzer.pom.generated; +package org.owasp.dependencycheck.analyzer.pom.generated; import javax.annotation.Generated; import javax.xml.bind.annotation.XmlAccessType; @@ -16,11 +16,11 @@ import javax.xml.bind.annotation.XmlType; /** * Specifies the organization that produces this project. - * + * *

Java class for Organization complex type. - * + * *

The following schema fragment specifies the expected content contained within this class. - * + * *

  * <complexType name="Organization">
  *   <complexContent>
@@ -33,8 +33,8 @@ import javax.xml.bind.annotation.XmlType;
  *   </complexContent>
  * </complexType>
  * 
- * - * + * + * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Organization", propOrder = { @@ -50,11 +50,11 @@ public class Organization { /** * Gets the value of the name property. - * + * * @return * possible object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public String getName() { @@ -63,11 +63,11 @@ public class Organization { /** * Sets the value of the name property. - * + * * @param value * allowed object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setName(String value) { @@ -76,11 +76,11 @@ public class Organization { /** * Gets the value of the url property. - * + * * @return * possible object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public String getUrl() { @@ -89,11 +89,11 @@ public class Organization { /** * Sets the value of the url property. - * + * * @param value * allowed object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setUrl(String value) { diff --git a/src/main/java/org/codesecure/dependencycheck/analyzer/pom/generated/Parent.java b/src/main/java/org/owasp/dependencycheck/analyzer/pom/generated/Parent.java similarity index 92% rename from src/main/java/org/codesecure/dependencycheck/analyzer/pom/generated/Parent.java rename to src/main/java/org/owasp/dependencycheck/analyzer/pom/generated/Parent.java index 622959efd..67e7b6a73 100644 --- a/src/main/java/org/codesecure/dependencycheck/analyzer/pom/generated/Parent.java +++ b/src/main/java/org/owasp/dependencycheck/analyzer/pom/generated/Parent.java @@ -1,12 +1,12 @@ // -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 in JDK 6 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2012.11.09 at 12:33:57 PM EST +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 in JDK 6 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2012.11.09 at 12:33:57 PM EST // -package org.codesecure.dependencycheck.analyzer.pom.generated; +package org.owasp.dependencycheck.analyzer.pom.generated; import javax.annotation.Generated; import javax.xml.bind.annotation.XmlAccessType; @@ -17,11 +17,11 @@ import javax.xml.bind.annotation.XmlType; /** * 4.0.0 - * + * *

Java class for Parent complex type. - * + * *

The following schema fragment specifies the expected content contained within this class. - * + * *

  * <complexType name="Parent">
  *   <complexContent>
@@ -36,8 +36,8 @@ import javax.xml.bind.annotation.XmlType;
  *   </complexContent>
  * </complexType>
  * 
- * - * + * + * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Parent", propOrder = { @@ -58,11 +58,11 @@ public class Parent { /** * Gets the value of the artifactId property. - * + * * @return * possible object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public String getArtifactId() { @@ -71,11 +71,11 @@ public class Parent { /** * Sets the value of the artifactId property. - * + * * @param value * allowed object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setArtifactId(String value) { @@ -84,11 +84,11 @@ public class Parent { /** * Gets the value of the groupId property. - * + * * @return * possible object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public String getGroupId() { @@ -97,11 +97,11 @@ public class Parent { /** * Sets the value of the groupId property. - * + * * @param value * allowed object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setGroupId(String value) { @@ -110,11 +110,11 @@ public class Parent { /** * Gets the value of the version property. - * + * * @return * possible object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public String getVersion() { @@ -123,11 +123,11 @@ public class Parent { /** * Sets the value of the version property. - * + * * @param value * allowed object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setVersion(String value) { @@ -136,11 +136,11 @@ public class Parent { /** * Gets the value of the relativePath property. - * + * * @return * possible object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public String getRelativePath() { @@ -149,11 +149,11 @@ public class Parent { /** * Sets the value of the relativePath property. - * + * * @param value * allowed object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setRelativePath(String value) { diff --git a/src/main/java/org/codesecure/dependencycheck/analyzer/pom/generated/Plugin.java b/src/main/java/org/owasp/dependencycheck/analyzer/pom/generated/Plugin.java similarity index 95% rename from src/main/java/org/codesecure/dependencycheck/analyzer/pom/generated/Plugin.java rename to src/main/java/org/owasp/dependencycheck/analyzer/pom/generated/Plugin.java index 18d9f4a54..91913d0ef 100644 --- a/src/main/java/org/codesecure/dependencycheck/analyzer/pom/generated/Plugin.java +++ b/src/main/java/org/owasp/dependencycheck/analyzer/pom/generated/Plugin.java @@ -1,12 +1,12 @@ // -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 in JDK 6 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2012.11.09 at 12:33:57 PM EST +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 in JDK 6 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2012.11.09 at 12:33:57 PM EST // -package org.codesecure.dependencycheck.analyzer.pom.generated; +package org.owasp.dependencycheck.analyzer.pom.generated; import java.util.ArrayList; import java.util.List; @@ -21,11 +21,11 @@ import org.w3c.dom.Element; /** * 4.0.0 - * + * *

Java class for Plugin complex type. - * + * *

The following schema fragment specifies the expected content contained within this class. - * + * *

  * <complexType name="Plugin">
  *   <complexContent>
@@ -85,8 +85,8 @@ import org.w3c.dom.Element;
  *   </complexContent>
  * </complexType>
  * 
- * - * + * + * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Plugin", propOrder = { @@ -118,11 +118,11 @@ public class Plugin { /** * Gets the value of the groupId property. - * + * * @return * possible object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public String getGroupId() { @@ -131,11 +131,11 @@ public class Plugin { /** * Sets the value of the groupId property. - * + * * @param value * allowed object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setGroupId(String value) { @@ -144,11 +144,11 @@ public class Plugin { /** * Gets the value of the artifactId property. - * + * * @return * possible object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public String getArtifactId() { @@ -157,11 +157,11 @@ public class Plugin { /** * Sets the value of the artifactId property. - * + * * @param value * allowed object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setArtifactId(String value) { @@ -170,11 +170,11 @@ public class Plugin { /** * Gets the value of the version property. - * + * * @return * possible object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public String getVersion() { @@ -183,11 +183,11 @@ public class Plugin { /** * Sets the value of the version property. - * + * * @param value * allowed object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setVersion(String value) { @@ -196,11 +196,11 @@ public class Plugin { /** * Gets the value of the extensions property. - * + * * @return * possible object is * {@link Boolean } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public Boolean isExtensions() { @@ -209,11 +209,11 @@ public class Plugin { /** * Sets the value of the extensions property. - * + * * @param value * allowed object is * {@link Boolean } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setExtensions(Boolean value) { @@ -222,11 +222,11 @@ public class Plugin { /** * Gets the value of the executions property. - * + * * @return * possible object is * {@link Plugin.Executions } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public Plugin.Executions getExecutions() { @@ -235,11 +235,11 @@ public class Plugin { /** * Sets the value of the executions property. - * + * * @param value * allowed object is * {@link Plugin.Executions } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setExecutions(Plugin.Executions value) { @@ -248,11 +248,11 @@ public class Plugin { /** * Gets the value of the dependencies property. - * + * * @return * possible object is * {@link Plugin.Dependencies } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public Plugin.Dependencies getDependencies() { @@ -261,11 +261,11 @@ public class Plugin { /** * Sets the value of the dependencies property. - * + * * @param value * allowed object is * {@link Plugin.Dependencies } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setDependencies(Plugin.Dependencies value) { @@ -274,11 +274,11 @@ public class Plugin { /** * Gets the value of the goals property. - * + * * @return * possible object is * {@link Plugin.Goals } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public Plugin.Goals getGoals() { @@ -287,11 +287,11 @@ public class Plugin { /** * Sets the value of the goals property. - * + * * @param value * allowed object is * {@link Plugin.Goals } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setGoals(Plugin.Goals value) { @@ -300,11 +300,11 @@ public class Plugin { /** * Gets the value of the inherited property. - * + * * @return * possible object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public String getInherited() { @@ -313,11 +313,11 @@ public class Plugin { /** * Sets the value of the inherited property. - * + * * @param value * allowed object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setInherited(String value) { @@ -326,11 +326,11 @@ public class Plugin { /** * Gets the value of the configuration property. - * + * * @return * possible object is * {@link Plugin.Configuration } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public Plugin.Configuration getConfiguration() { @@ -339,11 +339,11 @@ public class Plugin { /** * Sets the value of the configuration property. - * + * * @param value * allowed object is * {@link Plugin.Configuration } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setConfiguration(Plugin.Configuration value) { @@ -353,9 +353,9 @@ public class Plugin { /** *

Java class for anonymous complex type. - * + * *

The following schema fragment specifies the expected content contained within this class. - * + * *

      * <complexType>
      *   <complexContent>
@@ -367,8 +367,8 @@ public class Plugin {
      *   </complexContent>
      * </complexType>
      * 
- * - * + * + * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { @@ -383,25 +383,25 @@ public class Plugin { /** * Gets the value of the any property. - * + * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. - * + * *

* For example, to add a new item, do as follows: *

          *    getAny().add(newItem);
          * 
- * - * + * + * *

* Objects of the following type(s) are allowed in the list * {@link Element } - * - * + * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public List getAny() { @@ -416,9 +416,9 @@ public class Plugin { /** *

Java class for anonymous complex type. - * + * *

The following schema fragment specifies the expected content contained within this class. - * + * *

      * <complexType>
      *   <complexContent>
@@ -430,8 +430,8 @@ public class Plugin {
      *   </complexContent>
      * </complexType>
      * 
- * - * + * + * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { @@ -445,25 +445,25 @@ public class Plugin { /** * Gets the value of the dependency property. - * + * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the dependency property. - * + * *

* For example, to add a new item, do as follows: *

          *    getDependency().add(newItem);
          * 
- * - * + * + * *

* Objects of the following type(s) are allowed in the list * {@link Dependency } - * - * + * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public List getDependency() { @@ -478,9 +478,9 @@ public class Plugin { /** *

Java class for anonymous complex type. - * + * *

The following schema fragment specifies the expected content contained within this class. - * + * *

      * <complexType>
      *   <complexContent>
@@ -492,8 +492,8 @@ public class Plugin {
      *   </complexContent>
      * </complexType>
      * 
- * - * + * + * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { @@ -507,25 +507,25 @@ public class Plugin { /** * Gets the value of the execution property. - * + * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the execution property. - * + * *

* For example, to add a new item, do as follows: *

          *    getExecution().add(newItem);
          * 
- * - * + * + * *

* Objects of the following type(s) are allowed in the list * {@link PluginExecution } - * - * + * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public List getExecution() { @@ -540,9 +540,9 @@ public class Plugin { /** *

Java class for anonymous complex type. - * + * *

The following schema fragment specifies the expected content contained within this class. - * + * *

      * <complexType>
      *   <complexContent>
@@ -554,8 +554,8 @@ public class Plugin {
      *   </complexContent>
      * </complexType>
      * 
- * - * + * + * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { @@ -570,25 +570,25 @@ public class Plugin { /** * Gets the value of the any property. - * + * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. - * + * *

* For example, to add a new item, do as follows: *

          *    getAny().add(newItem);
          * 
- * - * + * + * *

* Objects of the following type(s) are allowed in the list * {@link Element } - * - * + * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public List getAny() { diff --git a/src/main/java/org/codesecure/dependencycheck/analyzer/pom/generated/PluginExecution.java b/src/main/java/org/owasp/dependencycheck/analyzer/pom/generated/PluginExecution.java similarity index 94% rename from src/main/java/org/codesecure/dependencycheck/analyzer/pom/generated/PluginExecution.java rename to src/main/java/org/owasp/dependencycheck/analyzer/pom/generated/PluginExecution.java index ae54f4970..7146ca170 100644 --- a/src/main/java/org/codesecure/dependencycheck/analyzer/pom/generated/PluginExecution.java +++ b/src/main/java/org/owasp/dependencycheck/analyzer/pom/generated/PluginExecution.java @@ -1,12 +1,12 @@ // -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 in JDK 6 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2012.11.09 at 12:33:57 PM EST +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 in JDK 6 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2012.11.09 at 12:33:57 PM EST // -package org.codesecure.dependencycheck.analyzer.pom.generated; +package org.owasp.dependencycheck.analyzer.pom.generated; import java.util.ArrayList; import java.util.List; @@ -21,11 +21,11 @@ import org.w3c.dom.Element; /** * 4.0.0 - * + * *

Java class for PluginExecution complex type. - * + * *

The following schema fragment specifies the expected content contained within this class. - * + * *

  * <complexType name="PluginExecution">
  *   <complexContent>
@@ -61,8 +61,8 @@ import org.w3c.dom.Element;
  *   </complexContent>
  * </complexType>
  * 
- * - * + * + * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "PluginExecution", propOrder = { @@ -85,11 +85,11 @@ public class PluginExecution { /** * Gets the value of the id property. - * + * * @return * possible object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public String getId() { @@ -98,11 +98,11 @@ public class PluginExecution { /** * Sets the value of the id property. - * + * * @param value * allowed object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setId(String value) { @@ -111,11 +111,11 @@ public class PluginExecution { /** * Gets the value of the phase property. - * + * * @return * possible object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public String getPhase() { @@ -124,11 +124,11 @@ public class PluginExecution { /** * Sets the value of the phase property. - * + * * @param value * allowed object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setPhase(String value) { @@ -137,11 +137,11 @@ public class PluginExecution { /** * Gets the value of the goals property. - * + * * @return * possible object is * {@link PluginExecution.Goals } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public PluginExecution.Goals getGoals() { @@ -150,11 +150,11 @@ public class PluginExecution { /** * Sets the value of the goals property. - * + * * @param value * allowed object is * {@link PluginExecution.Goals } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setGoals(PluginExecution.Goals value) { @@ -163,11 +163,11 @@ public class PluginExecution { /** * Gets the value of the inherited property. - * + * * @return * possible object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public String getInherited() { @@ -176,11 +176,11 @@ public class PluginExecution { /** * Sets the value of the inherited property. - * + * * @param value * allowed object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setInherited(String value) { @@ -189,11 +189,11 @@ public class PluginExecution { /** * Gets the value of the configuration property. - * + * * @return * possible object is * {@link PluginExecution.Configuration } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public PluginExecution.Configuration getConfiguration() { @@ -202,11 +202,11 @@ public class PluginExecution { /** * Sets the value of the configuration property. - * + * * @param value * allowed object is * {@link PluginExecution.Configuration } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setConfiguration(PluginExecution.Configuration value) { @@ -216,9 +216,9 @@ public class PluginExecution { /** *

Java class for anonymous complex type. - * + * *

The following schema fragment specifies the expected content contained within this class. - * + * *

      * <complexType>
      *   <complexContent>
@@ -230,8 +230,8 @@ public class PluginExecution {
      *   </complexContent>
      * </complexType>
      * 
- * - * + * + * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { @@ -246,25 +246,25 @@ public class PluginExecution { /** * Gets the value of the any property. - * + * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. - * + * *

* For example, to add a new item, do as follows: *

          *    getAny().add(newItem);
          * 
- * - * + * + * *

* Objects of the following type(s) are allowed in the list * {@link Element } - * - * + * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public List getAny() { @@ -279,9 +279,9 @@ public class PluginExecution { /** *

Java class for anonymous complex type. - * + * *

The following schema fragment specifies the expected content contained within this class. - * + * *

      * <complexType>
      *   <complexContent>
@@ -293,8 +293,8 @@ public class PluginExecution {
      *   </complexContent>
      * </complexType>
      * 
- * - * + * + * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { @@ -308,25 +308,25 @@ public class PluginExecution { /** * Gets the value of the goal property. - * + * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the goal property. - * + * *

* For example, to add a new item, do as follows: *

          *    getGoal().add(newItem);
          * 
- * - * + * + * *

* Objects of the following type(s) are allowed in the list * {@link String } - * - * + * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public List getGoal() { diff --git a/src/main/java/org/codesecure/dependencycheck/analyzer/pom/generated/PluginManagement.java b/src/main/java/org/owasp/dependencycheck/analyzer/pom/generated/PluginManagement.java similarity index 92% rename from src/main/java/org/codesecure/dependencycheck/analyzer/pom/generated/PluginManagement.java rename to src/main/java/org/owasp/dependencycheck/analyzer/pom/generated/PluginManagement.java index 0cd98c09c..37b1660bc 100644 --- a/src/main/java/org/codesecure/dependencycheck/analyzer/pom/generated/PluginManagement.java +++ b/src/main/java/org/owasp/dependencycheck/analyzer/pom/generated/PluginManagement.java @@ -1,12 +1,12 @@ // -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 in JDK 6 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2012.11.09 at 12:33:57 PM EST +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 in JDK 6 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2012.11.09 at 12:33:57 PM EST // -package org.codesecure.dependencycheck.analyzer.pom.generated; +package org.owasp.dependencycheck.analyzer.pom.generated; import java.util.ArrayList; import java.util.List; @@ -17,14 +17,14 @@ import javax.xml.bind.annotation.XmlType; /** - * + * * Section for management of default plugin information for use in a group of POMs. - * - * + * + * *

Java class for PluginManagement complex type. - * + * *

The following schema fragment specifies the expected content contained within this class. - * + * *

  * <complexType name="PluginManagement">
  *   <complexContent>
@@ -46,8 +46,8 @@ import javax.xml.bind.annotation.XmlType;
  *   </complexContent>
  * </complexType>
  * 
- * - * + * + * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "PluginManagement", propOrder = { @@ -61,11 +61,11 @@ public class PluginManagement { /** * Gets the value of the plugins property. - * + * * @return * possible object is * {@link PluginManagement.Plugins } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public PluginManagement.Plugins getPlugins() { @@ -74,11 +74,11 @@ public class PluginManagement { /** * Sets the value of the plugins property. - * + * * @param value * allowed object is * {@link PluginManagement.Plugins } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setPlugins(PluginManagement.Plugins value) { @@ -88,9 +88,9 @@ public class PluginManagement { /** *

Java class for anonymous complex type. - * + * *

The following schema fragment specifies the expected content contained within this class. - * + * *

      * <complexType>
      *   <complexContent>
@@ -102,8 +102,8 @@ public class PluginManagement {
      *   </complexContent>
      * </complexType>
      * 
- * - * + * + * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { @@ -117,25 +117,25 @@ public class PluginManagement { /** * Gets the value of the plugin property. - * + * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the plugin property. - * + * *

* For example, to add a new item, do as follows: *

          *    getPlugin().add(newItem);
          * 
- * - * + * + * *

* Objects of the following type(s) are allowed in the list * {@link Plugin } - * - * + * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public List getPlugin() { diff --git a/src/main/java/org/codesecure/dependencycheck/analyzer/pom/generated/Prerequisites.java b/src/main/java/org/owasp/dependencycheck/analyzer/pom/generated/Prerequisites.java similarity index 88% rename from src/main/java/org/codesecure/dependencycheck/analyzer/pom/generated/Prerequisites.java rename to src/main/java/org/owasp/dependencycheck/analyzer/pom/generated/Prerequisites.java index 6fb235707..1fbf6c51d 100644 --- a/src/main/java/org/codesecure/dependencycheck/analyzer/pom/generated/Prerequisites.java +++ b/src/main/java/org/owasp/dependencycheck/analyzer/pom/generated/Prerequisites.java @@ -1,12 +1,12 @@ // -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 in JDK 6 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2012.11.09 at 12:33:57 PM EST +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 in JDK 6 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2012.11.09 at 12:33:57 PM EST // -package org.codesecure.dependencycheck.analyzer.pom.generated; +package org.owasp.dependencycheck.analyzer.pom.generated; import javax.annotation.Generated; import javax.xml.bind.annotation.XmlAccessType; @@ -17,11 +17,11 @@ import javax.xml.bind.annotation.XmlType; /** * Describes the prerequisites a project can have. - * + * *

Java class for Prerequisites complex type. - * + * *

The following schema fragment specifies the expected content contained within this class. - * + * *

  * <complexType name="Prerequisites">
  *   <complexContent>
@@ -33,8 +33,8 @@ import javax.xml.bind.annotation.XmlType;
  *   </complexContent>
  * </complexType>
  * 
- * - * + * + * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Prerequisites", propOrder = { @@ -49,11 +49,11 @@ public class Prerequisites { /** * Gets the value of the maven property. - * + * * @return * possible object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public String getMaven() { @@ -62,11 +62,11 @@ public class Prerequisites { /** * Sets the value of the maven property. - * + * * @param value * allowed object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setMaven(String value) { diff --git a/src/main/java/org/codesecure/dependencycheck/analyzer/pom/generated/Profile.java b/src/main/java/org/owasp/dependencycheck/analyzer/pom/generated/Profile.java similarity index 95% rename from src/main/java/org/codesecure/dependencycheck/analyzer/pom/generated/Profile.java rename to src/main/java/org/owasp/dependencycheck/analyzer/pom/generated/Profile.java index e0b000f39..e096f6700 100644 --- a/src/main/java/org/codesecure/dependencycheck/analyzer/pom/generated/Profile.java +++ b/src/main/java/org/owasp/dependencycheck/analyzer/pom/generated/Profile.java @@ -1,12 +1,12 @@ // -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 in JDK 6 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2012.11.09 at 12:33:57 PM EST +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 in JDK 6 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2012.11.09 at 12:33:57 PM EST // -package org.codesecure.dependencycheck.analyzer.pom.generated; +package org.owasp.dependencycheck.analyzer.pom.generated; import java.util.ArrayList; import java.util.List; @@ -19,14 +19,14 @@ import org.w3c.dom.Element; /** - * + * * Modifications to the build process which is activated based on environmental parameters or command line arguments. - * - * + * + * *

Java class for Profile complex type. - * + * *

The following schema fragment specifies the expected content contained within this class. - * + * *

  * <complexType name="Profile">
  *   <complexContent>
@@ -109,8 +109,8 @@ import org.w3c.dom.Element;
  *   </complexContent>
  * </complexType>
  * 
- * - * + * + * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Profile", propOrder = { @@ -146,11 +146,11 @@ public class Profile { /** * Gets the value of the id property. - * + * * @return * possible object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public String getId() { @@ -159,11 +159,11 @@ public class Profile { /** * Sets the value of the id property. - * + * * @param value * allowed object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setId(String value) { @@ -172,11 +172,11 @@ public class Profile { /** * Gets the value of the activation property. - * + * * @return * possible object is * {@link Activation } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public Activation getActivation() { @@ -185,11 +185,11 @@ public class Profile { /** * Sets the value of the activation property. - * + * * @param value * allowed object is * {@link Activation } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setActivation(Activation value) { @@ -198,11 +198,11 @@ public class Profile { /** * Gets the value of the build property. - * + * * @return * possible object is * {@link BuildBase } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public BuildBase getBuild() { @@ -211,11 +211,11 @@ public class Profile { /** * Sets the value of the build property. - * + * * @param value * allowed object is * {@link BuildBase } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setBuild(BuildBase value) { @@ -224,11 +224,11 @@ public class Profile { /** * Gets the value of the modules property. - * + * * @return * possible object is * {@link Profile.Modules } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public Profile.Modules getModules() { @@ -237,11 +237,11 @@ public class Profile { /** * Sets the value of the modules property. - * + * * @param value * allowed object is * {@link Profile.Modules } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setModules(Profile.Modules value) { @@ -250,11 +250,11 @@ public class Profile { /** * Gets the value of the repositories property. - * + * * @return * possible object is * {@link Profile.Repositories } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public Profile.Repositories getRepositories() { @@ -263,11 +263,11 @@ public class Profile { /** * Sets the value of the repositories property. - * + * * @param value * allowed object is * {@link Profile.Repositories } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setRepositories(Profile.Repositories value) { @@ -276,11 +276,11 @@ public class Profile { /** * Gets the value of the pluginRepositories property. - * + * * @return * possible object is * {@link Profile.PluginRepositories } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public Profile.PluginRepositories getPluginRepositories() { @@ -289,11 +289,11 @@ public class Profile { /** * Sets the value of the pluginRepositories property. - * + * * @param value * allowed object is * {@link Profile.PluginRepositories } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setPluginRepositories(Profile.PluginRepositories value) { @@ -302,11 +302,11 @@ public class Profile { /** * Gets the value of the dependencies property. - * + * * @return * possible object is * {@link Profile.Dependencies } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public Profile.Dependencies getDependencies() { @@ -315,11 +315,11 @@ public class Profile { /** * Sets the value of the dependencies property. - * + * * @param value * allowed object is * {@link Profile.Dependencies } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setDependencies(Profile.Dependencies value) { @@ -328,11 +328,11 @@ public class Profile { /** * Gets the value of the reports property. - * + * * @return * possible object is * {@link Profile.Reports } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public Profile.Reports getReports() { @@ -341,11 +341,11 @@ public class Profile { /** * Sets the value of the reports property. - * + * * @param value * allowed object is * {@link Profile.Reports } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setReports(Profile.Reports value) { @@ -354,11 +354,11 @@ public class Profile { /** * Gets the value of the reporting property. - * + * * @return * possible object is * {@link Reporting } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public Reporting getReporting() { @@ -367,11 +367,11 @@ public class Profile { /** * Sets the value of the reporting property. - * + * * @param value * allowed object is * {@link Reporting } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setReporting(Reporting value) { @@ -380,11 +380,11 @@ public class Profile { /** * Gets the value of the dependencyManagement property. - * + * * @return * possible object is * {@link DependencyManagement } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public DependencyManagement getDependencyManagement() { @@ -393,11 +393,11 @@ public class Profile { /** * Sets the value of the dependencyManagement property. - * + * * @param value * allowed object is * {@link DependencyManagement } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setDependencyManagement(DependencyManagement value) { @@ -406,11 +406,11 @@ public class Profile { /** * Gets the value of the distributionManagement property. - * + * * @return * possible object is * {@link DistributionManagement } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public DistributionManagement getDistributionManagement() { @@ -419,11 +419,11 @@ public class Profile { /** * Sets the value of the distributionManagement property. - * + * * @param value * allowed object is * {@link DistributionManagement } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setDistributionManagement(DistributionManagement value) { @@ -432,11 +432,11 @@ public class Profile { /** * Gets the value of the properties property. - * + * * @return * possible object is * {@link Profile.Properties } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public Profile.Properties getProperties() { @@ -445,11 +445,11 @@ public class Profile { /** * Sets the value of the properties property. - * + * * @param value * allowed object is * {@link Profile.Properties } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setProperties(Profile.Properties value) { @@ -459,9 +459,9 @@ public class Profile { /** *

Java class for anonymous complex type. - * + * *

The following schema fragment specifies the expected content contained within this class. - * + * *

      * <complexType>
      *   <complexContent>
@@ -473,8 +473,8 @@ public class Profile {
      *   </complexContent>
      * </complexType>
      * 
- * - * + * + * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { @@ -488,25 +488,25 @@ public class Profile { /** * Gets the value of the dependency property. - * + * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the dependency property. - * + * *

* For example, to add a new item, do as follows: *

          *    getDependency().add(newItem);
          * 
- * - * + * + * *

* Objects of the following type(s) are allowed in the list * {@link Dependency } - * - * + * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public List getDependency() { @@ -521,9 +521,9 @@ public class Profile { /** *

Java class for anonymous complex type. - * + * *

The following schema fragment specifies the expected content contained within this class. - * + * *

      * <complexType>
      *   <complexContent>
@@ -535,8 +535,8 @@ public class Profile {
      *   </complexContent>
      * </complexType>
      * 
- * - * + * + * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { @@ -550,25 +550,25 @@ public class Profile { /** * Gets the value of the module property. - * + * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the module property. - * + * *

* For example, to add a new item, do as follows: *

          *    getModule().add(newItem);
          * 
- * - * + * + * *

* Objects of the following type(s) are allowed in the list * {@link String } - * - * + * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public List getModule() { @@ -583,9 +583,9 @@ public class Profile { /** *

Java class for anonymous complex type. - * + * *

The following schema fragment specifies the expected content contained within this class. - * + * *

      * <complexType>
      *   <complexContent>
@@ -597,8 +597,8 @@ public class Profile {
      *   </complexContent>
      * </complexType>
      * 
- * - * + * + * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { @@ -612,25 +612,25 @@ public class Profile { /** * Gets the value of the pluginRepository property. - * + * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the pluginRepository property. - * + * *

* For example, to add a new item, do as follows: *

          *    getPluginRepository().add(newItem);
          * 
- * - * + * + * *

* Objects of the following type(s) are allowed in the list * {@link Repository } - * - * + * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public List getPluginRepository() { @@ -645,9 +645,9 @@ public class Profile { /** *

Java class for anonymous complex type. - * + * *

The following schema fragment specifies the expected content contained within this class. - * + * *

      * <complexType>
      *   <complexContent>
@@ -659,8 +659,8 @@ public class Profile {
      *   </complexContent>
      * </complexType>
      * 
- * - * + * + * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { @@ -675,25 +675,25 @@ public class Profile { /** * Gets the value of the any property. - * + * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. - * + * *

* For example, to add a new item, do as follows: *

          *    getAny().add(newItem);
          * 
- * - * + * + * *

* Objects of the following type(s) are allowed in the list * {@link Element } - * - * + * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public List getAny() { @@ -708,9 +708,9 @@ public class Profile { /** *

Java class for anonymous complex type. - * + * *

The following schema fragment specifies the expected content contained within this class. - * + * *

      * <complexType>
      *   <complexContent>
@@ -722,8 +722,8 @@ public class Profile {
      *   </complexContent>
      * </complexType>
      * 
- * - * + * + * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { @@ -738,25 +738,25 @@ public class Profile { /** * Gets the value of the any property. - * + * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. - * + * *

* For example, to add a new item, do as follows: *

          *    getAny().add(newItem);
          * 
- * - * + * + * *

* Objects of the following type(s) are allowed in the list * {@link Element } - * - * + * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public List getAny() { @@ -771,9 +771,9 @@ public class Profile { /** *

Java class for anonymous complex type. - * + * *

The following schema fragment specifies the expected content contained within this class. - * + * *

      * <complexType>
      *   <complexContent>
@@ -785,8 +785,8 @@ public class Profile {
      *   </complexContent>
      * </complexType>
      * 
- * - * + * + * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { @@ -800,25 +800,25 @@ public class Profile { /** * Gets the value of the repository property. - * + * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the repository property. - * + * *

* For example, to add a new item, do as follows: *

          *    getRepository().add(newItem);
          * 
- * - * + * + * *

* Objects of the following type(s) are allowed in the list * {@link Repository } - * - * + * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public List getRepository() { diff --git a/src/main/java/org/codesecure/dependencycheck/analyzer/pom/generated/Relocation.java b/src/main/java/org/owasp/dependencycheck/analyzer/pom/generated/Relocation.java similarity index 92% rename from src/main/java/org/codesecure/dependencycheck/analyzer/pom/generated/Relocation.java rename to src/main/java/org/owasp/dependencycheck/analyzer/pom/generated/Relocation.java index ebca62622..7cd0e6b4b 100644 --- a/src/main/java/org/codesecure/dependencycheck/analyzer/pom/generated/Relocation.java +++ b/src/main/java/org/owasp/dependencycheck/analyzer/pom/generated/Relocation.java @@ -1,12 +1,12 @@ // -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 in JDK 6 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2012.11.09 at 12:33:57 PM EST +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 in JDK 6 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2012.11.09 at 12:33:57 PM EST // -package org.codesecure.dependencycheck.analyzer.pom.generated; +package org.owasp.dependencycheck.analyzer.pom.generated; import javax.annotation.Generated; import javax.xml.bind.annotation.XmlAccessType; @@ -17,11 +17,11 @@ import javax.xml.bind.annotation.XmlType; /** * Describes where an artifact has moved to. If any of the values are omitted, it is assumed to be the * same as it was before. - * + * *

Java class for Relocation complex type. - * + * *

The following schema fragment specifies the expected content contained within this class. - * + * *

  * <complexType name="Relocation">
  *   <complexContent>
@@ -36,8 +36,8 @@ import javax.xml.bind.annotation.XmlType;
  *   </complexContent>
  * </complexType>
  * 
- * - * + * + * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Relocation", propOrder = { @@ -57,11 +57,11 @@ public class Relocation { /** * Gets the value of the groupId property. - * + * * @return * possible object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public String getGroupId() { @@ -70,11 +70,11 @@ public class Relocation { /** * Sets the value of the groupId property. - * + * * @param value * allowed object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setGroupId(String value) { @@ -83,11 +83,11 @@ public class Relocation { /** * Gets the value of the artifactId property. - * + * * @return * possible object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public String getArtifactId() { @@ -96,11 +96,11 @@ public class Relocation { /** * Sets the value of the artifactId property. - * + * * @param value * allowed object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setArtifactId(String value) { @@ -109,11 +109,11 @@ public class Relocation { /** * Gets the value of the version property. - * + * * @return * possible object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public String getVersion() { @@ -122,11 +122,11 @@ public class Relocation { /** * Sets the value of the version property. - * + * * @param value * allowed object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setVersion(String value) { @@ -135,11 +135,11 @@ public class Relocation { /** * Gets the value of the message property. - * + * * @return * possible object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public String getMessage() { @@ -148,11 +148,11 @@ public class Relocation { /** * Sets the value of the message property. - * + * * @param value * allowed object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setMessage(String value) { diff --git a/src/main/java/org/codesecure/dependencycheck/analyzer/pom/generated/ReportPlugin.java b/src/main/java/org/owasp/dependencycheck/analyzer/pom/generated/ReportPlugin.java similarity index 94% rename from src/main/java/org/codesecure/dependencycheck/analyzer/pom/generated/ReportPlugin.java rename to src/main/java/org/owasp/dependencycheck/analyzer/pom/generated/ReportPlugin.java index 4dbf88772..148ba0661 100644 --- a/src/main/java/org/codesecure/dependencycheck/analyzer/pom/generated/ReportPlugin.java +++ b/src/main/java/org/owasp/dependencycheck/analyzer/pom/generated/ReportPlugin.java @@ -1,12 +1,12 @@ // -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 in JDK 6 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2012.11.09 at 12:33:57 PM EST +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 in JDK 6 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2012.11.09 at 12:33:57 PM EST // -package org.codesecure.dependencycheck.analyzer.pom.generated; +package org.owasp.dependencycheck.analyzer.pom.generated; import java.util.ArrayList; import java.util.List; @@ -21,11 +21,11 @@ import org.w3c.dom.Element; /** * 4.0.0 - * + * *

Java class for ReportPlugin complex type. - * + * *

The following schema fragment specifies the expected content contained within this class. - * + * *

  * <complexType name="ReportPlugin">
  *   <complexContent>
@@ -62,8 +62,8 @@ import org.w3c.dom.Element;
  *   </complexContent>
  * </complexType>
  * 
- * - * + * + * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ReportPlugin", propOrder = { @@ -88,11 +88,11 @@ public class ReportPlugin { /** * Gets the value of the groupId property. - * + * * @return * possible object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public String getGroupId() { @@ -101,11 +101,11 @@ public class ReportPlugin { /** * Sets the value of the groupId property. - * + * * @param value * allowed object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setGroupId(String value) { @@ -114,11 +114,11 @@ public class ReportPlugin { /** * Gets the value of the artifactId property. - * + * * @return * possible object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public String getArtifactId() { @@ -127,11 +127,11 @@ public class ReportPlugin { /** * Sets the value of the artifactId property. - * + * * @param value * allowed object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setArtifactId(String value) { @@ -140,11 +140,11 @@ public class ReportPlugin { /** * Gets the value of the version property. - * + * * @return * possible object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public String getVersion() { @@ -153,11 +153,11 @@ public class ReportPlugin { /** * Sets the value of the version property. - * + * * @param value * allowed object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setVersion(String value) { @@ -166,11 +166,11 @@ public class ReportPlugin { /** * Gets the value of the inherited property. - * + * * @return * possible object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public String getInherited() { @@ -179,11 +179,11 @@ public class ReportPlugin { /** * Sets the value of the inherited property. - * + * * @param value * allowed object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setInherited(String value) { @@ -192,11 +192,11 @@ public class ReportPlugin { /** * Gets the value of the configuration property. - * + * * @return * possible object is * {@link ReportPlugin.Configuration } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public ReportPlugin.Configuration getConfiguration() { @@ -205,11 +205,11 @@ public class ReportPlugin { /** * Sets the value of the configuration property. - * + * * @param value * allowed object is * {@link ReportPlugin.Configuration } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setConfiguration(ReportPlugin.Configuration value) { @@ -218,11 +218,11 @@ public class ReportPlugin { /** * Gets the value of the reportSets property. - * + * * @return * possible object is * {@link ReportPlugin.ReportSets } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public ReportPlugin.ReportSets getReportSets() { @@ -231,11 +231,11 @@ public class ReportPlugin { /** * Sets the value of the reportSets property. - * + * * @param value * allowed object is * {@link ReportPlugin.ReportSets } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setReportSets(ReportPlugin.ReportSets value) { @@ -245,9 +245,9 @@ public class ReportPlugin { /** *

Java class for anonymous complex type. - * + * *

The following schema fragment specifies the expected content contained within this class. - * + * *

      * <complexType>
      *   <complexContent>
@@ -259,8 +259,8 @@ public class ReportPlugin {
      *   </complexContent>
      * </complexType>
      * 
- * - * + * + * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { @@ -275,25 +275,25 @@ public class ReportPlugin { /** * Gets the value of the any property. - * + * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. - * + * *

* For example, to add a new item, do as follows: *

          *    getAny().add(newItem);
          * 
- * - * + * + * *

* Objects of the following type(s) are allowed in the list * {@link Element } - * - * + * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public List getAny() { @@ -308,9 +308,9 @@ public class ReportPlugin { /** *

Java class for anonymous complex type. - * + * *

The following schema fragment specifies the expected content contained within this class. - * + * *

      * <complexType>
      *   <complexContent>
@@ -322,8 +322,8 @@ public class ReportPlugin {
      *   </complexContent>
      * </complexType>
      * 
- * - * + * + * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { @@ -337,25 +337,25 @@ public class ReportPlugin { /** * Gets the value of the reportSet property. - * + * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the reportSet property. - * + * *

* For example, to add a new item, do as follows: *

          *    getReportSet().add(newItem);
          * 
- * - * + * + * *

* Objects of the following type(s) are allowed in the list * {@link ReportSet } - * - * + * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public List getReportSet() { diff --git a/src/main/java/org/codesecure/dependencycheck/analyzer/pom/generated/ReportSet.java b/src/main/java/org/owasp/dependencycheck/analyzer/pom/generated/ReportSet.java similarity index 94% rename from src/main/java/org/codesecure/dependencycheck/analyzer/pom/generated/ReportSet.java rename to src/main/java/org/owasp/dependencycheck/analyzer/pom/generated/ReportSet.java index f7715deea..a99d1e20f 100644 --- a/src/main/java/org/codesecure/dependencycheck/analyzer/pom/generated/ReportSet.java +++ b/src/main/java/org/owasp/dependencycheck/analyzer/pom/generated/ReportSet.java @@ -1,12 +1,12 @@ // -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 in JDK 6 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2012.11.09 at 12:33:57 PM EST +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 in JDK 6 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2012.11.09 at 12:33:57 PM EST // -package org.codesecure.dependencycheck.analyzer.pom.generated; +package org.owasp.dependencycheck.analyzer.pom.generated; import java.util.ArrayList; import java.util.List; @@ -21,11 +21,11 @@ import org.w3c.dom.Element; /** * Represents a set of reports and configuration to be used to generate them. - * + * *

Java class for ReportSet complex type. - * + * *

The following schema fragment specifies the expected content contained within this class. - * + * *

  * <complexType name="ReportSet">
  *   <complexContent>
@@ -60,8 +60,8 @@ import org.w3c.dom.Element;
  *   </complexContent>
  * </complexType>
  * 
- * - * + * + * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ReportSet", propOrder = { @@ -82,11 +82,11 @@ public class ReportSet { /** * Gets the value of the id property. - * + * * @return * possible object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public String getId() { @@ -95,11 +95,11 @@ public class ReportSet { /** * Sets the value of the id property. - * + * * @param value * allowed object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setId(String value) { @@ -108,11 +108,11 @@ public class ReportSet { /** * Gets the value of the configuration property. - * + * * @return * possible object is * {@link ReportSet.Configuration } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public ReportSet.Configuration getConfiguration() { @@ -121,11 +121,11 @@ public class ReportSet { /** * Sets the value of the configuration property. - * + * * @param value * allowed object is * {@link ReportSet.Configuration } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setConfiguration(ReportSet.Configuration value) { @@ -134,11 +134,11 @@ public class ReportSet { /** * Gets the value of the inherited property. - * + * * @return * possible object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public String getInherited() { @@ -147,11 +147,11 @@ public class ReportSet { /** * Sets the value of the inherited property. - * + * * @param value * allowed object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setInherited(String value) { @@ -160,11 +160,11 @@ public class ReportSet { /** * Gets the value of the reports property. - * + * * @return * possible object is * {@link ReportSet.Reports } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public ReportSet.Reports getReports() { @@ -173,11 +173,11 @@ public class ReportSet { /** * Sets the value of the reports property. - * + * * @param value * allowed object is * {@link ReportSet.Reports } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setReports(ReportSet.Reports value) { @@ -187,9 +187,9 @@ public class ReportSet { /** *

Java class for anonymous complex type. - * + * *

The following schema fragment specifies the expected content contained within this class. - * + * *

      * <complexType>
      *   <complexContent>
@@ -201,8 +201,8 @@ public class ReportSet {
      *   </complexContent>
      * </complexType>
      * 
- * - * + * + * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { @@ -217,25 +217,25 @@ public class ReportSet { /** * Gets the value of the any property. - * + * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. - * + * *

* For example, to add a new item, do as follows: *

          *    getAny().add(newItem);
          * 
- * - * + * + * *

* Objects of the following type(s) are allowed in the list * {@link Element } - * - * + * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public List getAny() { @@ -250,9 +250,9 @@ public class ReportSet { /** *

Java class for anonymous complex type. - * + * *

The following schema fragment specifies the expected content contained within this class. - * + * *

      * <complexType>
      *   <complexContent>
@@ -264,8 +264,8 @@ public class ReportSet {
      *   </complexContent>
      * </complexType>
      * 
- * - * + * + * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { @@ -279,25 +279,25 @@ public class ReportSet { /** * Gets the value of the report property. - * + * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the report property. - * + * *

* For example, to add a new item, do as follows: *

          *    getReport().add(newItem);
          * 
- * - * + * + * *

* Objects of the following type(s) are allowed in the list * {@link String } - * - * + * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public List getReport() { diff --git a/src/main/java/org/codesecure/dependencycheck/analyzer/pom/generated/Reporting.java b/src/main/java/org/owasp/dependencycheck/analyzer/pom/generated/Reporting.java similarity index 93% rename from src/main/java/org/codesecure/dependencycheck/analyzer/pom/generated/Reporting.java rename to src/main/java/org/owasp/dependencycheck/analyzer/pom/generated/Reporting.java index da7595ff7..b10633527 100644 --- a/src/main/java/org/codesecure/dependencycheck/analyzer/pom/generated/Reporting.java +++ b/src/main/java/org/owasp/dependencycheck/analyzer/pom/generated/Reporting.java @@ -1,12 +1,12 @@ // -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 in JDK 6 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2012.11.09 at 12:33:57 PM EST +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 in JDK 6 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2012.11.09 at 12:33:57 PM EST // -package org.codesecure.dependencycheck.analyzer.pom.generated; +package org.owasp.dependencycheck.analyzer.pom.generated; import java.util.ArrayList; import java.util.List; @@ -19,11 +19,11 @@ import javax.xml.bind.annotation.XmlType; /** * Section for management of reports and their configuration. - * + * *

Java class for Reporting complex type. - * + * *

The following schema fragment specifies the expected content contained within this class. - * + * *

  * <complexType name="Reporting">
  *   <complexContent>
@@ -47,8 +47,8 @@ import javax.xml.bind.annotation.XmlType;
  *   </complexContent>
  * </complexType>
  * 
- * - * + * + * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Reporting", propOrder = { @@ -67,11 +67,11 @@ public class Reporting { /** * Gets the value of the excludeDefaults property. - * + * * @return * possible object is * {@link Boolean } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public Boolean isExcludeDefaults() { @@ -80,11 +80,11 @@ public class Reporting { /** * Sets the value of the excludeDefaults property. - * + * * @param value * allowed object is * {@link Boolean } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setExcludeDefaults(Boolean value) { @@ -93,11 +93,11 @@ public class Reporting { /** * Gets the value of the outputDirectory property. - * + * * @return * possible object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public String getOutputDirectory() { @@ -106,11 +106,11 @@ public class Reporting { /** * Sets the value of the outputDirectory property. - * + * * @param value * allowed object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setOutputDirectory(String value) { @@ -119,11 +119,11 @@ public class Reporting { /** * Gets the value of the plugins property. - * + * * @return * possible object is * {@link Reporting.Plugins } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public Reporting.Plugins getPlugins() { @@ -132,11 +132,11 @@ public class Reporting { /** * Sets the value of the plugins property. - * + * * @param value * allowed object is * {@link Reporting.Plugins } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setPlugins(Reporting.Plugins value) { @@ -146,9 +146,9 @@ public class Reporting { /** *

Java class for anonymous complex type. - * + * *

The following schema fragment specifies the expected content contained within this class. - * + * *

      * <complexType>
      *   <complexContent>
@@ -160,8 +160,8 @@ public class Reporting {
      *   </complexContent>
      * </complexType>
      * 
- * - * + * + * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { @@ -175,25 +175,25 @@ public class Reporting { /** * Gets the value of the plugin property. - * + * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the plugin property. - * + * *

* For example, to add a new item, do as follows: *

          *    getPlugin().add(newItem);
          * 
- * - * + * + * *

* Objects of the following type(s) are allowed in the list * {@link ReportPlugin } - * - * + * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public List getPlugin() { diff --git a/src/main/java/org/codesecure/dependencycheck/analyzer/pom/generated/Repository.java b/src/main/java/org/owasp/dependencycheck/analyzer/pom/generated/Repository.java similarity index 93% rename from src/main/java/org/codesecure/dependencycheck/analyzer/pom/generated/Repository.java rename to src/main/java/org/owasp/dependencycheck/analyzer/pom/generated/Repository.java index e5d2147b5..41357d46e 100644 --- a/src/main/java/org/codesecure/dependencycheck/analyzer/pom/generated/Repository.java +++ b/src/main/java/org/owasp/dependencycheck/analyzer/pom/generated/Repository.java @@ -1,12 +1,12 @@ // -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 in JDK 6 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2012.11.09 at 12:33:57 PM EST +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 in JDK 6 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2012.11.09 at 12:33:57 PM EST // -package org.codesecure.dependencycheck.analyzer.pom.generated; +package org.owasp.dependencycheck.analyzer.pom.generated; import javax.annotation.Generated; import javax.xml.bind.annotation.XmlAccessType; @@ -16,14 +16,14 @@ import javax.xml.bind.annotation.XmlType; /** - * + * * A repository contains the information needed for establishing connections with remote repository. - * - * + * + * *

Java class for Repository complex type. - * + * *

The following schema fragment specifies the expected content contained within this class. - * + * *

  * <complexType name="Repository">
  *   <complexContent>
@@ -40,8 +40,8 @@ import javax.xml.bind.annotation.XmlType;
  *   </complexContent>
  * </complexType>
  * 
- * - * + * + * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Repository", propOrder = { @@ -66,11 +66,11 @@ public class Repository { /** * Gets the value of the releases property. - * + * * @return * possible object is * {@link RepositoryPolicy } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public RepositoryPolicy getReleases() { @@ -79,11 +79,11 @@ public class Repository { /** * Sets the value of the releases property. - * + * * @param value * allowed object is * {@link RepositoryPolicy } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setReleases(RepositoryPolicy value) { @@ -92,11 +92,11 @@ public class Repository { /** * Gets the value of the snapshots property. - * + * * @return * possible object is * {@link RepositoryPolicy } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public RepositoryPolicy getSnapshots() { @@ -105,11 +105,11 @@ public class Repository { /** * Sets the value of the snapshots property. - * + * * @param value * allowed object is * {@link RepositoryPolicy } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setSnapshots(RepositoryPolicy value) { @@ -118,11 +118,11 @@ public class Repository { /** * Gets the value of the id property. - * + * * @return * possible object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public String getId() { @@ -131,11 +131,11 @@ public class Repository { /** * Sets the value of the id property. - * + * * @param value * allowed object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setId(String value) { @@ -144,11 +144,11 @@ public class Repository { /** * Gets the value of the name property. - * + * * @return * possible object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public String getName() { @@ -157,11 +157,11 @@ public class Repository { /** * Sets the value of the name property. - * + * * @param value * allowed object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setName(String value) { @@ -170,11 +170,11 @@ public class Repository { /** * Gets the value of the url property. - * + * * @return * possible object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public String getUrl() { @@ -183,11 +183,11 @@ public class Repository { /** * Sets the value of the url property. - * + * * @param value * allowed object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setUrl(String value) { @@ -196,11 +196,11 @@ public class Repository { /** * Gets the value of the layout property. - * + * * @return * possible object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public String getLayout() { @@ -209,11 +209,11 @@ public class Repository { /** * Sets the value of the layout property. - * + * * @param value * allowed object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setLayout(String value) { diff --git a/src/main/java/org/codesecure/dependencycheck/analyzer/pom/generated/RepositoryPolicy.java b/src/main/java/org/owasp/dependencycheck/analyzer/pom/generated/RepositoryPolicy.java similarity index 92% rename from src/main/java/org/codesecure/dependencycheck/analyzer/pom/generated/RepositoryPolicy.java rename to src/main/java/org/owasp/dependencycheck/analyzer/pom/generated/RepositoryPolicy.java index 1e1a100e5..263686f83 100644 --- a/src/main/java/org/codesecure/dependencycheck/analyzer/pom/generated/RepositoryPolicy.java +++ b/src/main/java/org/owasp/dependencycheck/analyzer/pom/generated/RepositoryPolicy.java @@ -1,12 +1,12 @@ // -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 in JDK 6 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2012.11.09 at 12:33:57 PM EST +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 in JDK 6 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2012.11.09 at 12:33:57 PM EST // -package org.codesecure.dependencycheck.analyzer.pom.generated; +package org.owasp.dependencycheck.analyzer.pom.generated; import javax.annotation.Generated; import javax.xml.bind.annotation.XmlAccessType; @@ -17,11 +17,11 @@ import javax.xml.bind.annotation.XmlType; /** * Download policy - * + * *

Java class for RepositoryPolicy complex type. - * + * *

The following schema fragment specifies the expected content contained within this class. - * + * *

  * <complexType name="RepositoryPolicy">
  *   <complexContent>
@@ -35,8 +35,8 @@ import javax.xml.bind.annotation.XmlType;
  *   </complexContent>
  * </complexType>
  * 
- * - * + * + * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "RepositoryPolicy", propOrder = { @@ -55,11 +55,11 @@ public class RepositoryPolicy { /** * Gets the value of the enabled property. - * + * * @return * possible object is * {@link Boolean } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public Boolean isEnabled() { @@ -68,11 +68,11 @@ public class RepositoryPolicy { /** * Sets the value of the enabled property. - * + * * @param value * allowed object is * {@link Boolean } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setEnabled(Boolean value) { @@ -81,11 +81,11 @@ public class RepositoryPolicy { /** * Gets the value of the updatePolicy property. - * + * * @return * possible object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public String getUpdatePolicy() { @@ -94,11 +94,11 @@ public class RepositoryPolicy { /** * Sets the value of the updatePolicy property. - * + * * @param value * allowed object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setUpdatePolicy(String value) { @@ -107,11 +107,11 @@ public class RepositoryPolicy { /** * Gets the value of the checksumPolicy property. - * + * * @return * possible object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public String getChecksumPolicy() { @@ -120,11 +120,11 @@ public class RepositoryPolicy { /** * Sets the value of the checksumPolicy property. - * + * * @param value * allowed object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setChecksumPolicy(String value) { diff --git a/src/main/java/org/codesecure/dependencycheck/analyzer/pom/generated/Resource.java b/src/main/java/org/owasp/dependencycheck/analyzer/pom/generated/Resource.java similarity index 94% rename from src/main/java/org/codesecure/dependencycheck/analyzer/pom/generated/Resource.java rename to src/main/java/org/owasp/dependencycheck/analyzer/pom/generated/Resource.java index 405d23863..be2919b01 100644 --- a/src/main/java/org/codesecure/dependencycheck/analyzer/pom/generated/Resource.java +++ b/src/main/java/org/owasp/dependencycheck/analyzer/pom/generated/Resource.java @@ -1,12 +1,12 @@ // -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 in JDK 6 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2012.11.09 at 12:33:57 PM EST +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 in JDK 6 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2012.11.09 at 12:33:57 PM EST // -package org.codesecure.dependencycheck.analyzer.pom.generated; +package org.owasp.dependencycheck.analyzer.pom.generated; import java.util.ArrayList; import java.util.List; @@ -18,15 +18,15 @@ import javax.xml.bind.annotation.XmlType; /** - * + * * This element describes all of the classpath resources associated with a project or * unit tests. - * - * + * + * *

Java class for Resource complex type. - * + * *

The following schema fragment specifies the expected content contained within this class. - * + * *

  * <complexType name="Resource">
  *   <complexContent>
@@ -62,8 +62,8 @@ import javax.xml.bind.annotation.XmlType;
  *   </complexContent>
  * </complexType>
  * 
- * - * + * + * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Resource", propOrder = { @@ -86,11 +86,11 @@ public class Resource { /** * Gets the value of the targetPath property. - * + * * @return * possible object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public String getTargetPath() { @@ -99,11 +99,11 @@ public class Resource { /** * Sets the value of the targetPath property. - * + * * @param value * allowed object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setTargetPath(String value) { @@ -112,11 +112,11 @@ public class Resource { /** * Gets the value of the filtering property. - * + * * @return * possible object is * {@link Boolean } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public Boolean isFiltering() { @@ -125,11 +125,11 @@ public class Resource { /** * Sets the value of the filtering property. - * + * * @param value * allowed object is * {@link Boolean } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setFiltering(Boolean value) { @@ -138,11 +138,11 @@ public class Resource { /** * Gets the value of the directory property. - * + * * @return * possible object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public String getDirectory() { @@ -151,11 +151,11 @@ public class Resource { /** * Sets the value of the directory property. - * + * * @param value * allowed object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setDirectory(String value) { @@ -164,11 +164,11 @@ public class Resource { /** * Gets the value of the includes property. - * + * * @return * possible object is * {@link Resource.Includes } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public Resource.Includes getIncludes() { @@ -177,11 +177,11 @@ public class Resource { /** * Sets the value of the includes property. - * + * * @param value * allowed object is * {@link Resource.Includes } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setIncludes(Resource.Includes value) { @@ -190,11 +190,11 @@ public class Resource { /** * Gets the value of the excludes property. - * + * * @return * possible object is * {@link Resource.Excludes } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public Resource.Excludes getExcludes() { @@ -203,11 +203,11 @@ public class Resource { /** * Sets the value of the excludes property. - * + * * @param value * allowed object is * {@link Resource.Excludes } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setExcludes(Resource.Excludes value) { @@ -217,9 +217,9 @@ public class Resource { /** *

Java class for anonymous complex type. - * + * *

The following schema fragment specifies the expected content contained within this class. - * + * *

      * <complexType>
      *   <complexContent>
@@ -231,8 +231,8 @@ public class Resource {
      *   </complexContent>
      * </complexType>
      * 
- * - * + * + * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { @@ -246,25 +246,25 @@ public class Resource { /** * Gets the value of the exclude property. - * + * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the exclude property. - * + * *

* For example, to add a new item, do as follows: *

          *    getExclude().add(newItem);
          * 
- * - * + * + * *

* Objects of the following type(s) are allowed in the list * {@link String } - * - * + * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public List getExclude() { @@ -279,9 +279,9 @@ public class Resource { /** *

Java class for anonymous complex type. - * + * *

The following schema fragment specifies the expected content contained within this class. - * + * *

      * <complexType>
      *   <complexContent>
@@ -293,8 +293,8 @@ public class Resource {
      *   </complexContent>
      * </complexType>
      * 
- * - * + * + * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { @@ -308,25 +308,25 @@ public class Resource { /** * Gets the value of the include property. - * + * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the include property. - * + * *

* For example, to add a new item, do as follows: *

          *    getInclude().add(newItem);
          * 
- * - * + * + * *

* Objects of the following type(s) are allowed in the list * {@link String } - * - * + * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public List getInclude() { diff --git a/src/main/java/org/codesecure/dependencycheck/analyzer/pom/generated/Scm.java b/src/main/java/org/owasp/dependencycheck/analyzer/pom/generated/Scm.java similarity index 92% rename from src/main/java/org/codesecure/dependencycheck/analyzer/pom/generated/Scm.java rename to src/main/java/org/owasp/dependencycheck/analyzer/pom/generated/Scm.java index 0b45a873c..60d472632 100644 --- a/src/main/java/org/codesecure/dependencycheck/analyzer/pom/generated/Scm.java +++ b/src/main/java/org/owasp/dependencycheck/analyzer/pom/generated/Scm.java @@ -1,12 +1,12 @@ // -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 in JDK 6 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2012.11.09 at 12:33:57 PM EST +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 in JDK 6 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2012.11.09 at 12:33:57 PM EST // -package org.codesecure.dependencycheck.analyzer.pom.generated; +package org.owasp.dependencycheck.analyzer.pom.generated; import javax.annotation.Generated; import javax.xml.bind.annotation.XmlAccessType; @@ -17,11 +17,11 @@ import javax.xml.bind.annotation.XmlType; /** * 4.0.0 - * + * *

Java class for Scm complex type. - * + * *

The following schema fragment specifies the expected content contained within this class. - * + * *

  * <complexType name="Scm">
  *   <complexContent>
@@ -36,8 +36,8 @@ import javax.xml.bind.annotation.XmlType;
  *   </complexContent>
  * </complexType>
  * 
- * - * + * + * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Scm", propOrder = { @@ -58,11 +58,11 @@ public class Scm { /** * Gets the value of the connection property. - * + * * @return * possible object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public String getConnection() { @@ -71,11 +71,11 @@ public class Scm { /** * Sets the value of the connection property. - * + * * @param value * allowed object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setConnection(String value) { @@ -84,11 +84,11 @@ public class Scm { /** * Gets the value of the developerConnection property. - * + * * @return * possible object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public String getDeveloperConnection() { @@ -97,11 +97,11 @@ public class Scm { /** * Sets the value of the developerConnection property. - * + * * @param value * allowed object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setDeveloperConnection(String value) { @@ -110,11 +110,11 @@ public class Scm { /** * Gets the value of the tag property. - * + * * @return * possible object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public String getTag() { @@ -123,11 +123,11 @@ public class Scm { /** * Sets the value of the tag property. - * + * * @param value * allowed object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setTag(String value) { @@ -136,11 +136,11 @@ public class Scm { /** * Gets the value of the url property. - * + * * @return * possible object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public String getUrl() { @@ -149,11 +149,11 @@ public class Scm { /** * Sets the value of the url property. - * + * * @param value * allowed object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setUrl(String value) { diff --git a/src/main/java/org/codesecure/dependencycheck/analyzer/pom/generated/Site.java b/src/main/java/org/owasp/dependencycheck/analyzer/pom/generated/Site.java similarity index 91% rename from src/main/java/org/codesecure/dependencycheck/analyzer/pom/generated/Site.java rename to src/main/java/org/owasp/dependencycheck/analyzer/pom/generated/Site.java index 34f972d10..30cf91093 100644 --- a/src/main/java/org/codesecure/dependencycheck/analyzer/pom/generated/Site.java +++ b/src/main/java/org/owasp/dependencycheck/analyzer/pom/generated/Site.java @@ -1,12 +1,12 @@ // -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 in JDK 6 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2012.11.09 at 12:33:57 PM EST +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 in JDK 6 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2012.11.09 at 12:33:57 PM EST // -package org.codesecure.dependencycheck.analyzer.pom.generated; +package org.owasp.dependencycheck.analyzer.pom.generated; import javax.annotation.Generated; import javax.xml.bind.annotation.XmlAccessType; @@ -15,14 +15,14 @@ import javax.xml.bind.annotation.XmlType; /** - * + * * Contains the information needed for deploying websites. - * - * + * + * *

Java class for Site complex type. - * + * *

The following schema fragment specifies the expected content contained within this class. - * + * *

  * <complexType name="Site">
  *   <complexContent>
@@ -36,8 +36,8 @@ import javax.xml.bind.annotation.XmlType;
  *   </complexContent>
  * </complexType>
  * 
- * - * + * + * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Site", propOrder = { @@ -55,11 +55,11 @@ public class Site { /** * Gets the value of the id property. - * + * * @return * possible object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public String getId() { @@ -68,11 +68,11 @@ public class Site { /** * Sets the value of the id property. - * + * * @param value * allowed object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setId(String value) { @@ -81,11 +81,11 @@ public class Site { /** * Gets the value of the name property. - * + * * @return * possible object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public String getName() { @@ -94,11 +94,11 @@ public class Site { /** * Sets the value of the name property. - * + * * @param value * allowed object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setName(String value) { @@ -107,11 +107,11 @@ public class Site { /** * Gets the value of the url property. - * + * * @return * possible object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public String getUrl() { @@ -120,11 +120,11 @@ public class Site { /** * Sets the value of the url property. - * + * * @param value * allowed object is * {@link String } - * + * */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") public void setUrl(String value) { diff --git a/src/main/java/org/codesecure/dependencycheck/analyzer/pom/generated/package-info.java b/src/main/java/org/owasp/dependencycheck/analyzer/pom/generated/package-info.java similarity index 62% rename from src/main/java/org/codesecure/dependencycheck/analyzer/pom/generated/package-info.java rename to src/main/java/org/owasp/dependencycheck/analyzer/pom/generated/package-info.java index dd8a3abe7..983fc1ff4 100644 --- a/src/main/java/org/codesecure/dependencycheck/analyzer/pom/generated/package-info.java +++ b/src/main/java/org/owasp/dependencycheck/analyzer/pom/generated/package-info.java @@ -1,9 +1,9 @@ // -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 in JDK 6 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2012.11.09 at 12:33:57 PM EST +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 in JDK 6 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2012.11.09 at 12:33:57 PM EST // @javax.xml.bind.annotation.XmlSchema(namespace = "http://maven.apache.org/POM/4.0.0", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) -package org.codesecure.dependencycheck.analyzer.pom.generated; +package org.owasp.dependencycheck.analyzer.pom.generated; diff --git a/src/main/java/org/codesecure/dependencycheck/data/CachedWebDataSource.java b/src/main/java/org/owasp/dependencycheck/data/CachedWebDataSource.java similarity index 96% rename from src/main/java/org/codesecure/dependencycheck/data/CachedWebDataSource.java rename to src/main/java/org/owasp/dependencycheck/data/CachedWebDataSource.java index e0f015c4e..487547c84 100644 --- a/src/main/java/org/codesecure/dependencycheck/data/CachedWebDataSource.java +++ b/src/main/java/org/owasp/dependencycheck/data/CachedWebDataSource.java @@ -16,7 +16,7 @@ * * Copyright (c) 2012 Jeremy Long. All Rights Reserved. */ -package org.codesecure.dependencycheck.data; +package org.owasp.dependencycheck.data; /** * Defines an Index who's data is retrieved from the Internet. This data can be diff --git a/src/main/java/org/codesecure/dependencycheck/data/UpdateException.java b/src/main/java/org/owasp/dependencycheck/data/UpdateException.java similarity index 97% rename from src/main/java/org/codesecure/dependencycheck/data/UpdateException.java rename to src/main/java/org/owasp/dependencycheck/data/UpdateException.java index 2866ccbd0..5d4cb967c 100644 --- a/src/main/java/org/codesecure/dependencycheck/data/UpdateException.java +++ b/src/main/java/org/owasp/dependencycheck/data/UpdateException.java @@ -16,7 +16,7 @@ * * Copyright (c) 2012 Jeremy Long. All Rights Reserved. */ -package org.codesecure.dependencycheck.data; +package org.owasp.dependencycheck.data; import java.io.IOException; diff --git a/src/main/java/org/codesecure/dependencycheck/data/UpdateService.java b/src/main/java/org/owasp/dependencycheck/data/UpdateService.java similarity index 97% rename from src/main/java/org/codesecure/dependencycheck/data/UpdateService.java rename to src/main/java/org/owasp/dependencycheck/data/UpdateService.java index 50fbf7f8d..c6000a577 100644 --- a/src/main/java/org/codesecure/dependencycheck/data/UpdateService.java +++ b/src/main/java/org/owasp/dependencycheck/data/UpdateService.java @@ -16,7 +16,7 @@ * * Copyright (c) 2012 Jeremy Long. All Rights Reserved. */ -package org.codesecure.dependencycheck.data; +package org.owasp.dependencycheck.data; import java.util.Iterator; import java.util.ServiceLoader; diff --git a/src/main/java/org/codesecure/dependencycheck/data/cpe/CPEAnalyzer.java b/src/main/java/org/owasp/dependencycheck/data/cpe/CPEAnalyzer.java similarity index 96% rename from src/main/java/org/codesecure/dependencycheck/data/cpe/CPEAnalyzer.java rename to src/main/java/org/owasp/dependencycheck/data/cpe/CPEAnalyzer.java index a2f42df73..9145b7331 100644 --- a/src/main/java/org/codesecure/dependencycheck/data/cpe/CPEAnalyzer.java +++ b/src/main/java/org/owasp/dependencycheck/data/cpe/CPEAnalyzer.java @@ -16,7 +16,7 @@ * * Copyright (c) 2012 Jeremy Long. All Rights Reserved. */ -package org.codesecure.dependencycheck.data.cpe; +package org.owasp.dependencycheck.data.cpe; import java.io.IOException; import java.net.URLEncoder; @@ -29,14 +29,14 @@ import org.apache.lucene.index.CorruptIndexException; import org.apache.lucene.queryparser.classic.ParseException; import org.apache.lucene.search.ScoreDoc; import org.apache.lucene.search.TopDocs; -import org.codesecure.dependencycheck.Engine; -import org.codesecure.dependencycheck.analyzer.AnalysisException; -import org.codesecure.dependencycheck.analyzer.AnalysisPhase; -import org.codesecure.dependencycheck.data.lucene.LuceneUtils; -import org.codesecure.dependencycheck.dependency.Dependency; -import org.codesecure.dependencycheck.dependency.Evidence; -import org.codesecure.dependencycheck.dependency.Evidence.Confidence; -import org.codesecure.dependencycheck.dependency.EvidenceCollection; +import org.owasp.dependencycheck.Engine; +import org.owasp.dependencycheck.analyzer.AnalysisException; +import org.owasp.dependencycheck.analyzer.AnalysisPhase; +import org.owasp.dependencycheck.data.lucene.LuceneUtils; +import org.owasp.dependencycheck.dependency.Dependency; +import org.owasp.dependencycheck.dependency.Evidence; +import org.owasp.dependencycheck.dependency.Evidence.Confidence; +import org.owasp.dependencycheck.dependency.EvidenceCollection; /** * CPEAnalyzer is a utility class that takes a project dependency and attempts @@ -45,7 +45,7 @@ import org.codesecure.dependencycheck.dependency.EvidenceCollection; * * @author Jeremy Long (jeremy.long@gmail.com) */ -public class CPEAnalyzer implements org.codesecure.dependencycheck.analyzer.Analyzer { +public class CPEAnalyzer implements org.owasp.dependencycheck.analyzer.Analyzer { /** * The maximum number of query results to return. diff --git a/src/main/java/org/codesecure/dependencycheck/data/cpe/Entry.java b/src/main/java/org/owasp/dependencycheck/data/cpe/Entry.java similarity index 99% rename from src/main/java/org/codesecure/dependencycheck/data/cpe/Entry.java rename to src/main/java/org/owasp/dependencycheck/data/cpe/Entry.java index 4b5785250..af2fe9e04 100644 --- a/src/main/java/org/codesecure/dependencycheck/data/cpe/Entry.java +++ b/src/main/java/org/owasp/dependencycheck/data/cpe/Entry.java @@ -16,7 +16,7 @@ * * Copyright (c) 2012 Jeremy Long. All Rights Reserved. */ -package org.codesecure.dependencycheck.data.cpe; +package org.owasp.dependencycheck.data.cpe; import java.io.Serializable; import java.io.UnsupportedEncodingException; diff --git a/src/main/java/org/codesecure/dependencycheck/data/cpe/Fields.java b/src/main/java/org/owasp/dependencycheck/data/cpe/Fields.java similarity index 96% rename from src/main/java/org/codesecure/dependencycheck/data/cpe/Fields.java rename to src/main/java/org/owasp/dependencycheck/data/cpe/Fields.java index 231654a90..8ddd1a401 100644 --- a/src/main/java/org/codesecure/dependencycheck/data/cpe/Fields.java +++ b/src/main/java/org/owasp/dependencycheck/data/cpe/Fields.java @@ -16,7 +16,7 @@ * * Copyright (c) 2012 Jeremy Long. All Rights Reserved. */ -package org.codesecure.dependencycheck.data.cpe; +package org.owasp.dependencycheck.data.cpe; /** * Fields is a collection of field names used within the Lucene index for CPE diff --git a/src/main/java/org/codesecure/dependencycheck/data/cpe/Index.java b/src/main/java/org/owasp/dependencycheck/data/cpe/Index.java similarity index 94% rename from src/main/java/org/codesecure/dependencycheck/data/cpe/Index.java rename to src/main/java/org/owasp/dependencycheck/data/cpe/Index.java index 101cfc1ca..6400e549b 100644 --- a/src/main/java/org/codesecure/dependencycheck/data/cpe/Index.java +++ b/src/main/java/org/owasp/dependencycheck/data/cpe/Index.java @@ -16,7 +16,7 @@ * * Copyright (c) 2012 Jeremy Long. All Rights Reserved. */ -package org.codesecure.dependencycheck.data.cpe; +package org.owasp.dependencycheck.data.cpe; import java.io.File; import java.io.IOException; @@ -36,12 +36,12 @@ import org.apache.lucene.queryparser.classic.QueryParser; import org.apache.lucene.store.Directory; import org.apache.lucene.store.FSDirectory; import org.apache.lucene.util.Version; -import org.codesecure.dependencycheck.data.lucene.AbstractIndex; -import org.codesecure.dependencycheck.utils.Settings; -import org.codesecure.dependencycheck.data.lucene.FieldAnalyzer; -import org.codesecure.dependencycheck.data.lucene.SearchFieldAnalyzer; -import org.codesecure.dependencycheck.data.lucene.SearchVersionAnalyzer; -import org.codesecure.dependencycheck.data.lucene.VersionAnalyzer; +import org.owasp.dependencycheck.data.lucene.AbstractIndex; +import org.owasp.dependencycheck.utils.Settings; +import org.owasp.dependencycheck.data.lucene.FieldAnalyzer; +import org.owasp.dependencycheck.data.lucene.SearchFieldAnalyzer; +import org.owasp.dependencycheck.data.lucene.SearchVersionAnalyzer; +import org.owasp.dependencycheck.data.lucene.VersionAnalyzer; /** * The Index class is used to utilize and maintain the CPE Index. diff --git a/src/main/java/org/codesecure/dependencycheck/data/cpe/package-info.java b/src/main/java/org/owasp/dependencycheck/data/cpe/package-info.java similarity index 54% rename from src/main/java/org/codesecure/dependencycheck/data/cpe/package-info.java rename to src/main/java/org/owasp/dependencycheck/data/cpe/package-info.java index 36955c393..b07e47a8e 100644 --- a/src/main/java/org/codesecure/dependencycheck/data/cpe/package-info.java +++ b/src/main/java/org/owasp/dependencycheck/data/cpe/package-info.java @@ -1,7 +1,7 @@ /** * * - * org.codesecure.dependencycheck.data.cpe + * org.owasp.dependencycheck.data.cpe * * * Contains classes for working with the CPE Lucene Index. @@ -9,4 +9,4 @@ * */ -package org.codesecure.dependencycheck.data.cpe; +package org.owasp.dependencycheck.data.cpe; diff --git a/src/main/java/org/codesecure/dependencycheck/data/cwe/CweDB.java b/src/main/java/org/owasp/dependencycheck/data/cwe/CweDB.java similarity index 98% rename from src/main/java/org/codesecure/dependencycheck/data/cwe/CweDB.java rename to src/main/java/org/owasp/dependencycheck/data/cwe/CweDB.java index be901570c..369b25694 100644 --- a/src/main/java/org/codesecure/dependencycheck/data/cwe/CweDB.java +++ b/src/main/java/org/owasp/dependencycheck/data/cwe/CweDB.java @@ -16,7 +16,7 @@ * * Copyright (c) 2012 Jeremy Long. All Rights Reserved. */ -package org.codesecure.dependencycheck.data.cwe; +package org.owasp.dependencycheck.data.cwe; import java.io.IOException; import java.io.InputStream; diff --git a/src/main/java/org/codesecure/dependencycheck/data/cwe/CweHandler.java b/src/main/java/org/owasp/dependencycheck/data/cwe/CweHandler.java similarity index 97% rename from src/main/java/org/codesecure/dependencycheck/data/cwe/CweHandler.java rename to src/main/java/org/owasp/dependencycheck/data/cwe/CweHandler.java index 7f27bb4ca..4dbec2cca 100644 --- a/src/main/java/org/codesecure/dependencycheck/data/cwe/CweHandler.java +++ b/src/main/java/org/owasp/dependencycheck/data/cwe/CweHandler.java @@ -16,7 +16,7 @@ * * Copyright (c) 2012 Jeremy Long. All Rights Reserved. */ -package org.codesecure.dependencycheck.data.cwe; +package org.owasp.dependencycheck.data.cwe; import java.util.HashMap; import org.xml.sax.Attributes; diff --git a/src/main/java/org/codesecure/dependencycheck/data/cwe/package-info.java b/src/main/java/org/owasp/dependencycheck/data/cwe/package-info.java similarity index 54% rename from src/main/java/org/codesecure/dependencycheck/data/cwe/package-info.java rename to src/main/java/org/owasp/dependencycheck/data/cwe/package-info.java index b12ab663d..52b9ce3d4 100644 --- a/src/main/java/org/codesecure/dependencycheck/data/cwe/package-info.java +++ b/src/main/java/org/owasp/dependencycheck/data/cwe/package-info.java @@ -1,7 +1,7 @@ /** * * - * org.codesecure.dependencycheck.data.cwe + * org.owasp.dependencycheck.data.cwe * * * Contains classes for working with the CWE Database. @@ -9,4 +9,4 @@ * */ -package org.codesecure.dependencycheck.data.cwe; +package org.owasp.dependencycheck.data.cwe; diff --git a/src/main/java/org/codesecure/dependencycheck/data/lucene/AbstractIndex.java b/src/main/java/org/owasp/dependencycheck/data/lucene/AbstractIndex.java similarity index 99% rename from src/main/java/org/codesecure/dependencycheck/data/lucene/AbstractIndex.java rename to src/main/java/org/owasp/dependencycheck/data/lucene/AbstractIndex.java index 464bfb1be..e719617f0 100644 --- a/src/main/java/org/codesecure/dependencycheck/data/lucene/AbstractIndex.java +++ b/src/main/java/org/owasp/dependencycheck/data/lucene/AbstractIndex.java @@ -16,7 +16,7 @@ * * Copyright (c) 2012 Jeremy Long. All Rights Reserved. */ -package org.codesecure.dependencycheck.data.lucene; +package org.owasp.dependencycheck.data.lucene; import java.io.IOException; import java.util.logging.Level; diff --git a/src/main/java/org/codesecure/dependencycheck/data/lucene/DependencySimilarity.java b/src/main/java/org/owasp/dependencycheck/data/lucene/DependencySimilarity.java similarity index 96% rename from src/main/java/org/codesecure/dependencycheck/data/lucene/DependencySimilarity.java rename to src/main/java/org/owasp/dependencycheck/data/lucene/DependencySimilarity.java index 9cc710c3d..e4c4e588a 100644 --- a/src/main/java/org/codesecure/dependencycheck/data/lucene/DependencySimilarity.java +++ b/src/main/java/org/owasp/dependencycheck/data/lucene/DependencySimilarity.java @@ -16,7 +16,7 @@ * * Copyright (c) 2012 Jeremy Long. All Rights Reserved. */ -package org.codesecure.dependencycheck.data.lucene; +package org.owasp.dependencycheck.data.lucene; import org.apache.lucene.search.similarities.DefaultSimilarity; diff --git a/src/main/java/org/codesecure/dependencycheck/data/lucene/FieldAnalyzer.java b/src/main/java/org/owasp/dependencycheck/data/lucene/FieldAnalyzer.java similarity index 98% rename from src/main/java/org/codesecure/dependencycheck/data/lucene/FieldAnalyzer.java rename to src/main/java/org/owasp/dependencycheck/data/lucene/FieldAnalyzer.java index 31e8da629..b5caefeab 100644 --- a/src/main/java/org/codesecure/dependencycheck/data/lucene/FieldAnalyzer.java +++ b/src/main/java/org/owasp/dependencycheck/data/lucene/FieldAnalyzer.java @@ -16,7 +16,7 @@ * * Copyright (c) 2012 Jeremy Long. All Rights Reserved. */ -package org.codesecure.dependencycheck.data.lucene; +package org.owasp.dependencycheck.data.lucene; import java.io.Reader; import org.apache.lucene.analysis.Analyzer; diff --git a/src/main/java/org/codesecure/dependencycheck/data/lucene/LuceneUtils.java b/src/main/java/org/owasp/dependencycheck/data/lucene/LuceneUtils.java similarity index 98% rename from src/main/java/org/codesecure/dependencycheck/data/lucene/LuceneUtils.java rename to src/main/java/org/owasp/dependencycheck/data/lucene/LuceneUtils.java index a83d137a4..a88bf0741 100644 --- a/src/main/java/org/codesecure/dependencycheck/data/lucene/LuceneUtils.java +++ b/src/main/java/org/owasp/dependencycheck/data/lucene/LuceneUtils.java @@ -16,7 +16,7 @@ * * Copyright (c) 2012 Jeremy Long. All Rights Reserved. */ -package org.codesecure.dependencycheck.data.lucene; +package org.owasp.dependencycheck.data.lucene; /** *

Lucene utils is a set of utilize written to make constructing Lucene diff --git a/src/main/java/org/codesecure/dependencycheck/data/lucene/SearchFieldAnalyzer.java b/src/main/java/org/owasp/dependencycheck/data/lucene/SearchFieldAnalyzer.java similarity index 98% rename from src/main/java/org/codesecure/dependencycheck/data/lucene/SearchFieldAnalyzer.java rename to src/main/java/org/owasp/dependencycheck/data/lucene/SearchFieldAnalyzer.java index c972931e2..5e99c2238 100644 --- a/src/main/java/org/codesecure/dependencycheck/data/lucene/SearchFieldAnalyzer.java +++ b/src/main/java/org/owasp/dependencycheck/data/lucene/SearchFieldAnalyzer.java @@ -16,7 +16,7 @@ * * Copyright (c) 2012 Jeremy Long. All Rights Reserved. */ -package org.codesecure.dependencycheck.data.lucene; +package org.owasp.dependencycheck.data.lucene; import java.io.Reader; import org.apache.lucene.analysis.Analyzer; diff --git a/src/main/java/org/codesecure/dependencycheck/data/lucene/SearchVersionAnalyzer.java b/src/main/java/org/owasp/dependencycheck/data/lucene/SearchVersionAnalyzer.java similarity index 98% rename from src/main/java/org/codesecure/dependencycheck/data/lucene/SearchVersionAnalyzer.java rename to src/main/java/org/owasp/dependencycheck/data/lucene/SearchVersionAnalyzer.java index 855bfe8e1..301253ed5 100644 --- a/src/main/java/org/codesecure/dependencycheck/data/lucene/SearchVersionAnalyzer.java +++ b/src/main/java/org/owasp/dependencycheck/data/lucene/SearchVersionAnalyzer.java @@ -16,7 +16,7 @@ * * Copyright (c) 2012 Jeremy Long. All Rights Reserved. */ -package org.codesecure.dependencycheck.data.lucene; +package org.owasp.dependencycheck.data.lucene; import java.io.Reader; import org.apache.lucene.analysis.Analyzer; diff --git a/src/main/java/org/codesecure/dependencycheck/data/lucene/TokenPairConcatenatingFilter.java b/src/main/java/org/owasp/dependencycheck/data/lucene/TokenPairConcatenatingFilter.java similarity index 98% rename from src/main/java/org/codesecure/dependencycheck/data/lucene/TokenPairConcatenatingFilter.java rename to src/main/java/org/owasp/dependencycheck/data/lucene/TokenPairConcatenatingFilter.java index 1d041871c..3cf2a3f44 100644 --- a/src/main/java/org/codesecure/dependencycheck/data/lucene/TokenPairConcatenatingFilter.java +++ b/src/main/java/org/owasp/dependencycheck/data/lucene/TokenPairConcatenatingFilter.java @@ -16,7 +16,7 @@ * * Copyright (c) 2012 Jeremy Long. All Rights Reserved. */ -package org.codesecure.dependencycheck.data.lucene; +package org.owasp.dependencycheck.data.lucene; import java.io.IOException; import java.util.LinkedList; diff --git a/src/main/java/org/codesecure/dependencycheck/data/lucene/VersionAnalyzer.java b/src/main/java/org/owasp/dependencycheck/data/lucene/VersionAnalyzer.java similarity index 97% rename from src/main/java/org/codesecure/dependencycheck/data/lucene/VersionAnalyzer.java rename to src/main/java/org/owasp/dependencycheck/data/lucene/VersionAnalyzer.java index 59b5f9f75..45dac78c4 100644 --- a/src/main/java/org/codesecure/dependencycheck/data/lucene/VersionAnalyzer.java +++ b/src/main/java/org/owasp/dependencycheck/data/lucene/VersionAnalyzer.java @@ -16,7 +16,7 @@ * * Copyright (c) 2012 Jeremy Long. All Rights Reserved. */ -package org.codesecure.dependencycheck.data.lucene; +package org.owasp.dependencycheck.data.lucene; import java.io.Reader; import org.apache.lucene.analysis.Analyzer; diff --git a/src/main/java/org/codesecure/dependencycheck/data/lucene/VersionTokenizingFilter.java b/src/main/java/org/owasp/dependencycheck/data/lucene/VersionTokenizingFilter.java similarity index 98% rename from src/main/java/org/codesecure/dependencycheck/data/lucene/VersionTokenizingFilter.java rename to src/main/java/org/owasp/dependencycheck/data/lucene/VersionTokenizingFilter.java index 01e8b023e..2962bca23 100644 --- a/src/main/java/org/codesecure/dependencycheck/data/lucene/VersionTokenizingFilter.java +++ b/src/main/java/org/owasp/dependencycheck/data/lucene/VersionTokenizingFilter.java @@ -16,7 +16,7 @@ * * Copyright (c) 2012 Jeremy Long. All Rights Reserved. */ -package org.codesecure.dependencycheck.data.lucene; +package org.owasp.dependencycheck.data.lucene; import java.io.IOException; import java.util.LinkedList; diff --git a/src/main/java/org/codesecure/dependencycheck/data/lucene/package-info.java b/src/main/java/org/owasp/dependencycheck/data/lucene/package-info.java similarity index 53% rename from src/main/java/org/codesecure/dependencycheck/data/lucene/package-info.java rename to src/main/java/org/owasp/dependencycheck/data/lucene/package-info.java index 0fbc5c912..b01c4d4da 100644 --- a/src/main/java/org/codesecure/dependencycheck/data/lucene/package-info.java +++ b/src/main/java/org/owasp/dependencycheck/data/lucene/package-info.java @@ -1,7 +1,7 @@ /** * * - * org.codesecure.dependencycheck.data.lucene + * org.owasp.dependencycheck.data.lucene * * * Contains classes used to work with the Lucene Indexes. @@ -9,4 +9,4 @@ * */ -package org.codesecure.dependencycheck.data.lucene; +package org.owasp.dependencycheck.data.lucene; diff --git a/src/main/java/org/codesecure/dependencycheck/data/nvdcve/CorruptDatabaseException.java b/src/main/java/org/owasp/dependencycheck/data/nvdcve/CorruptDatabaseException.java similarity index 96% rename from src/main/java/org/codesecure/dependencycheck/data/nvdcve/CorruptDatabaseException.java rename to src/main/java/org/owasp/dependencycheck/data/nvdcve/CorruptDatabaseException.java index a40f1c2ad..57ed1fe96 100644 --- a/src/main/java/org/codesecure/dependencycheck/data/nvdcve/CorruptDatabaseException.java +++ b/src/main/java/org/owasp/dependencycheck/data/nvdcve/CorruptDatabaseException.java @@ -16,7 +16,7 @@ * * Copyright (c) 2012 Jeremy Long. All Rights Reserved. */ -package org.codesecure.dependencycheck.data.nvdcve; +package org.owasp.dependencycheck.data.nvdcve; /** * An exception used to indicate the db4o database is corrupt. diff --git a/src/main/java/org/codesecure/dependencycheck/data/nvdcve/CveDB.java b/src/main/java/org/owasp/dependencycheck/data/nvdcve/CveDB.java similarity index 97% rename from src/main/java/org/codesecure/dependencycheck/data/nvdcve/CveDB.java rename to src/main/java/org/owasp/dependencycheck/data/nvdcve/CveDB.java index ceeade00e..6a70538d2 100644 --- a/src/main/java/org/codesecure/dependencycheck/data/nvdcve/CveDB.java +++ b/src/main/java/org/owasp/dependencycheck/data/nvdcve/CveDB.java @@ -16,7 +16,7 @@ * * Copyright (c) 2012 Jeremy Long. All Rights Reserved. */ -package org.codesecure.dependencycheck.data.nvdcve; +package org.owasp.dependencycheck.data.nvdcve; import java.io.File; import java.io.IOException; @@ -32,12 +32,12 @@ import java.util.ArrayList; import java.util.List; import java.util.logging.Level; import java.util.logging.Logger; -import org.codesecure.dependencycheck.data.cpe.Entry; -import org.codesecure.dependencycheck.data.cwe.CweDB; -import org.codesecure.dependencycheck.dependency.Reference; -import org.codesecure.dependencycheck.dependency.Vulnerability; -import org.codesecure.dependencycheck.dependency.VulnerableSoftware; -import org.codesecure.dependencycheck.utils.Settings; +import org.owasp.dependencycheck.data.cpe.Entry; +import org.owasp.dependencycheck.data.cwe.CweDB; +import org.owasp.dependencycheck.dependency.Reference; +import org.owasp.dependencycheck.dependency.Vulnerability; +import org.owasp.dependencycheck.dependency.VulnerableSoftware; +import org.owasp.dependencycheck.utils.Settings; /** * The database holding information about the NVD CVE data. diff --git a/src/main/java/org/codesecure/dependencycheck/data/nvdcve/DatabaseException.java b/src/main/java/org/owasp/dependencycheck/data/nvdcve/DatabaseException.java similarity index 96% rename from src/main/java/org/codesecure/dependencycheck/data/nvdcve/DatabaseException.java rename to src/main/java/org/owasp/dependencycheck/data/nvdcve/DatabaseException.java index e33c2c2c3..e335c011f 100644 --- a/src/main/java/org/codesecure/dependencycheck/data/nvdcve/DatabaseException.java +++ b/src/main/java/org/owasp/dependencycheck/data/nvdcve/DatabaseException.java @@ -16,7 +16,7 @@ * * Copyright (c) 2012 Jeremy Long. All Rights Reserved. */ -package org.codesecure.dependencycheck.data.nvdcve; +package org.owasp.dependencycheck.data.nvdcve; /** * An exception thrown if an operation against the database fails. diff --git a/src/main/java/org/codesecure/dependencycheck/data/nvdcve/NvdCveAnalyzer.java b/src/main/java/org/owasp/dependencycheck/data/nvdcve/NvdCveAnalyzer.java similarity index 89% rename from src/main/java/org/codesecure/dependencycheck/data/nvdcve/NvdCveAnalyzer.java rename to src/main/java/org/owasp/dependencycheck/data/nvdcve/NvdCveAnalyzer.java index 0f01b5988..21d742d7b 100644 --- a/src/main/java/org/codesecure/dependencycheck/data/nvdcve/NvdCveAnalyzer.java +++ b/src/main/java/org/owasp/dependencycheck/data/nvdcve/NvdCveAnalyzer.java @@ -16,18 +16,18 @@ * * Copyright (c) 2012 Jeremy Long. All Rights Reserved. */ -package org.codesecure.dependencycheck.data.nvdcve; +package org.owasp.dependencycheck.data.nvdcve; import java.io.IOException; import java.sql.SQLException; import java.util.List; import java.util.Set; -import org.codesecure.dependencycheck.Engine; -import org.codesecure.dependencycheck.analyzer.AnalysisException; -import org.codesecure.dependencycheck.analyzer.AnalysisPhase; -import org.codesecure.dependencycheck.dependency.Dependency; -import org.codesecure.dependencycheck.dependency.Vulnerability; -import org.codesecure.dependencycheck.dependency.Identifier; +import org.owasp.dependencycheck.Engine; +import org.owasp.dependencycheck.analyzer.AnalysisException; +import org.owasp.dependencycheck.analyzer.AnalysisPhase; +import org.owasp.dependencycheck.dependency.Dependency; +import org.owasp.dependencycheck.dependency.Vulnerability; +import org.owasp.dependencycheck.dependency.Identifier; /** * NvdCveAnalyzer is a utility class that takes a project dependency and @@ -36,7 +36,7 @@ import org.codesecure.dependencycheck.dependency.Identifier; * * @author Jeremy Long (jeremy.long@gmail.com) */ -public class NvdCveAnalyzer implements org.codesecure.dependencycheck.analyzer.Analyzer { +public class NvdCveAnalyzer implements org.owasp.dependencycheck.analyzer.Analyzer { /** * The maximum number of query results to return. diff --git a/src/main/java/org/codesecure/dependencycheck/data/nvdcve/package-info.java b/src/main/java/org/owasp/dependencycheck/data/nvdcve/package-info.java similarity index 52% rename from src/main/java/org/codesecure/dependencycheck/data/nvdcve/package-info.java rename to src/main/java/org/owasp/dependencycheck/data/nvdcve/package-info.java index e435b4aed..d0c666261 100644 --- a/src/main/java/org/codesecure/dependencycheck/data/nvdcve/package-info.java +++ b/src/main/java/org/owasp/dependencycheck/data/nvdcve/package-info.java @@ -1,7 +1,7 @@ /** * * - * org.codesecure.dependencycheck.data.nvdcve + * org.owasp.dependencycheck.data.nvdcve * * * Contains classes used to work with the NVD CVE data. @@ -9,4 +9,4 @@ * */ -package org.codesecure.dependencycheck.data.nvdcve; +package org.owasp.dependencycheck.data.nvdcve; diff --git a/src/main/java/org/codesecure/dependencycheck/data/nvdcve/xml/DatabaseUpdater.java b/src/main/java/org/owasp/dependencycheck/data/nvdcve/xml/DatabaseUpdater.java similarity index 96% rename from src/main/java/org/codesecure/dependencycheck/data/nvdcve/xml/DatabaseUpdater.java rename to src/main/java/org/owasp/dependencycheck/data/nvdcve/xml/DatabaseUpdater.java index aad4d112d..0620a3724 100644 --- a/src/main/java/org/codesecure/dependencycheck/data/nvdcve/xml/DatabaseUpdater.java +++ b/src/main/java/org/owasp/dependencycheck/data/nvdcve/xml/DatabaseUpdater.java @@ -16,7 +16,7 @@ * * Copyright (c) 2012 Jeremy Long. All Rights Reserved. */ -package org.codesecure.dependencycheck.data.nvdcve.xml; +package org.owasp.dependencycheck.data.nvdcve.xml; import java.io.File; import java.io.FileInputStream; @@ -27,7 +27,7 @@ import java.io.InputStream; import java.io.OutputStream; import java.io.OutputStreamWriter; import javax.xml.parsers.ParserConfigurationException; -import org.codesecure.dependencycheck.data.CachedWebDataSource; +import org.owasp.dependencycheck.data.CachedWebDataSource; import java.net.MalformedURLException; import java.net.URL; import java.sql.SQLException; @@ -40,17 +40,17 @@ import java.util.logging.Level; import java.util.logging.Logger; import javax.xml.parsers.SAXParser; import javax.xml.parsers.SAXParserFactory; -import org.codesecure.dependencycheck.data.UpdateException; -import org.codesecure.dependencycheck.data.cpe.Index; -import org.codesecure.dependencycheck.data.nvdcve.CveDB; -import org.codesecure.dependencycheck.dependency.VulnerableSoftware; -import org.codesecure.dependencycheck.utils.DownloadFailedException; -import org.codesecure.dependencycheck.utils.Downloader; -import org.codesecure.dependencycheck.utils.FileUtils; -import org.codesecure.dependencycheck.utils.InvalidSettingException; -import org.codesecure.dependencycheck.utils.Settings; +import org.owasp.dependencycheck.data.UpdateException; +import org.owasp.dependencycheck.data.cpe.Index; +import org.owasp.dependencycheck.data.nvdcve.CveDB; +import org.owasp.dependencycheck.dependency.VulnerableSoftware; +import org.owasp.dependencycheck.utils.DownloadFailedException; +import org.owasp.dependencycheck.utils.Downloader; +import org.owasp.dependencycheck.utils.FileUtils; +import org.owasp.dependencycheck.utils.InvalidSettingException; +import org.owasp.dependencycheck.utils.Settings; import org.xml.sax.SAXException; -import org.codesecure.dependencycheck.data.nvdcve.DatabaseException; +import org.owasp.dependencycheck.data.nvdcve.DatabaseException; /** * @@ -321,7 +321,7 @@ public class DatabaseUpdater implements CachedWebDataSource { FileUtils.delete(f); //this importer also updates the CPE index and it is also using an old version - org.codesecure.dependencycheck.data.cpe.Index cpeid = new org.codesecure.dependencycheck.data.cpe.Index(); + org.owasp.dependencycheck.data.cpe.Index cpeid = new org.owasp.dependencycheck.data.cpe.Index(); File cpeDir = cpeid.getDataDirectory(); FileUtils.delete(cpeDir); return currentlyPublished; diff --git a/src/main/java/org/codesecure/dependencycheck/data/nvdcve/xml/InvalidDataException.java b/src/main/java/org/owasp/dependencycheck/data/nvdcve/xml/InvalidDataException.java similarity index 93% rename from src/main/java/org/codesecure/dependencycheck/data/nvdcve/xml/InvalidDataException.java rename to src/main/java/org/owasp/dependencycheck/data/nvdcve/xml/InvalidDataException.java index 92ede21a3..0dda1b1ff 100644 --- a/src/main/java/org/codesecure/dependencycheck/data/nvdcve/xml/InvalidDataException.java +++ b/src/main/java/org/owasp/dependencycheck/data/nvdcve/xml/InvalidDataException.java @@ -16,13 +16,13 @@ * * Copyright (c) 2012 Jeremy Long. All Rights Reserved. */ -package org.codesecure.dependencycheck.data.nvdcve.xml; +package org.owasp.dependencycheck.data.nvdcve.xml; /** * An InvalidDataDataException is a generic exception used when trying to load * the nvd cve meta data. * - * @author Jeremy + * @author Jeremy Long (jeremy.long@gmail.com) */ public class InvalidDataException extends Exception { private static final long serialVersionUID = 1L; diff --git a/src/main/java/org/codesecure/dependencycheck/data/nvdcve/xml/NvdCve12Handler.java b/src/main/java/org/owasp/dependencycheck/data/nvdcve/xml/NvdCve12Handler.java similarity index 98% rename from src/main/java/org/codesecure/dependencycheck/data/nvdcve/xml/NvdCve12Handler.java rename to src/main/java/org/owasp/dependencycheck/data/nvdcve/xml/NvdCve12Handler.java index 8b64821f6..fcfbee68c 100644 --- a/src/main/java/org/codesecure/dependencycheck/data/nvdcve/xml/NvdCve12Handler.java +++ b/src/main/java/org/owasp/dependencycheck/data/nvdcve/xml/NvdCve12Handler.java @@ -16,13 +16,13 @@ * * Copyright (c) 2012 Jeremy Long. All Rights Reserved. */ -package org.codesecure.dependencycheck.data.nvdcve.xml; +package org.owasp.dependencycheck.data.nvdcve.xml; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; -import org.codesecure.dependencycheck.dependency.VulnerableSoftware; +import org.owasp.dependencycheck.dependency.VulnerableSoftware; import org.xml.sax.Attributes; import org.xml.sax.SAXException; import org.xml.sax.SAXNotSupportedException; diff --git a/src/main/java/org/codesecure/dependencycheck/data/nvdcve/xml/NvdCve20Handler.java b/src/main/java/org/owasp/dependencycheck/data/nvdcve/xml/NvdCve20Handler.java similarity index 96% rename from src/main/java/org/codesecure/dependencycheck/data/nvdcve/xml/NvdCve20Handler.java rename to src/main/java/org/owasp/dependencycheck/data/nvdcve/xml/NvdCve20Handler.java index 7fba59aec..ac7676e55 100644 --- a/src/main/java/org/codesecure/dependencycheck/data/nvdcve/xml/NvdCve20Handler.java +++ b/src/main/java/org/owasp/dependencycheck/data/nvdcve/xml/NvdCve20Handler.java @@ -16,7 +16,7 @@ * * Copyright (c) 2012 Jeremy Long. All Rights Reserved. */ -package org.codesecure.dependencycheck.data.nvdcve.xml; +package org.owasp.dependencycheck.data.nvdcve.xml; import java.io.IOException; import java.util.List; @@ -24,12 +24,12 @@ import java.util.Map; import java.util.logging.Level; import java.util.logging.Logger; import org.apache.lucene.index.CorruptIndexException; -import org.codesecure.dependencycheck.data.cpe.Index; -import org.codesecure.dependencycheck.data.nvdcve.CveDB; -import org.codesecure.dependencycheck.data.nvdcve.DatabaseException; -import org.codesecure.dependencycheck.dependency.Reference; -import org.codesecure.dependencycheck.dependency.Vulnerability; -import org.codesecure.dependencycheck.dependency.VulnerableSoftware; +import org.owasp.dependencycheck.data.cpe.Index; +import org.owasp.dependencycheck.data.nvdcve.CveDB; +import org.owasp.dependencycheck.data.nvdcve.DatabaseException; +import org.owasp.dependencycheck.dependency.Reference; +import org.owasp.dependencycheck.dependency.Vulnerability; +import org.owasp.dependencycheck.dependency.VulnerableSoftware; import org.xml.sax.Attributes; import org.xml.sax.SAXException; import org.xml.sax.SAXNotSupportedException; @@ -191,7 +191,7 @@ public class NvdCve20Handler extends DefaultHandler { /** * Saves a vulnerability to the CVE Database. This is a callback method - * called by the Sax Parser Handler {@link org.codesecure.dependencycheck.data.nvdcve.xml.NvdCve20Handler}. + * called by the Sax Parser Handler {@link org.owasp.dependencycheck.data.nvdcve.xml.NvdCve20Handler}. * * @param vuln the vulnerability to store in the database * @throws DatabaseException thrown if there is an error writing to the database diff --git a/src/main/java/org/codesecure/dependencycheck/data/nvdcve/xml/package-info.java b/src/main/java/org/owasp/dependencycheck/data/nvdcve/xml/package-info.java similarity index 80% rename from src/main/java/org/codesecure/dependencycheck/data/nvdcve/xml/package-info.java rename to src/main/java/org/owasp/dependencycheck/data/nvdcve/xml/package-info.java index 4453648c7..c04c24a6a 100644 --- a/src/main/java/org/codesecure/dependencycheck/data/nvdcve/xml/package-info.java +++ b/src/main/java/org/owasp/dependencycheck/data/nvdcve/xml/package-info.java @@ -1,7 +1,7 @@ /** * * - * org.codesecure.dependencycheck.data.nvdcve.xml + * org.owasp.dependencycheck.data.nvdcve.xml * * *

Contains classes used to parse the NVD CVE XML file.

@@ -15,4 +15,4 @@ * */ -package org.codesecure.dependencycheck.data.nvdcve.xml; +package org.owasp.dependencycheck.data.nvdcve.xml; diff --git a/src/main/java/org/codesecure/dependencycheck/data/package-info.java b/src/main/java/org/owasp/dependencycheck/data/package-info.java similarity index 56% rename from src/main/java/org/codesecure/dependencycheck/data/package-info.java rename to src/main/java/org/owasp/dependencycheck/data/package-info.java index 74fc51267..5da58d1e6 100644 --- a/src/main/java/org/codesecure/dependencycheck/data/package-info.java +++ b/src/main/java/org/owasp/dependencycheck/data/package-info.java @@ -1,7 +1,7 @@ /** * * - * org.codesecure.dependencycheck.data + * org.owasp.dependencycheck.data * * * Contains classes used to work with the data sources. @@ -9,4 +9,4 @@ * */ -package org.codesecure.dependencycheck.data; +package org.owasp.dependencycheck.data; diff --git a/src/main/java/org/codesecure/dependencycheck/dependency/Dependency.java b/src/main/java/org/owasp/dependencycheck/dependency/Dependency.java similarity index 98% rename from src/main/java/org/codesecure/dependencycheck/dependency/Dependency.java rename to src/main/java/org/owasp/dependencycheck/dependency/Dependency.java index 72f604f65..e50ed8d3e 100644 --- a/src/main/java/org/codesecure/dependencycheck/dependency/Dependency.java +++ b/src/main/java/org/owasp/dependencycheck/dependency/Dependency.java @@ -16,7 +16,7 @@ * * Copyright (c) 2012 Jeremy Long. All Rights Reserved. */ -package org.codesecure.dependencycheck.dependency; +package org.owasp.dependencycheck.dependency; import java.io.File; import java.io.IOException; @@ -28,8 +28,8 @@ import java.util.SortedSet; import java.util.TreeSet; import java.util.logging.Level; import java.util.logging.Logger; -import org.codesecure.dependencycheck.utils.Checksum; -import org.codesecure.dependencycheck.utils.FileUtils; +import org.owasp.dependencycheck.utils.Checksum; +import org.owasp.dependencycheck.utils.FileUtils; /** * A program dependency. This object is one of the core components within diff --git a/src/main/java/org/codesecure/dependencycheck/dependency/Evidence.java b/src/main/java/org/owasp/dependencycheck/dependency/Evidence.java similarity index 99% rename from src/main/java/org/codesecure/dependencycheck/dependency/Evidence.java rename to src/main/java/org/owasp/dependencycheck/dependency/Evidence.java index 1f362537d..3308d08a7 100644 --- a/src/main/java/org/codesecure/dependencycheck/dependency/Evidence.java +++ b/src/main/java/org/owasp/dependencycheck/dependency/Evidence.java @@ -16,7 +16,7 @@ * * Copyright (c) 2012 Jeremy Long. All Rights Reserved. */ -package org.codesecure.dependencycheck.dependency; +package org.owasp.dependencycheck.dependency; /** * Evidence is a piece of information about a Dependency. diff --git a/src/main/java/org/codesecure/dependencycheck/dependency/EvidenceCollection.java b/src/main/java/org/owasp/dependencycheck/dependency/EvidenceCollection.java similarity index 98% rename from src/main/java/org/codesecure/dependencycheck/dependency/EvidenceCollection.java rename to src/main/java/org/owasp/dependencycheck/dependency/EvidenceCollection.java index 77e537806..940125f97 100644 --- a/src/main/java/org/codesecure/dependencycheck/dependency/EvidenceCollection.java +++ b/src/main/java/org/owasp/dependencycheck/dependency/EvidenceCollection.java @@ -16,12 +16,12 @@ * * Copyright (c) 2012 Jeremy Long. All Rights Reserved. */ -package org.codesecure.dependencycheck.dependency; +package org.owasp.dependencycheck.dependency; import java.util.HashSet; import java.util.Iterator; import java.util.Set; -import org.codesecure.dependencycheck.utils.Filter; +import org.owasp.dependencycheck.utils.Filter; /** * Used to maintain a collection of Evidence. diff --git a/src/main/java/org/codesecure/dependencycheck/dependency/Identifier.java b/src/main/java/org/owasp/dependencycheck/dependency/Identifier.java similarity index 98% rename from src/main/java/org/codesecure/dependencycheck/dependency/Identifier.java rename to src/main/java/org/owasp/dependencycheck/dependency/Identifier.java index 21beef5fd..da2a53201 100644 --- a/src/main/java/org/codesecure/dependencycheck/dependency/Identifier.java +++ b/src/main/java/org/owasp/dependencycheck/dependency/Identifier.java @@ -16,7 +16,7 @@ * * Copyright (c) 2012 Jeremy Long. All Rights Reserved. */ -package org.codesecure.dependencycheck.dependency; +package org.owasp.dependencycheck.dependency; /** * diff --git a/src/main/java/org/codesecure/dependencycheck/dependency/Reference.java b/src/main/java/org/owasp/dependencycheck/dependency/Reference.java similarity index 97% rename from src/main/java/org/codesecure/dependencycheck/dependency/Reference.java rename to src/main/java/org/owasp/dependencycheck/dependency/Reference.java index 8b3df85a6..fc3af391d 100644 --- a/src/main/java/org/codesecure/dependencycheck/dependency/Reference.java +++ b/src/main/java/org/owasp/dependencycheck/dependency/Reference.java @@ -16,7 +16,7 @@ * * Copyright (c) 2012 Jeremy Long. All Rights Reserved. */ -package org.codesecure.dependencycheck.dependency; +package org.owasp.dependencycheck.dependency; import java.io.Serializable; @@ -24,7 +24,7 @@ import java.io.Serializable; * An external reference for a vulnerability. This contains a name, URL, and a * source. * - * @author Jeremy + * @author Jeremy Long (jeremy.long@gmail.com) */ public class Reference implements Serializable { diff --git a/src/main/java/org/codesecure/dependencycheck/dependency/Vulnerability.java b/src/main/java/org/owasp/dependencycheck/dependency/Vulnerability.java similarity index 99% rename from src/main/java/org/codesecure/dependencycheck/dependency/Vulnerability.java rename to src/main/java/org/owasp/dependencycheck/dependency/Vulnerability.java index 0e0b726f0..05a1a82d2 100644 --- a/src/main/java/org/codesecure/dependencycheck/dependency/Vulnerability.java +++ b/src/main/java/org/owasp/dependencycheck/dependency/Vulnerability.java @@ -16,7 +16,7 @@ * * Copyright (c) 2012 Jeremy Long. All Rights Reserved. */ -package org.codesecure.dependencycheck.dependency; +package org.owasp.dependencycheck.dependency; import java.io.Serializable; import java.util.HashSet; @@ -25,7 +25,7 @@ import java.util.Set; /** * Contains the information about a vulnerability. * - * @author Jeremy + * @author Jeremy Long (jeremy.long@gmail.com) */ public class Vulnerability implements Serializable, Comparable { diff --git a/src/main/java/org/codesecure/dependencycheck/dependency/VulnerabilityComparator.java b/src/main/java/org/owasp/dependencycheck/dependency/VulnerabilityComparator.java similarity index 96% rename from src/main/java/org/codesecure/dependencycheck/dependency/VulnerabilityComparator.java rename to src/main/java/org/owasp/dependencycheck/dependency/VulnerabilityComparator.java index 8c4bc92ff..19d15a087 100644 --- a/src/main/java/org/codesecure/dependencycheck/dependency/VulnerabilityComparator.java +++ b/src/main/java/org/owasp/dependencycheck/dependency/VulnerabilityComparator.java @@ -16,7 +16,7 @@ * * Copyright (c) 2012 Jeremy Long. All Rights Reserved. */ -package org.codesecure.dependencycheck.dependency; +package org.owasp.dependencycheck.dependency; import java.io.Serializable; import java.util.Comparator; diff --git a/src/main/java/org/codesecure/dependencycheck/dependency/VulnerableSoftware.java b/src/main/java/org/owasp/dependencycheck/dependency/VulnerableSoftware.java similarity index 96% rename from src/main/java/org/codesecure/dependencycheck/dependency/VulnerableSoftware.java rename to src/main/java/org/owasp/dependencycheck/dependency/VulnerableSoftware.java index da954341a..7f451806d 100644 --- a/src/main/java/org/codesecure/dependencycheck/dependency/VulnerableSoftware.java +++ b/src/main/java/org/owasp/dependencycheck/dependency/VulnerableSoftware.java @@ -16,13 +16,13 @@ * * Copyright (c) 2012 Jeremy Long. All Rights Reserved. */ -package org.codesecure.dependencycheck.dependency; +package org.owasp.dependencycheck.dependency; import java.io.Serializable; import java.io.UnsupportedEncodingException; import java.util.logging.Level; import java.util.logging.Logger; -import org.codesecure.dependencycheck.data.cpe.Entry; +import org.owasp.dependencycheck.data.cpe.Entry; /** * A record containing information about vulnerable software. This diff --git a/src/main/java/org/codesecure/dependencycheck/dependency/package-info.java b/src/main/java/org/owasp/dependencycheck/dependency/package-info.java similarity index 51% rename from src/main/java/org/codesecure/dependencycheck/dependency/package-info.java rename to src/main/java/org/owasp/dependencycheck/dependency/package-info.java index 1a1944762..1981c2f6d 100644 --- a/src/main/java/org/codesecure/dependencycheck/dependency/package-info.java +++ b/src/main/java/org/owasp/dependencycheck/dependency/package-info.java @@ -1,7 +1,7 @@ /** * * - * org.codesecure.dependencycheck.dependency + * org.owasp.dependencycheck.dependency * * * Contains the core Dependency implementation. @@ -9,4 +9,4 @@ * */ -package org.codesecure.dependencycheck.dependency; +package org.owasp.dependencycheck.dependency; diff --git a/src/main/java/org/codesecure/dependencycheck/package-info.java b/src/main/java/org/owasp/dependencycheck/package-info.java similarity index 59% rename from src/main/java/org/codesecure/dependencycheck/package-info.java rename to src/main/java/org/owasp/dependencycheck/package-info.java index 5a75f196f..579d2130c 100644 --- a/src/main/java/org/codesecure/dependencycheck/package-info.java +++ b/src/main/java/org/owasp/dependencycheck/package-info.java @@ -1,7 +1,7 @@ /** * * - * org.codesecure.dependencycheck + * org.owasp.dependencycheck * * * Includes the main entry point for the DependencyChecker. @@ -9,4 +9,4 @@ * */ -package org.codesecure.dependencycheck; +package org.owasp.dependencycheck; diff --git a/src/main/java/org/codesecure/dependencycheck/reporting/ReportGenerator.java b/src/main/java/org/owasp/dependencycheck/reporting/ReportGenerator.java similarity index 97% rename from src/main/java/org/codesecure/dependencycheck/reporting/ReportGenerator.java rename to src/main/java/org/owasp/dependencycheck/reporting/ReportGenerator.java index 0676fca58..70ada0661 100644 --- a/src/main/java/org/codesecure/dependencycheck/reporting/ReportGenerator.java +++ b/src/main/java/org/owasp/dependencycheck/reporting/ReportGenerator.java @@ -16,7 +16,7 @@ * * Copyright (c) 2012 Jeremy Long. All Rights Reserved. */ -package org.codesecure.dependencycheck.reporting; +package org.owasp.dependencycheck.reporting; import java.io.FileInputStream; import java.io.File; @@ -36,8 +36,8 @@ import org.apache.velocity.runtime.RuntimeConstants; import org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader; import org.apache.velocity.tools.ToolManager; import org.apache.velocity.tools.config.EasyFactoryConfiguration; -import org.codesecure.dependencycheck.analyzer.Analyzer; -import org.codesecure.dependencycheck.dependency.Dependency; +import org.owasp.dependencycheck.analyzer.Analyzer; +import org.owasp.dependencycheck.dependency.Dependency; /** * The ReportGenerator is used to, as the name implies, generate reports. Internally @@ -114,7 +114,7 @@ public class ReportGenerator { generateReport("XmlReport", outputDir + File.separator + "DependencyCheck-Report.xml"); } else { generateReport("HtmlReport", outputDir + File.separator + "DependencyCheck-Report.html"); - } + } } /** diff --git a/src/main/java/org/codesecure/dependencycheck/reporting/package-info.java b/src/main/java/org/owasp/dependencycheck/reporting/package-info.java similarity index 51% rename from src/main/java/org/codesecure/dependencycheck/reporting/package-info.java rename to src/main/java/org/owasp/dependencycheck/reporting/package-info.java index 5b539b596..ae6769897 100644 --- a/src/main/java/org/codesecure/dependencycheck/reporting/package-info.java +++ b/src/main/java/org/owasp/dependencycheck/reporting/package-info.java @@ -1,7 +1,7 @@ /** * * - * org.codesecure.dependencycheck.reporting + * org.owasp.dependencycheck.reporting * * * Contains classes used to generate reports. @@ -9,4 +9,4 @@ * */ -package org.codesecure.dependencycheck.reporting; +package org.owasp.dependencycheck.reporting; diff --git a/src/main/java/org/codesecure/dependencycheck/utils/Checksum.java b/src/main/java/org/owasp/dependencycheck/utils/Checksum.java similarity index 98% rename from src/main/java/org/codesecure/dependencycheck/utils/Checksum.java rename to src/main/java/org/owasp/dependencycheck/utils/Checksum.java index e439cd2dc..d9b4db43a 100644 --- a/src/main/java/org/codesecure/dependencycheck/utils/Checksum.java +++ b/src/main/java/org/owasp/dependencycheck/utils/Checksum.java @@ -1,4 +1,4 @@ -package org.codesecure.dependencycheck.utils; +package org.owasp.dependencycheck.utils; import java.io.File; import java.io.FileInputStream; diff --git a/src/main/java/org/codesecure/dependencycheck/utils/CliParser.java b/src/main/java/org/owasp/dependencycheck/utils/CliParser.java similarity index 99% rename from src/main/java/org/codesecure/dependencycheck/utils/CliParser.java rename to src/main/java/org/owasp/dependencycheck/utils/CliParser.java index 5426a4c8b..45d2d5f53 100644 --- a/src/main/java/org/codesecure/dependencycheck/utils/CliParser.java +++ b/src/main/java/org/owasp/dependencycheck/utils/CliParser.java @@ -16,7 +16,7 @@ * * Copyright (c) 2012 Jeremy Long. All Rights Reserved. */ -package org.codesecure.dependencycheck.utils; +package org.owasp.dependencycheck.utils; import java.io.File; import java.io.FileNotFoundException; @@ -107,8 +107,9 @@ public final class CliParser { } if (line.hasOption(ArgumentName.OUTPUT_FORMAT)) { String format = line.getOptionValue(ArgumentName.OUTPUT_FORMAT); - if (!(format.equalsIgnoreCase("XML") || format.equalsIgnoreCase("HTML"))) + if (!(format.equalsIgnoreCase("XML") || format.equalsIgnoreCase("HTML"))) { throw new ParseException("Supported output formats are XML and HTML"); + } } } } diff --git a/src/main/java/org/codesecure/dependencycheck/utils/DownloadFailedException.java b/src/main/java/org/owasp/dependencycheck/utils/DownloadFailedException.java similarity index 97% rename from src/main/java/org/codesecure/dependencycheck/utils/DownloadFailedException.java rename to src/main/java/org/owasp/dependencycheck/utils/DownloadFailedException.java index b0fb03690..7eec6d974 100644 --- a/src/main/java/org/codesecure/dependencycheck/utils/DownloadFailedException.java +++ b/src/main/java/org/owasp/dependencycheck/utils/DownloadFailedException.java @@ -16,7 +16,7 @@ * * Copyright (c) 2012 Jeremy Long. All Rights Reserved. */ -package org.codesecure.dependencycheck.utils; +package org.owasp.dependencycheck.utils; import java.io.IOException; diff --git a/src/main/java/org/codesecure/dependencycheck/utils/Downloader.java b/src/main/java/org/owasp/dependencycheck/utils/Downloader.java similarity index 99% rename from src/main/java/org/codesecure/dependencycheck/utils/Downloader.java rename to src/main/java/org/owasp/dependencycheck/utils/Downloader.java index a1e7b5cb0..5568f335f 100644 --- a/src/main/java/org/codesecure/dependencycheck/utils/Downloader.java +++ b/src/main/java/org/owasp/dependencycheck/utils/Downloader.java @@ -16,7 +16,7 @@ * * Copyright (c) 2012 Jeremy Long. All Rights Reserved. */ -package org.codesecure.dependencycheck.utils; +package org.owasp.dependencycheck.utils; import java.io.BufferedOutputStream; import java.io.File; diff --git a/src/main/java/org/codesecure/dependencycheck/utils/FileUtils.java b/src/main/java/org/owasp/dependencycheck/utils/FileUtils.java similarity index 97% rename from src/main/java/org/codesecure/dependencycheck/utils/FileUtils.java rename to src/main/java/org/owasp/dependencycheck/utils/FileUtils.java index e7ce2edf8..a7049e475 100644 --- a/src/main/java/org/codesecure/dependencycheck/utils/FileUtils.java +++ b/src/main/java/org/owasp/dependencycheck/utils/FileUtils.java @@ -16,7 +16,7 @@ * * Copyright (c) 2012 Jeremy Long. All Rights Reserved. */ -package org.codesecure.dependencycheck.utils; +package org.owasp.dependencycheck.utils; import java.io.File; import java.io.FileNotFoundException; diff --git a/src/main/java/org/codesecure/dependencycheck/utils/Filter.java b/src/main/java/org/owasp/dependencycheck/utils/Filter.java similarity index 97% rename from src/main/java/org/codesecure/dependencycheck/utils/Filter.java rename to src/main/java/org/owasp/dependencycheck/utils/Filter.java index 495d52005..d2f0b9d96 100644 --- a/src/main/java/org/codesecure/dependencycheck/utils/Filter.java +++ b/src/main/java/org/owasp/dependencycheck/utils/Filter.java @@ -1,4 +1,4 @@ -package org.codesecure.dependencycheck.utils; +package org.owasp.dependencycheck.utils; import java.util.Iterator; import java.util.NoSuchElementException; diff --git a/src/main/java/org/codesecure/dependencycheck/utils/InvalidSettingException.java b/src/main/java/org/owasp/dependencycheck/utils/InvalidSettingException.java similarity index 97% rename from src/main/java/org/codesecure/dependencycheck/utils/InvalidSettingException.java rename to src/main/java/org/owasp/dependencycheck/utils/InvalidSettingException.java index 54c24bf5a..0273f54ea 100644 --- a/src/main/java/org/codesecure/dependencycheck/utils/InvalidSettingException.java +++ b/src/main/java/org/owasp/dependencycheck/utils/InvalidSettingException.java @@ -16,7 +16,7 @@ * * Copyright (c) 2012 Jeremy Long. All Rights Reserved. */ -package org.codesecure.dependencycheck.utils; +package org.owasp.dependencycheck.utils; import java.io.IOException; diff --git a/src/main/java/org/codesecure/dependencycheck/utils/NonClosingStream.java b/src/main/java/org/owasp/dependencycheck/utils/NonClosingStream.java similarity index 96% rename from src/main/java/org/codesecure/dependencycheck/utils/NonClosingStream.java rename to src/main/java/org/owasp/dependencycheck/utils/NonClosingStream.java index bad9a531b..901ba187c 100644 --- a/src/main/java/org/codesecure/dependencycheck/utils/NonClosingStream.java +++ b/src/main/java/org/owasp/dependencycheck/utils/NonClosingStream.java @@ -16,7 +16,7 @@ * * Copyright (c) 2012 Jeremy Long. All Rights Reserved. */ -package org.codesecure.dependencycheck.utils; +package org.owasp.dependencycheck.utils; import java.io.FilterInputStream; import java.io.InputStream; diff --git a/src/main/java/org/codesecure/dependencycheck/utils/Settings.java b/src/main/java/org/owasp/dependencycheck/utils/Settings.java similarity index 99% rename from src/main/java/org/codesecure/dependencycheck/utils/Settings.java rename to src/main/java/org/owasp/dependencycheck/utils/Settings.java index ad9e7987d..9e67ada4f 100644 --- a/src/main/java/org/codesecure/dependencycheck/utils/Settings.java +++ b/src/main/java/org/owasp/dependencycheck/utils/Settings.java @@ -16,7 +16,7 @@ * * Copyright (c) 2012 Jeremy Long. All Rights Reserved. */ -package org.codesecure.dependencycheck.utils; +package org.owasp.dependencycheck.utils; import java.io.FileInputStream; import java.io.FileNotFoundException; diff --git a/src/main/java/org/codesecure/dependencycheck/utils/package-info.java b/src/main/java/org/owasp/dependencycheck/utils/package-info.java similarity index 58% rename from src/main/java/org/codesecure/dependencycheck/utils/package-info.java rename to src/main/java/org/owasp/dependencycheck/utils/package-info.java index 58e477967..27cd2c0a6 100644 --- a/src/main/java/org/codesecure/dependencycheck/utils/package-info.java +++ b/src/main/java/org/owasp/dependencycheck/utils/package-info.java @@ -1,13 +1,13 @@ /** * * - * org.codesecure.dependencycheck.utils + * org.owasp.dependencycheck.utils * * - * Includes various utility classes such as a Settings wrapper, a CLI Parser, + * Includes various utility classes such as a Settings wrapper, a CLI Parser, * a Checksum utility, etc. * * */ -package org.codesecure.dependencycheck.utils; +package org.owasp.dependencycheck.utils; diff --git a/src/main/resources/META-INF/services/org.codesecure.dependencycheck.analyzer.Analyzer b/src/main/resources/META-INF/services/org.codesecure.dependencycheck.analyzer.Analyzer deleted file mode 100644 index fb521c11d..000000000 --- a/src/main/resources/META-INF/services/org.codesecure.dependencycheck.analyzer.Analyzer +++ /dev/null @@ -1,5 +0,0 @@ -org.codesecure.dependencycheck.analyzer.JarAnalyzer -org.codesecure.dependencycheck.analyzer.FileNameAnalyzer -org.codesecure.dependencycheck.analyzer.SpringCleaningAnalyzer -org.codesecure.dependencycheck.data.cpe.CPEAnalyzer -org.codesecure.dependencycheck.data.nvdcve.NvdCveAnalyzer \ No newline at end of file diff --git a/src/main/resources/META-INF/services/org.codesecure.dependencycheck.data.CachedWebDataSource b/src/main/resources/META-INF/services/org.codesecure.dependencycheck.data.CachedWebDataSource deleted file mode 100644 index 0e3b914f0..000000000 --- a/src/main/resources/META-INF/services/org.codesecure.dependencycheck.data.CachedWebDataSource +++ /dev/null @@ -1 +0,0 @@ -org.codesecure.dependencycheck.data.nvdcve.xml.DatabaseUpdater \ No newline at end of file diff --git a/src/main/resources/META-INF/services/org.owasp.dependencycheck.analyzer.Analyzer b/src/main/resources/META-INF/services/org.owasp.dependencycheck.analyzer.Analyzer new file mode 100644 index 000000000..825d63667 --- /dev/null +++ b/src/main/resources/META-INF/services/org.owasp.dependencycheck.analyzer.Analyzer @@ -0,0 +1,5 @@ +org.owasp.dependencycheck.analyzer.JarAnalyzer +org.owasp.dependencycheck.analyzer.FileNameAnalyzer +org.owasp.dependencycheck.analyzer.SpringCleaningAnalyzer +org.owasp.dependencycheck.data.cpe.CPEAnalyzer +org.owasp.dependencycheck.data.nvdcve.NvdCveAnalyzer \ No newline at end of file diff --git a/src/main/resources/META-INF/services/org.owasp.dependencycheck.data.CachedWebDataSource b/src/main/resources/META-INF/services/org.owasp.dependencycheck.data.CachedWebDataSource new file mode 100644 index 000000000..4c400f8ac --- /dev/null +++ b/src/main/resources/META-INF/services/org.owasp.dependencycheck.data.CachedWebDataSource @@ -0,0 +1 @@ +org.owasp.dependencycheck.data.nvdcve.xml.DatabaseUpdater \ No newline at end of file diff --git a/src/main/resources/configuration/log.properties b/src/main/resources/configuration/log.properties index 56680ef07..8748567cf 100644 --- a/src/main/resources/configuration/log.properties +++ b/src/main/resources/configuration/log.properties @@ -7,7 +7,7 @@ handlers=java.util.logging.ConsoleHandler # Configure the ConsoleHandler. java.util.logging.ConsoleHandler.level=WARNING -org.codesecure.dependencycheck.data.nvdcve.xml +org.owasp.dependencycheck.data.nvdcve.xml # Configure the FileHandler. #java.util.logging.FileHandler.formatter=java.util.logging.SimpleFormatter diff --git a/src/main/resources/schema/pom/generateBindings.bat b/src/main/resources/schema/pom/generateBindings.bat index e1721d982..dc7b477cb 100644 --- a/src/main/resources/schema/pom/generateBindings.bat +++ b/src/main/resources/schema/pom/generateBindings.bat @@ -9,4 +9,4 @@ set XJC="%JAVA_HOME%\bin\xjc.exe" goto LAUNCH :LAUNCH -%XJC% -extension -d ..\..\..\java -p "org.codesecure.dependencycheck.analyzer.pom.generated" -mark-generated "maven-v4_0_0.xsd" +%XJC% -extension -d ..\..\..\java -p "org.owasp.dependencycheck.analyzer.pom.generated" -mark-generated "maven-v4_0_0.xsd" diff --git a/src/main/resources/schema/pom/generateBindings.sh b/src/main/resources/schema/pom/generateBindings.sh index 5997e55b3..620cf3a42 100644 --- a/src/main/resources/schema/pom/generateBindings.sh +++ b/src/main/resources/schema/pom/generateBindings.sh @@ -7,4 +7,4 @@ else XJC=xjc.exe fi -exec "$XJC" -extension -d ../../../java -p "org.codesecure.dependencycheck.analyzer.pom.generated" -mark-generated "maven-v4_0_0.xsd" +exec "$XJC" -extension -d ../../../java -p "org.owasp.dependencycheck.analyzer.pom.generated" -mark-generated "maven-v4_0_0.xsd" diff --git a/src/main/resources/templates/HtmlReport.vsl b/src/main/resources/templates/HtmlReport.vsl index 1d3bd2193..19ae193f5 100644 --- a/src/main/resources/templates/HtmlReport.vsl +++ b/src/main/resources/templates/HtmlReport.vsl @@ -16,7 +16,7 @@ along with DependencyCheck. If not, see http://www.gnu.org/licenses/. Copyright (c) 2012 Jeremy Long. All Rights Reserved. -@author Jeremy Long +@author Jeremy Long (jeremy.long@gmail.com) @version 1 *# diff --git a/src/main/resources/templates/XmlReport.vsl b/src/main/resources/templates/XmlReport.vsl index 139c5abfb..74c3fb69b 100644 --- a/src/main/resources/templates/XmlReport.vsl +++ b/src/main/resources/templates/XmlReport.vsl @@ -16,7 +16,7 @@ along with DependencyCheck. If not, see http://www.gnu.org/licenses/. Copyright (c) 2012 Jeremy Long. All Rights Reserved. -@author Jeremy Long +* @author Jeremy Long (jeremy.long@gmail.com) @version 1 *# diff --git a/src/test/java/org/codesecure/dependencycheck/data/cpe/EntryTest.java b/src/test/java/org/codesecure/dependencycheck/data/cpe/EntryTest.java deleted file mode 100644 index 552e528b2..000000000 --- a/src/test/java/org/codesecure/dependencycheck/data/cpe/EntryTest.java +++ /dev/null @@ -1,47 +0,0 @@ -/* - * To change this template, choose Tools | Templates - * and open the template in the editor. - */ -package org.codesecure.dependencycheck.data.cpe; - -import junit.framework.TestCase; - -/** - * - * @author Jeremy Long - */ -public class EntryTest extends TestCase { - - public EntryTest(String testName) { - super(testName); - } - - @Override - protected void setUp() throws Exception { - super.setUp(); - } - - @Override - protected void tearDown() throws Exception { - super.tearDown(); - } - - /** - * Test of setName method, of class Entry. - * @throws Exception is thrown when an exception occurs. - */ - public void testSetName() throws Exception { - System.out.println("setName"); - String name = "cpe:/a:apache:struts:1.1:rc2"; - - Entry instance = new Entry(); - instance.parseName(name); - - assertEquals(name,instance.getName()); - assertEquals("apache", instance.getVendor()); - assertEquals("struts", instance.getProduct()); - assertEquals("1.1", instance.getVersion()); - assertEquals("rc2", instance.getRevision()); - - } -} diff --git a/src/test/java/org/codesecure/dependencycheck/data/nvdcve/xml/DatabaseUpdaterIntegrationTest.java b/src/test/java/org/codesecure/dependencycheck/data/nvdcve/xml/DatabaseUpdaterIntegrationTest.java deleted file mode 100644 index 21d390de8..000000000 --- a/src/test/java/org/codesecure/dependencycheck/data/nvdcve/xml/DatabaseUpdaterIntegrationTest.java +++ /dev/null @@ -1,48 +0,0 @@ -/* - * To change this template, choose Tools | Templates - * and open the template in the editor. - */ -package org.codesecure.dependencycheck.data.nvdcve.xml; - -import org.junit.After; -import org.junit.AfterClass; -import org.junit.Before; -import org.junit.BeforeClass; -import org.junit.Test; - -/** - * - * @author Jeremy Long (jeremy.long@gmail.com) - */ -public class DatabaseUpdaterIntegrationTest { - - public DatabaseUpdaterIntegrationTest() { - } - - @BeforeClass - public static void setUpClass() throws Exception { - } - - @AfterClass - public static void tearDownClass() throws Exception { - } - - @Before - public void setUp() { - } - - @After - public void tearDown() { - } - - /** - * Test of update method, of class DatabaseUpdater. - * @throws Exception - */ - @Test - public void testUpdate() throws Exception { - System.out.println("update"); - DatabaseUpdater instance = new DatabaseUpdater(); - instance.update(); - } -} diff --git a/src/test/java/org/codesecure/dependencycheck/EngineIntegrationTest.java b/src/test/java/org/owasp/dependencycheck/EngineIntegrationTest.java similarity index 52% rename from src/test/java/org/codesecure/dependencycheck/EngineIntegrationTest.java rename to src/test/java/org/owasp/dependencycheck/EngineIntegrationTest.java index 0c8cf80f4..379c9a51f 100644 --- a/src/test/java/org/codesecure/dependencycheck/EngineIntegrationTest.java +++ b/src/test/java/org/owasp/dependencycheck/EngineIntegrationTest.java @@ -1,10 +1,25 @@ /* - * To change this template, choose Tools | Templates - * and open the template in the editor. + * This file is part of DependencyCheck. + * + * DependencyCheck is free software: you can redistribute it and/or modify it + * under the terms of the GNU General Public License as published by the Free + * Software Foundation, either version 3 of the License, or (at your option) any + * later version. + * + * DependencyCheck is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more + * details. + * + * You should have received a copy of the GNU General Public License along with + * DependencyCheck. If not, see http://www.gnu.org/licenses/. + * + * Copyright (c) 2012 Jeremy Long. All Rights Reserved. */ -package org.codesecure.dependencycheck; +package org.owasp.dependencycheck; -import org.codesecure.dependencycheck.reporting.ReportGenerator; +import org.owasp.dependencycheck.Engine; +import org.owasp.dependencycheck.reporting.ReportGenerator; import org.junit.After; import org.junit.AfterClass; import org.junit.Before; @@ -19,8 +34,8 @@ import static org.junit.Assert.*; public class EngineIntegrationTest { public EngineIntegrationTest() throws Exception { - org.codesecure.dependencycheck.data.nvdcve.BaseDBTestCase.ensureDBExists(); - org.codesecure.dependencycheck.data.cpe.BaseIndexTestCase.ensureIndexExists(); + org.owasp.dependencycheck.data.nvdcve.BaseDBTestCase.ensureDBExists(); + org.owasp.dependencycheck.data.cpe.BaseIndexTestCase.ensureIndexExists(); } @BeforeClass @@ -45,7 +60,6 @@ public class EngineIntegrationTest { */ @Test public void testScan() throws Exception { - System.out.println("scan"); String path = "./src/test/resources/"; Engine instance = new Engine(); instance.scan(path); diff --git a/src/test/java/org/codesecure/dependencycheck/analyzer/AbstractAnalyzerTest.java b/src/test/java/org/owasp/dependencycheck/analyzer/AbstractAnalyzerTest.java similarity index 51% rename from src/test/java/org/codesecure/dependencycheck/analyzer/AbstractAnalyzerTest.java rename to src/test/java/org/owasp/dependencycheck/analyzer/AbstractAnalyzerTest.java index 08c218cf4..96053b9fe 100644 --- a/src/test/java/org/codesecure/dependencycheck/analyzer/AbstractAnalyzerTest.java +++ b/src/test/java/org/owasp/dependencycheck/analyzer/AbstractAnalyzerTest.java @@ -1,10 +1,24 @@ /* - * To change this template, choose Tools | Templates - * and open the template in the editor. + * This file is part of DependencyCheck. + * + * DependencyCheck is free software: you can redistribute it and/or modify it + * under the terms of the GNU General Public License as published by the Free + * Software Foundation, either version 3 of the License, or (at your option) any + * later version. + * + * DependencyCheck is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more + * details. + * + * You should have received a copy of the GNU General Public License along with + * DependencyCheck. If not, see http://www.gnu.org/licenses/. + * + * Copyright (c) 2012 Jeremy Long. All Rights Reserved. */ -package org.codesecure.dependencycheck.analyzer; +package org.owasp.dependencycheck.analyzer; -import org.codesecure.dependencycheck.analyzer.AbstractAnalyzer; +import org.owasp.dependencycheck.analyzer.AbstractAnalyzer; import java.util.Set; import org.junit.After; import org.junit.AfterClass; @@ -18,7 +32,7 @@ import static org.junit.Assert.*; * @author Jeremy Long (jeremy.long@gmail.com) */ public class AbstractAnalyzerTest { - + public AbstractAnalyzerTest() { } @@ -29,11 +43,11 @@ public class AbstractAnalyzerTest { @AfterClass public static void tearDownClass() throws Exception { } - + @Before public void setUp() { } - + @After public void tearDown() { } @@ -43,7 +57,6 @@ public class AbstractAnalyzerTest { */ @Test public void testNewHashSet() { - System.out.println("newHashSet"); Set result = AbstractAnalyzer.newHashSet("one","two"); assertEquals(2, result.size()); assertTrue(result.contains("one")); diff --git a/src/test/java/org/codesecure/dependencycheck/analyzer/AnalyzerServiceTest.java b/src/test/java/org/owasp/dependencycheck/analyzer/AnalyzerServiceTest.java similarity index 56% rename from src/test/java/org/codesecure/dependencycheck/analyzer/AnalyzerServiceTest.java rename to src/test/java/org/owasp/dependencycheck/analyzer/AnalyzerServiceTest.java index fc08ae008..2fc41dd5b 100644 --- a/src/test/java/org/codesecure/dependencycheck/analyzer/AnalyzerServiceTest.java +++ b/src/test/java/org/owasp/dependencycheck/analyzer/AnalyzerServiceTest.java @@ -1,11 +1,25 @@ /* - * To change this template, choose Tools | Templates - * and open the template in the editor. + * This file is part of DependencyCheck. + * + * DependencyCheck is free software: you can redistribute it and/or modify it + * under the terms of the GNU General Public License as published by the Free + * Software Foundation, either version 3 of the License, or (at your option) any + * later version. + * + * DependencyCheck is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more + * details. + * + * You should have received a copy of the GNU General Public License along with + * DependencyCheck. If not, see http://www.gnu.org/licenses/. + * + * Copyright (c) 2012 Jeremy Long. All Rights Reserved. */ -package org.codesecure.dependencycheck.analyzer; +package org.owasp.dependencycheck.analyzer; -import org.codesecure.dependencycheck.analyzer.AnalyzerService; -import org.codesecure.dependencycheck.analyzer.Analyzer; +import org.owasp.dependencycheck.analyzer.AnalyzerService; +import org.owasp.dependencycheck.analyzer.Analyzer; import java.util.Set; import java.util.Iterator; import org.junit.After; @@ -20,7 +34,7 @@ import static org.junit.Assert.*; * @author Jeremy Long (jeremy.long@gmail.com) */ public class AnalyzerServiceTest { - + public AnalyzerServiceTest() { } @@ -31,11 +45,11 @@ public class AnalyzerServiceTest { @AfterClass public static void tearDownClass() throws Exception { } - + @Before public void setUp() { } - + @After public void tearDown() { } @@ -45,7 +59,6 @@ public class AnalyzerServiceTest { */ @Test public void testGetAnalyzers() { - System.out.println("getAnalyzers"); AnalyzerService instance = AnalyzerService.getInstance(); Iterator result = instance.getAnalyzers(); diff --git a/src/test/java/org/codesecure/dependencycheck/analyzer/FileNameAnalyzerTest.java b/src/test/java/org/owasp/dependencycheck/analyzer/FileNameAnalyzerTest.java similarity index 75% rename from src/test/java/org/codesecure/dependencycheck/analyzer/FileNameAnalyzerTest.java rename to src/test/java/org/owasp/dependencycheck/analyzer/FileNameAnalyzerTest.java index ab66818a6..0442c8f63 100644 --- a/src/test/java/org/codesecure/dependencycheck/analyzer/FileNameAnalyzerTest.java +++ b/src/test/java/org/owasp/dependencycheck/analyzer/FileNameAnalyzerTest.java @@ -1,12 +1,28 @@ /* - * To change this template, choose Tools | Templates - * and open the template in the editor. + * This file is part of DependencyCheck. + * + * DependencyCheck is free software: you can redistribute it and/or modify it + * under the terms of the GNU General Public License as published by the Free + * Software Foundation, either version 3 of the License, or (at your option) any + * later version. + * + * DependencyCheck is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more + * details. + * + * You should have received a copy of the GNU General Public License along with + * DependencyCheck. If not, see http://www.gnu.org/licenses/. + * + * Copyright (c) 2012 Jeremy Long. All Rights Reserved. */ -package org.codesecure.dependencycheck.analyzer; +package org.owasp.dependencycheck.analyzer; +import org.owasp.dependencycheck.analyzer.AnalysisPhase; +import org.owasp.dependencycheck.analyzer.FileNameAnalyzer; import java.io.File; import java.util.Set; -import org.codesecure.dependencycheck.dependency.Dependency; +import org.owasp.dependencycheck.dependency.Dependency; import org.junit.After; import org.junit.AfterClass; import org.junit.Before; @@ -44,7 +60,6 @@ public class FileNameAnalyzerTest { */ @Test public void testGetSupportedExtensions() { - System.out.println("getSupportedExtensions"); FileNameAnalyzer instance = new FileNameAnalyzer(); Set expResult = null; Set result = instance.getSupportedExtensions(); @@ -56,7 +71,6 @@ public class FileNameAnalyzerTest { */ @Test public void testGetName() { - System.out.println("getName"); FileNameAnalyzer instance = new FileNameAnalyzer(); String expResult = "File Name Analyzer"; String result = instance.getName(); @@ -68,7 +82,6 @@ public class FileNameAnalyzerTest { */ @Test public void testSupportsExtension() { - System.out.println("supportsExtension"); String extension = "any"; FileNameAnalyzer instance = new FileNameAnalyzer(); boolean expResult = true; @@ -81,7 +94,6 @@ public class FileNameAnalyzerTest { */ @Test public void testGetAnalysisPhase() { - System.out.println("getAnalysisPhase"); FileNameAnalyzer instance = new FileNameAnalyzer(); AnalysisPhase expResult = AnalysisPhase.INFORMATION_COLLECTION; AnalysisPhase result = instance.getAnalysisPhase(); @@ -93,7 +105,6 @@ public class FileNameAnalyzerTest { */ @Test public void testAnalyze() throws Exception { - System.out.println("analyze"); File file = new File(this.getClass().getClassLoader().getResource("struts2-core-2.1.2.jar").getPath()); Dependency result = new Dependency(file); FileNameAnalyzer instance = new FileNameAnalyzer(); @@ -106,7 +117,6 @@ public class FileNameAnalyzerTest { */ @Test public void testInitialize() { - System.out.println("initialize"); FileNameAnalyzer instance = new FileNameAnalyzer(); instance.initialize(); assertTrue(true); //initialize does nothing. @@ -117,7 +127,6 @@ public class FileNameAnalyzerTest { */ @Test public void testClose() { - System.out.println("close"); FileNameAnalyzer instance = new FileNameAnalyzer(); instance.close(); assertTrue(true); //close does nothing. diff --git a/src/test/java/org/codesecure/dependencycheck/analyzer/JarAnalyzerTest.java b/src/test/java/org/owasp/dependencycheck/analyzer/JarAnalyzerTest.java similarity index 82% rename from src/test/java/org/codesecure/dependencycheck/analyzer/JarAnalyzerTest.java rename to src/test/java/org/owasp/dependencycheck/analyzer/JarAnalyzerTest.java index 7e4379d54..2616c8fa2 100644 --- a/src/test/java/org/codesecure/dependencycheck/analyzer/JarAnalyzerTest.java +++ b/src/test/java/org/owasp/dependencycheck/analyzer/JarAnalyzerTest.java @@ -1,13 +1,27 @@ /* - * To change this template, choose Tools | Templates - * and open the template in the editor. + * This file is part of DependencyCheck. + * + * DependencyCheck is free software: you can redistribute it and/or modify it + * under the terms of the GNU General Public License as published by the Free + * Software Foundation, either version 3 of the License, or (at your option) any + * later version. + * + * DependencyCheck is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more + * details. + * + * You should have received a copy of the GNU General Public License along with + * DependencyCheck. If not, see http://www.gnu.org/licenses/. + * + * Copyright (c) 2012 Jeremy Long. All Rights Reserved. */ -package org.codesecure.dependencycheck.analyzer; +package org.owasp.dependencycheck.analyzer; import java.util.Properties; -import org.codesecure.dependencycheck.analyzer.JarAnalyzer; -import org.codesecure.dependencycheck.dependency.Dependency; -import org.codesecure.dependencycheck.dependency.Evidence; +import org.owasp.dependencycheck.analyzer.JarAnalyzer; +import org.owasp.dependencycheck.dependency.Dependency; +import org.owasp.dependencycheck.dependency.Evidence; import java.util.HashSet; import java.io.File; import java.util.Set; @@ -49,7 +63,6 @@ public class JarAnalyzerTest { */ @Test public void testAnalyze() throws Exception { - System.out.println("analyze"); File file = new File(this.getClass().getClassLoader().getResource("struts2-core-2.1.2.jar").getPath()); Dependency result = new Dependency(file); JarAnalyzer instance = new JarAnalyzer(); @@ -57,7 +70,6 @@ public class JarAnalyzerTest { assertTrue(result.getVendorEvidence().toString().toLowerCase().contains("apache")); assertTrue(result.getVendorEvidence().getWeighting().contains("apache")); - file = new File(this.getClass().getClassLoader().getResource("org.mortbay.jetty.jar").getPath()); result = new Dependency(file); instance.analyze(result, null); @@ -102,7 +114,6 @@ public class JarAnalyzerTest { */ @Test public void testGetSupportedExtensions() { - System.out.println("getSupportedExtensions"); JarAnalyzer instance = new JarAnalyzer(); Set expResult = new HashSet(); expResult.add("jar"); @@ -115,7 +126,6 @@ public class JarAnalyzerTest { */ @Test public void testGetName() { - System.out.println("getName"); JarAnalyzer instance = new JarAnalyzer(); String expResult = "Jar Analyzer"; String result = instance.getName(); @@ -127,7 +137,6 @@ public class JarAnalyzerTest { */ @Test public void testSupportsExtension() { - System.out.println("supportsExtension"); String extension = "jar"; JarAnalyzer instance = new JarAnalyzer(); boolean expResult = true; diff --git a/src/test/java/org/codesecure/dependencycheck/data/cpe/BaseIndexTestCase.java b/src/test/java/org/owasp/dependencycheck/data/cpe/BaseIndexTestCase.java similarity index 72% rename from src/test/java/org/codesecure/dependencycheck/data/cpe/BaseIndexTestCase.java rename to src/test/java/org/owasp/dependencycheck/data/cpe/BaseIndexTestCase.java index 712117f70..0b530efb8 100644 --- a/src/test/java/org/codesecure/dependencycheck/data/cpe/BaseIndexTestCase.java +++ b/src/test/java/org/owasp/dependencycheck/data/cpe/BaseIndexTestCase.java @@ -1,9 +1,24 @@ /* - * To change this template, choose Tools | Templates - * and open the template in the editor. + * This file is part of DependencyCheck. + * + * DependencyCheck is free software: you can redistribute it and/or modify it + * under the terms of the GNU General Public License as published by the Free + * Software Foundation, either version 3 of the License, or (at your option) any + * later version. + * + * DependencyCheck is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more + * details. + * + * You should have received a copy of the GNU General Public License along with + * DependencyCheck. If not, see http://www.gnu.org/licenses/. + * + * Copyright (c) 2012 Jeremy Long. All Rights Reserved. */ -package org.codesecure.dependencycheck.data.cpe; +package org.owasp.dependencycheck.data.cpe; +import org.owasp.dependencycheck.data.cpe.Index; import java.io.BufferedInputStream; import java.io.BufferedOutputStream; import java.io.File; @@ -13,25 +28,35 @@ import java.io.IOException; import java.net.URLDecoder; import java.util.zip.ZipEntry; import java.util.zip.ZipInputStream; -import junit.framework.TestCase; -import org.codesecure.dependencycheck.utils.Settings; +import org.junit.After; +import org.junit.AfterClass; +import org.junit.Before; +import org.junit.BeforeClass; +import org.owasp.dependencycheck.utils.Settings; /** * * @author Jeremy Long (jeremy.long@gmail.com) */ -public abstract class BaseIndexTestCase extends TestCase { - - public BaseIndexTestCase(String testName) { - super(testName); +public abstract class BaseIndexTestCase { + + @BeforeClass + public static void setUpClass() throws Exception { } - - @Override - protected void setUp() throws Exception { - super.setUp(); - ensureIndexExists(); + + @AfterClass + public static void tearDownClass() throws Exception { } - + + @Before + public void setUp() throws Exception { + ensureIndexExists(); + } + + @After + public void tearDown() throws Exception { + } + protected static File getDataDirectory() throws IOException { String fileName = Settings.getString(Settings.KEYS.CPE_INDEX); String filePath = Index.class.getProtectionDomain().getCodeSource().getLocation().getPath(); @@ -46,7 +71,7 @@ public abstract class BaseIndexTestCase extends TestCase { path = new File(path.getCanonicalPath()); return path; } - + public static void ensureIndexExists() throws Exception { //String indexPath = Settings.getString(Settings.KEYS.CPE_INDEX); String indexPath = getDataDirectory().getCanonicalPath(); @@ -82,8 +107,8 @@ public abstract class BaseIndexTestCase extends TestCase { while ((count = zin.read(data, 0, BUFFER)) != -1) { dest.write(data, 0, count); } - } catch (Exception ex) { - String ignore = ex.getMessage(); + } catch (Exception ex) { + String ignore = ex.getMessage(); } finally { try { dest.flush(); diff --git a/src/test/java/org/codesecure/dependencycheck/data/cpe/CPEAnalyzerTest.java b/src/test/java/org/owasp/dependencycheck/data/cpe/CPEAnalyzerTest.java similarity index 83% rename from src/test/java/org/codesecure/dependencycheck/data/cpe/CPEAnalyzerTest.java rename to src/test/java/org/owasp/dependencycheck/data/cpe/CPEAnalyzerTest.java index 128420510..dba74e8bd 100644 --- a/src/test/java/org/codesecure/dependencycheck/data/cpe/CPEAnalyzerTest.java +++ b/src/test/java/org/owasp/dependencycheck/data/cpe/CPEAnalyzerTest.java @@ -1,9 +1,25 @@ /* - * To change this template, choose Tools | Templates - * and open the template in the editor. + * This file is part of DependencyCheck. + * + * DependencyCheck is free software: you can redistribute it and/or modify it + * under the terms of the GNU General Public License as published by the Free + * Software Foundation, either version 3 of the License, or (at your option) any + * later version. + * + * DependencyCheck is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more + * details. + * + * You should have received a copy of the GNU General Public License along with + * DependencyCheck. If not, see http://www.gnu.org/licenses/. + * + * Copyright (c) 2012 Jeremy Long. All Rights Reserved. */ -package org.codesecure.dependencycheck.data.cpe; +package org.owasp.dependencycheck.data.cpe; +import org.owasp.dependencycheck.data.cpe.Entry; +import org.owasp.dependencycheck.data.cpe.CPEAnalyzer; import java.io.File; import java.io.IOException; import java.util.HashSet; @@ -11,26 +27,16 @@ import java.util.List; import java.util.Set; import org.apache.lucene.index.CorruptIndexException; import org.apache.lucene.queryparser.classic.ParseException; -import org.codesecure.dependencycheck.dependency.Dependency; -import org.codesecure.dependencycheck.analyzer.JarAnalyzer; -import org.junit.After; +import org.owasp.dependencycheck.dependency.Dependency; +import org.owasp.dependencycheck.analyzer.JarAnalyzer; import org.junit.Assert; -import org.junit.Before; import org.junit.Test; /** * - * @author jeremy + * @author Jeremy Long (jeremy.long@gmail.com) */ -public class CPEAnalyzerTest { - - @Before - public void setUp() throws Exception { - } - - @After - public void tearDown() throws Exception { - } +public class CPEAnalyzerTest extends BaseIndexTestCase { /** * Tests of buildSearch of class CPEAnalyzer. @@ -40,7 +46,6 @@ public class CPEAnalyzerTest { */ @Test public void testBuildSearch() throws IOException, CorruptIndexException, ParseException { - System.out.println("buildSearch"); Set productWeightings = new HashSet(1); productWeightings.add("struts2"); @@ -75,7 +80,6 @@ public class CPEAnalyzerTest { */ @Test public void testOpen() throws Exception { - System.out.println("open"); CPEAnalyzer instance = new CPEAnalyzer(); Assert.assertFalse(instance.isOpen()); instance.open(); @@ -90,7 +94,6 @@ public class CPEAnalyzerTest { */ @Test public void testDetermineCPE() throws Exception { - System.out.println("determineCPE"); File file = new File(this.getClass().getClassLoader().getResource("struts2-core-2.1.2.jar").getPath()); JarAnalyzer jarAnalyzer = new JarAnalyzer(); Dependency depends = new Dependency(file); @@ -128,7 +131,6 @@ public class CPEAnalyzerTest { */ @Test public void testSearchCPE() throws Exception { - System.out.println("searchCPE"); String vendor = "apache software foundation"; String product = "struts 2 core"; String version = "2.1.2"; diff --git a/src/test/java/org/owasp/dependencycheck/data/cpe/EntryTest.java b/src/test/java/org/owasp/dependencycheck/data/cpe/EntryTest.java new file mode 100644 index 000000000..841ddc987 --- /dev/null +++ b/src/test/java/org/owasp/dependencycheck/data/cpe/EntryTest.java @@ -0,0 +1,67 @@ +/* + * This file is part of DependencyCheck. + * + * DependencyCheck is free software: you can redistribute it and/or modify it + * under the terms of the GNU General Public License as published by the Free + * Software Foundation, either version 3 of the License, or (at your option) any + * later version. + * + * DependencyCheck is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more + * details. + * + * You should have received a copy of the GNU General Public License along with + * DependencyCheck. If not, see http://www.gnu.org/licenses/. + * + * Copyright (c) 2012 Jeremy Long. All Rights Reserved. + */ +package org.owasp.dependencycheck.data.cpe; + +import org.owasp.dependencycheck.data.cpe.Entry; +import org.junit.After; +import org.junit.AfterClass; +import org.junit.Before; +import org.junit.BeforeClass; +import org.junit.Test; +import org.junit.Assert; + +/** + * + * @author Jeremy Long (jeremy.long@gmail.com) + */ +public class EntryTest { + + @BeforeClass + public static void setUpClass() throws Exception { + } + + @AfterClass + public static void tearDownClass() throws Exception { + } + + @Before + public void setUp() { + } + + @After + public void tearDown() { + } + /** + * Test of setName method, of class Entry. + * @throws Exception is thrown when an exception occurs. + */ + @Test + public void testSetName() throws Exception { + String name = "cpe:/a:apache:struts:1.1:rc2"; + + Entry instance = new Entry(); + instance.parseName(name); + + Assert.assertEquals(name,instance.getName()); + Assert.assertEquals("apache", instance.getVendor()); + Assert.assertEquals("struts", instance.getProduct()); + Assert.assertEquals("1.1", instance.getVersion()); + Assert.assertEquals("rc2", instance.getRevision()); + } +} diff --git a/src/test/java/org/codesecure/dependencycheck/data/cpe/IndexIntegrationTest.java b/src/test/java/org/owasp/dependencycheck/data/cpe/IndexIntegrationTest.java similarity index 61% rename from src/test/java/org/codesecure/dependencycheck/data/cpe/IndexIntegrationTest.java rename to src/test/java/org/owasp/dependencycheck/data/cpe/IndexIntegrationTest.java index f21fd42d6..731a2e13f 100644 --- a/src/test/java/org/codesecure/dependencycheck/data/cpe/IndexIntegrationTest.java +++ b/src/test/java/org/owasp/dependencycheck/data/cpe/IndexIntegrationTest.java @@ -1,8 +1,22 @@ /* - * To change this template, choose Tools | Templates - * and open the template in the editor. + * This file is part of DependencyCheck. + * + * DependencyCheck is free software: you can redistribute it and/or modify it + * under the terms of the GNU General Public License as published by the Free + * Software Foundation, either version 3 of the License, or (at your option) any + * later version. + * + * DependencyCheck is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more + * details. + * + * You should have received a copy of the GNU General Public License along with + * DependencyCheck. If not, see http://www.gnu.org/licenses/. + * + * Copyright (c) 2012 Jeremy Long. All Rights Reserved. */ -package org.codesecure.dependencycheck.data.cpe; +package org.owasp.dependencycheck.data.cpe; import java.io.File; import java.io.IOException; @@ -41,7 +55,6 @@ public class IndexIntegrationTest { */ @Test public void testUpdate() throws Exception { - System.out.println("update"); //deprecated //Index instance = new Index(); //instance.update(); @@ -52,7 +65,6 @@ public class IndexIntegrationTest { */ @Test public void testUpdateNeeded() throws Exception { - System.out.println("updateNeeded"); //deprecated //Index instance = new Index(); //instance.updateNeeded(); diff --git a/src/test/java/org/codesecure/dependencycheck/data/cpe/IndexTest.java b/src/test/java/org/owasp/dependencycheck/data/cpe/IndexTest.java similarity index 52% rename from src/test/java/org/codesecure/dependencycheck/data/cpe/IndexTest.java rename to src/test/java/org/owasp/dependencycheck/data/cpe/IndexTest.java index 3e9e109a3..6dd344c30 100644 --- a/src/test/java/org/codesecure/dependencycheck/data/cpe/IndexTest.java +++ b/src/test/java/org/owasp/dependencycheck/data/cpe/IndexTest.java @@ -1,15 +1,34 @@ /* - * To change this template, choose Tools | Templates - * and open the template in the editor. + * This file is part of DependencyCheck. + * + * DependencyCheck is free software: you can redistribute it and/or modify it + * under the terms of the GNU General Public License as published by the Free + * Software Foundation, either version 3 of the License, or (at your option) any + * later version. + * + * DependencyCheck is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more + * details. + * + * You should have received a copy of the GNU General Public License along with + * DependencyCheck. If not, see http://www.gnu.org/licenses/. + * + * Copyright (c) 2012 Jeremy Long. All Rights Reserved. */ -package org.codesecure.dependencycheck.data.cpe; +package org.owasp.dependencycheck.data.cpe; +import org.owasp.dependencycheck.data.cpe.Index; import java.io.File; import java.io.IOException; +import junit.framework.Assert; import org.apache.lucene.store.Directory; -import org.junit.*; +import org.junit.After; +import org.junit.AfterClass; +import org.junit.Before; +import org.junit.BeforeClass; +import org.junit.Test; -import static org.junit.Assert.*; /** * @@ -38,7 +57,6 @@ public class IndexTest { */ @Test public void testOpen() { - System.out.println("open"); Index instance = new Index(); try { instance.open(); @@ -50,10 +68,10 @@ public class IndexTest { /** * Test of getDirectory method, of class Index. + * @throws Exception */ @Test public void testGetDirectory() throws Exception { - System.out.println("getDirectory"); Index index = new Index(); Directory result = index.getDirectory(); diff --git a/src/test/java/org/codesecure/dependencycheck/data/cwe/CweDBTest.java b/src/test/java/org/owasp/dependencycheck/data/cwe/CweDBTest.java similarity index 67% rename from src/test/java/org/codesecure/dependencycheck/data/cwe/CweDBTest.java rename to src/test/java/org/owasp/dependencycheck/data/cwe/CweDBTest.java index 10c2cc320..9c28c7c57 100644 --- a/src/test/java/org/codesecure/dependencycheck/data/cwe/CweDBTest.java +++ b/src/test/java/org/owasp/dependencycheck/data/cwe/CweDBTest.java @@ -1,15 +1,24 @@ /* - * To change this template, choose Tools | Templates - * and open the template in the editor. + * This file is part of DependencyCheck. + * + * DependencyCheck is free software: you can redistribute it and/or modify it + * under the terms of the GNU General Public License as published by the Free + * Software Foundation, either version 3 of the License, or (at your option) any + * later version. + * + * DependencyCheck is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more + * details. + * + * You should have received a copy of the GNU General Public License along with + * DependencyCheck. If not, see http://www.gnu.org/licenses/. + * + * Copyright (c) 2012 Jeremy Long. All Rights Reserved. */ -package org.codesecure.dependencycheck.data.cwe; +package org.owasp.dependencycheck.data.cwe; -import java.io.ObjectOutputStream; -import java.io.FileOutputStream; -import java.util.Map; -import java.io.File; -import javax.xml.parsers.SAXParser; -import javax.xml.parsers.SAXParserFactory; +import org.owasp.dependencycheck.data.cwe.CweDB; import org.junit.After; import org.junit.AfterClass; import org.junit.Before; @@ -69,7 +78,6 @@ public class CweDBTest { */ @Test public void testGetCweName() { - System.out.println("getCweName"); String cweId = "CWE-16"; String expResult = "Configuration"; String result = CweDB.getCweName(cweId); diff --git a/src/test/java/org/codesecure/dependencycheck/data/lucene/FieldAnalyzerTest.java b/src/test/java/org/owasp/dependencycheck/data/lucene/FieldAnalyzerTest.java similarity index 96% rename from src/test/java/org/codesecure/dependencycheck/data/lucene/FieldAnalyzerTest.java rename to src/test/java/org/owasp/dependencycheck/data/lucene/FieldAnalyzerTest.java index 8d035d1ee..7a508bb9d 100644 --- a/src/test/java/org/codesecure/dependencycheck/data/lucene/FieldAnalyzerTest.java +++ b/src/test/java/org/owasp/dependencycheck/data/lucene/FieldAnalyzerTest.java @@ -1,4 +1,3 @@ -package org.codesecure.dependencycheck.data.lucene; /* * This file is part of DependencyCheck. * @@ -17,9 +16,11 @@ package org.codesecure.dependencycheck.data.lucene; * * Copyright (c) 2012 Jeremy Long. All Rights Reserved. */ +package org.owasp.dependencycheck.data.lucene; +import org.owasp.dependencycheck.data.lucene.SearchFieldAnalyzer; +import org.owasp.dependencycheck.data.lucene.FieldAnalyzer; import org.apache.lucene.analysis.miscellaneous.PerFieldAnalyzerWrapper; -import java.util.Map; import java.util.HashMap; import org.apache.lucene.queryparser.classic.QueryParser; import org.apache.lucene.analysis.standard.StandardAnalyzer; @@ -52,9 +53,6 @@ import static org.junit.Assert.*; */ public class FieldAnalyzerTest { - public FieldAnalyzerTest() { - } - @BeforeClass public static void setUpClass() throws Exception { } @@ -73,21 +71,21 @@ public class FieldAnalyzerTest { @Test public void testAnalyzers() throws Exception { - + Analyzer analyzer = new FieldAnalyzer(Version.LUCENE_40); Directory index = new RAMDirectory(); - + String field1 = "product"; String text1 = "springframework"; - + String field2 = "vendor"; String text2 = "springsource"; - + createIndex(analyzer, index, field1, text1, field2, text2); //Analyzer searchingAnalyzer = new SearchFieldAnalyzer(Version.LUCENE_40); String querystr = "product:\"(Spring Framework Core)\" vendor:(SpringSource)"; - + SearchFieldAnalyzer searchAnalyzerProduct = new SearchFieldAnalyzer(Version.LUCENE_40); SearchFieldAnalyzer searchAnalyzerVendor = new SearchFieldAnalyzer(Version.LUCENE_40); HashMap map = new HashMap(); @@ -95,10 +93,10 @@ public class FieldAnalyzerTest { map.put(field2, searchAnalyzerVendor); PerFieldAnalyzerWrapper wrapper = new PerFieldAnalyzerWrapper(new StandardAnalyzer(Version.LUCENE_40), map); QueryParser parser = new QueryParser(Version.LUCENE_40, field1, wrapper); - + Query q = parser.parse(querystr); //System.out.println(q.toString()); - + int hitsPerPage = 10; IndexReader reader = DirectoryReader.open(index); @@ -106,9 +104,9 @@ public class FieldAnalyzerTest { TopScoreDocCollector collector = TopScoreDocCollector.create(hitsPerPage, true); searcher.search(q, collector); ScoreDoc[] hits = collector.topDocs().scoreDocs; - + assertEquals("Did not find 1 document?", 1, hits.length); - + searchAnalyzerProduct.clear(); //ensure we don't have anything left over from the previous search. searchAnalyzerVendor.clear(); querystr = "product:(Apache Struts) vendor:(Apache)"; diff --git a/src/test/java/org/codesecure/dependencycheck/data/lucene/LuceneUtilsTest.java b/src/test/java/org/owasp/dependencycheck/data/lucene/LuceneUtilsTest.java similarity index 66% rename from src/test/java/org/codesecure/dependencycheck/data/lucene/LuceneUtilsTest.java rename to src/test/java/org/owasp/dependencycheck/data/lucene/LuceneUtilsTest.java index 5f8cdca8d..3e54f0142 100644 --- a/src/test/java/org/codesecure/dependencycheck/data/lucene/LuceneUtilsTest.java +++ b/src/test/java/org/owasp/dependencycheck/data/lucene/LuceneUtilsTest.java @@ -1,10 +1,24 @@ /* - * To change this template, choose Tools | Templates - * and open the template in the editor. + * This file is part of DependencyCheck. + * + * DependencyCheck is free software: you can redistribute it and/or modify it + * under the terms of the GNU General Public License as published by the Free + * Software Foundation, either version 3 of the License, or (at your option) any + * later version. + * + * DependencyCheck is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more + * details. + * + * You should have received a copy of the GNU General Public License along with + * DependencyCheck. If not, see http://www.gnu.org/licenses/. + * + * Copyright (c) 2012 Jeremy Long. All Rights Reserved. */ -package org.codesecure.dependencycheck.data.lucene; +package org.owasp.dependencycheck.data.lucene; -import org.codesecure.dependencycheck.data.lucene.LuceneUtils; +import org.owasp.dependencycheck.data.lucene.LuceneUtils; import org.junit.After; import org.junit.AfterClass; import org.junit.Before; @@ -17,9 +31,6 @@ import static org.junit.Assert.*; * @author Jeremy Long (jeremy.long@gmail.com) */ public class LuceneUtilsTest { - - public LuceneUtilsTest() { - } @BeforeClass public static void setUpClass() throws Exception { @@ -28,11 +39,11 @@ public class LuceneUtilsTest { @AfterClass public static void tearDownClass() throws Exception { } - + @Before public void setUp() { } - + @After public void tearDown() { } @@ -42,19 +53,17 @@ public class LuceneUtilsTest { */ @Test public void testAppendEscapedLuceneQuery() { - System.out.println("appendEscapedLuceneQuery"); StringBuilder buf = new StringBuilder(); CharSequence text = "test encoding + - & | ! ( ) { } [ ] ^ \" ~ * ? : \\"; - String expResult = "test encoding \\+ \\- \\& \\| \\! \\( \\) \\{ \\} \\[ \\] \\^ \\\" \\~ \\* \\? \\: \\\\"; + String expResult = "test encoding \\+ \\- \\& \\| \\! \\( \\) \\{ \\} \\[ \\] \\^ \\\" \\~ \\* \\? \\: \\\\"; LuceneUtils.appendEscapedLuceneQuery(buf, text); assertEquals(expResult, buf.toString()); } -/** + /** * Test of appendEscapedLuceneQuery method, of class LuceneUtils. */ @Test public void testAppendEscapedLuceneQuery_null() { - System.out.println("appendEscapedLuceneQuery"); StringBuilder buf = new StringBuilder(); CharSequence text = null; LuceneUtils.appendEscapedLuceneQuery(buf, text); @@ -65,19 +74,17 @@ public class LuceneUtilsTest { */ @Test public void testEscapeLuceneQuery() { - System.out.println("escapeLuceneQuery"); - CharSequence text = "test encoding + - & | ! ( ) { } [ ] ^ \" ~ * ? : \\"; - String expResult = "test encoding \\+ \\- \\& \\| \\! \\( \\) \\{ \\} \\[ \\] \\^ \\\" \\~ \\* \\? \\: \\\\"; + CharSequence text = "test encoding + - & | ! ( ) { } [ ] ^ \" ~ * ? : \\"; + String expResult = "test encoding \\+ \\- \\& \\| \\! \\( \\) \\{ \\} \\[ \\] \\^ \\\" \\~ \\* \\? \\: \\\\"; String result = LuceneUtils.escapeLuceneQuery(text); assertEquals(expResult, result); } - + /** * Test of escapeLuceneQuery method, of class LuceneUtils. */ @Test public void testEscapeLuceneQuery_null() { - System.out.println("escapeLuceneQuery"); CharSequence text = null; String expResult = null; String result = LuceneUtils.escapeLuceneQuery(text); diff --git a/src/test/java/org/codesecure/dependencycheck/data/nvdcve/BaseDBTestCase.java b/src/test/java/org/owasp/dependencycheck/data/nvdcve/BaseDBTestCase.java similarity index 83% rename from src/test/java/org/codesecure/dependencycheck/data/nvdcve/BaseDBTestCase.java rename to src/test/java/org/owasp/dependencycheck/data/nvdcve/BaseDBTestCase.java index a590513ec..088faf89a 100644 --- a/src/test/java/org/codesecure/dependencycheck/data/nvdcve/BaseDBTestCase.java +++ b/src/test/java/org/owasp/dependencycheck/data/nvdcve/BaseDBTestCase.java @@ -1,10 +1,24 @@ /* - * To change this template, choose Tools | Templates - * and open the template in the editor. + * This file is part of DependencyCheck. + * + * DependencyCheck is free software: you can redistribute it and/or modify it + * under the terms of the GNU General Public License as published by the Free + * Software Foundation, either version 3 of the License, or (at your option) any + * later version. + * + * DependencyCheck is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more + * details. + * + * You should have received a copy of the GNU General Public License along with + * DependencyCheck. If not, see http://www.gnu.org/licenses/. + * + * Copyright (c) 2012 Jeremy Long. All Rights Reserved. */ -package org.codesecure.dependencycheck.data.nvdcve; +package org.owasp.dependencycheck.data.nvdcve; -import org.codesecure.dependencycheck.data.cpe.*; +import org.owasp.dependencycheck.data.cpe.*; import java.io.BufferedInputStream; import java.io.BufferedOutputStream; import java.io.File; @@ -15,7 +29,7 @@ import java.net.URLDecoder; import java.util.zip.ZipEntry; import java.util.zip.ZipInputStream; import junit.framework.TestCase; -import org.codesecure.dependencycheck.utils.Settings; +import org.owasp.dependencycheck.utils.Settings; /** * diff --git a/src/test/java/org/owasp/dependencycheck/data/nvdcve/xml/DatabaseUpdaterIntegrationTest.java b/src/test/java/org/owasp/dependencycheck/data/nvdcve/xml/DatabaseUpdaterIntegrationTest.java new file mode 100644 index 000000000..688d4a0f5 --- /dev/null +++ b/src/test/java/org/owasp/dependencycheck/data/nvdcve/xml/DatabaseUpdaterIntegrationTest.java @@ -0,0 +1,62 @@ +/* + * This file is part of DependencyCheck. + * + * DependencyCheck is free software: you can redistribute it and/or modify it + * under the terms of the GNU General Public License as published by the Free + * Software Foundation, either version 3 of the License, or (at your option) any + * later version. + * + * DependencyCheck is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more + * details. + * + * You should have received a copy of the GNU General Public License along with + * DependencyCheck. If not, see http://www.gnu.org/licenses/. + * + * Copyright (c) 2012 Jeremy Long. All Rights Reserved. + */ +package org.owasp.dependencycheck.data.nvdcve.xml; + +import org.owasp.dependencycheck.data.nvdcve.xml.DatabaseUpdater; +import org.junit.After; +import org.junit.AfterClass; +import org.junit.Before; +import org.junit.BeforeClass; +import org.junit.Test; + +/** + * + * @author Jeremy Long (jeremy.long@gmail.com) + */ +public class DatabaseUpdaterIntegrationTest { + + public DatabaseUpdaterIntegrationTest() { + } + + @BeforeClass + public static void setUpClass() throws Exception { + } + + @AfterClass + public static void tearDownClass() throws Exception { + } + + @Before + public void setUp() { + } + + @After + public void tearDown() { + } + + /** + * Test of update method, of class DatabaseUpdater. + * @throws Exception + */ + @Test + public void testUpdate() throws Exception { + DatabaseUpdater instance = new DatabaseUpdater(); + instance.update(); + } +} diff --git a/src/test/java/org/codesecure/dependencycheck/data/nvdcve/xml/NvdCve_1_2_HandlerTest.java b/src/test/java/org/owasp/dependencycheck/data/nvdcve/xml/NvdCve_1_2_HandlerTest.java similarity index 58% rename from src/test/java/org/codesecure/dependencycheck/data/nvdcve/xml/NvdCve_1_2_HandlerTest.java rename to src/test/java/org/owasp/dependencycheck/data/nvdcve/xml/NvdCve_1_2_HandlerTest.java index 93820cebc..685b39618 100644 --- a/src/test/java/org/codesecure/dependencycheck/data/nvdcve/xml/NvdCve_1_2_HandlerTest.java +++ b/src/test/java/org/owasp/dependencycheck/data/nvdcve/xml/NvdCve_1_2_HandlerTest.java @@ -1,15 +1,30 @@ /* - * To change this template, choose Tools | Templates - * and open the template in the editor. + * This file is part of DependencyCheck. + * + * DependencyCheck is free software: you can redistribute it and/or modify it + * under the terms of the GNU General Public License as published by the Free + * Software Foundation, either version 3 of the License, or (at your option) any + * later version. + * + * DependencyCheck is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more + * details. + * + * You should have received a copy of the GNU General Public License along with + * DependencyCheck. If not, see http://www.gnu.org/licenses/. + * + * Copyright (c) 2012 Jeremy Long. All Rights Reserved. */ -package org.codesecure.dependencycheck.data.nvdcve.xml; +package org.owasp.dependencycheck.data.nvdcve.xml; +import org.owasp.dependencycheck.data.nvdcve.xml.NvdCve12Handler; import java.io.File; import java.util.List; import java.util.Map; import javax.xml.parsers.SAXParser; import javax.xml.parsers.SAXParserFactory; -import org.codesecure.dependencycheck.dependency.VulnerableSoftware; +import org.owasp.dependencycheck.dependency.VulnerableSoftware; import org.junit.After; import org.junit.AfterClass; import org.junit.Before; diff --git a/src/test/java/org/codesecure/dependencycheck/data/nvdcve/xml/NvdCve_2_0_HandlerTest.java b/src/test/java/org/owasp/dependencycheck/data/nvdcve/xml/NvdCve_2_0_HandlerTest.java similarity index 61% rename from src/test/java/org/codesecure/dependencycheck/data/nvdcve/xml/NvdCve_2_0_HandlerTest.java rename to src/test/java/org/owasp/dependencycheck/data/nvdcve/xml/NvdCve_2_0_HandlerTest.java index 28c4bf8e4..34555b373 100644 --- a/src/test/java/org/codesecure/dependencycheck/data/nvdcve/xml/NvdCve_2_0_HandlerTest.java +++ b/src/test/java/org/owasp/dependencycheck/data/nvdcve/xml/NvdCve_2_0_HandlerTest.java @@ -1,9 +1,24 @@ /* - * To change this template, choose Tools | Templates - * and open the template in the editor. + * This file is part of DependencyCheck. + * + * DependencyCheck is free software: you can redistribute it and/or modify it + * under the terms of the GNU General Public License as published by the Free + * Software Foundation, either version 3 of the License, or (at your option) any + * later version. + * + * DependencyCheck is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more + * details. + * + * You should have received a copy of the GNU General Public License along with + * DependencyCheck. If not, see http://www.gnu.org/licenses/. + * + * Copyright (c) 2012 Jeremy Long. All Rights Reserved. */ -package org.codesecure.dependencycheck.data.nvdcve.xml; +package org.owasp.dependencycheck.data.nvdcve.xml; +import org.owasp.dependencycheck.data.nvdcve.xml.NvdCve20Handler; import java.io.File; import javax.xml.parsers.SAXParser; import javax.xml.parsers.SAXParserFactory; diff --git a/src/test/java/org/codesecure/dependencycheck/dependency/DependencyTest.java b/src/test/java/org/owasp/dependencycheck/dependency/DependencyTest.java similarity index 88% rename from src/test/java/org/codesecure/dependencycheck/dependency/DependencyTest.java rename to src/test/java/org/owasp/dependencycheck/dependency/DependencyTest.java index 69c8c5dde..a64943a5e 100644 --- a/src/test/java/org/codesecure/dependencycheck/dependency/DependencyTest.java +++ b/src/test/java/org/owasp/dependencycheck/dependency/DependencyTest.java @@ -1,9 +1,9 @@ -/* - * To change this template, choose Tools | Templates - * and open the template in the editor. - */ -package org.codesecure.dependencycheck.dependency; +package org.owasp.dependencycheck.dependency; +import org.owasp.dependencycheck.dependency.EvidenceCollection; +import org.owasp.dependencycheck.dependency.Identifier; +import org.owasp.dependencycheck.dependency.Dependency; +import org.owasp.dependencycheck.dependency.Evidence; import java.io.File; import java.util.List; import org.junit.After; @@ -18,7 +18,7 @@ import static org.junit.Assert.*; * @author Jeremy Long (jeremy.long@gmail.com) */ public class DependencyTest { - + public DependencyTest() { } @@ -29,11 +29,11 @@ public class DependencyTest { @AfterClass public static void tearDownClass() throws Exception { } - + @Before public void setUp() { } - + @After public void tearDown() { } @@ -43,12 +43,11 @@ public class DependencyTest { */ @Test public void testContainsUsedString() { - System.out.println("containsUsedString"); String str = "apache"; - String str2 = "codesecure"; + String str2 = "owasp"; Dependency instance = new Dependency(); instance.vendorEvidence.addEvidence("manifest", "something", "apache", Evidence.Confidence.HIGH); - instance.vendorEvidence.addEvidence("manifest", "something", "codesecure", Evidence.Confidence.MEDIUM); + instance.vendorEvidence.addEvidence("manifest", "something", "owasp", Evidence.Confidence.MEDIUM); assertFalse(instance.containsUsedString(str)); assertFalse(instance.containsUsedString(str2)); for (Evidence i : instance.vendorEvidence.iterator(Evidence.Confidence.HIGH)) { @@ -68,7 +67,6 @@ public class DependencyTest { */ @Test public void testGetFileName() { - System.out.println("getFileName"); Dependency instance = new Dependency(); String expResult = "filename"; instance.setFileName(expResult); @@ -81,7 +79,6 @@ public class DependencyTest { */ @Test public void testSetFileName() { - System.out.println("setFileName"); String fileName = "test.file"; Dependency instance = new Dependency(); instance.setFileName(fileName); @@ -93,7 +90,6 @@ public class DependencyTest { */ @Test public void testSetActualFilePath() { - System.out.println("setActualFilePath"); String actualFilePath = "test.file"; Dependency instance = new Dependency(); instance.setActualFilePath(actualFilePath); @@ -105,7 +101,6 @@ public class DependencyTest { */ @Test public void testGetActualFilePath() { - System.out.println("getActualFilePath"); Dependency instance = new Dependency(); String expResult = "test.file"; instance.setActualFilePath(expResult); @@ -118,7 +113,6 @@ public class DependencyTest { */ @Test public void testSetFilePath() { - System.out.println("setFilePath"); String filePath = "test.file"; Dependency instance = new Dependency(); instance.setFilePath(filePath); @@ -130,7 +124,6 @@ public class DependencyTest { */ @Test public void testGetFilePath() { - System.out.println("getFilePath"); Dependency instance = new Dependency(); String expResult = "path/test.file"; instance.setFilePath(expResult); @@ -143,7 +136,6 @@ public class DependencyTest { */ @Test public void testSetFileExtension() { - System.out.println("setFileExtension"); String fileExtension = "jar"; Dependency instance = new Dependency(); instance.setFileExtension(fileExtension); @@ -155,7 +147,6 @@ public class DependencyTest { */ @Test public void testGetFileExtension() { - System.out.println("getFileExtension"); Dependency instance = new Dependency(); String expResult = "jar"; instance.setFileExtension(expResult); @@ -168,7 +159,6 @@ public class DependencyTest { */ @Test public void testGetMd5sum() { - System.out.println("getMd5sum"); File file = new File(this.getClass().getClassLoader().getResource("struts2-core-2.1.2.jar").getPath()); Dependency instance = new Dependency(file); // assertEquals("89CE9E36AA9A9E03F1450936D2F4F8DD0F961F8B", result.getSha1sum()); @@ -182,7 +172,6 @@ public class DependencyTest { */ @Test public void testSetMd5sum() { - System.out.println("setMd5sum"); String md5sum = "test"; Dependency instance = new Dependency(); instance.setMd5sum(md5sum); @@ -194,7 +183,6 @@ public class DependencyTest { */ @Test public void testGetSha1sum() { - System.out.println("getSha1sum"); File file = new File(this.getClass().getClassLoader().getResource("struts2-core-2.1.2.jar").getPath()); Dependency instance = new Dependency(file); String expResult = "89CE9E36AA9A9E03F1450936D2F4F8DD0F961F8B"; @@ -207,7 +195,6 @@ public class DependencyTest { */ @Test public void testSetSha1sum() { - System.out.println("setSha1sum"); String sha1sum = "test"; Dependency instance = new Dependency(); instance.setSha1sum(sha1sum); @@ -219,11 +206,10 @@ public class DependencyTest { */ @Test public void testGetIdentifiers() { - System.out.println("getIdentifiers"); Dependency instance = new Dependency(); List expResult = null; List result = instance.getIdentifiers(); - + assertTrue(true); //this is just a getter setter pair. } @@ -232,7 +218,6 @@ public class DependencyTest { */ @Test public void testSetIdentifiers() { - System.out.println("setIdentifiers"); List identifiers = null; Dependency instance = new Dependency(); instance.setIdentifiers(identifiers); @@ -244,7 +229,6 @@ public class DependencyTest { */ @Test public void testAddIdentifier() { - System.out.println("addIdentifier"); String type = "cpe"; String value = "cpe:/a:apache:struts:2.1.2"; String url = "http://somewhere"; @@ -262,7 +246,6 @@ public class DependencyTest { */ @Test public void testGetEvidence() { - System.out.println("getEvidence"); Dependency instance = new Dependency(); EvidenceCollection expResult = null; EvidenceCollection result = instance.getEvidence(); @@ -274,18 +257,17 @@ public class DependencyTest { */ @Test public void testGetEvidenceUsed() { - System.out.println("getEvidenceUsed"); Dependency instance = new Dependency(); String expResult = "used"; - + instance.getProductEvidence().addEvidence("used", "used", "used", Evidence.Confidence.HIGH); instance.getProductEvidence().addEvidence("not", "not", "not", Evidence.Confidence.MEDIUM); for (Evidence e : instance.getProductEvidence().iterator(Evidence.Confidence.HIGH)) { String use = e.getValue(); } - + EvidenceCollection result = instance.getEvidenceUsed(); - + assertEquals(1, result.size()); assertTrue(result.containsUsedString(expResult)); } @@ -295,7 +277,6 @@ public class DependencyTest { */ @Test public void testGetVendorEvidence() { - System.out.println("getVendorEvidence"); Dependency instance = new Dependency(); EvidenceCollection expResult = null; EvidenceCollection result = instance.getVendorEvidence(); @@ -307,7 +288,6 @@ public class DependencyTest { */ @Test public void testGetProductEvidence() { - System.out.println("getProductEvidence"); Dependency instance = new Dependency(); EvidenceCollection expResult = null; EvidenceCollection result = instance.getProductEvidence(); @@ -319,7 +299,6 @@ public class DependencyTest { */ @Test public void testGetVersionEvidence() { - System.out.println("getVersionEvidence"); Dependency instance = new Dependency(); EvidenceCollection expResult = null; EvidenceCollection result = instance.getVersionEvidence(); diff --git a/src/test/java/org/codesecure/dependencycheck/reporting/ReportGeneratorTest.java b/src/test/java/org/owasp/dependencycheck/reporting/ReportGeneratorTest.java similarity index 77% rename from src/test/java/org/codesecure/dependencycheck/reporting/ReportGeneratorTest.java rename to src/test/java/org/owasp/dependencycheck/reporting/ReportGeneratorTest.java index a02455393..5581ecff4 100644 --- a/src/test/java/org/codesecure/dependencycheck/reporting/ReportGeneratorTest.java +++ b/src/test/java/org/owasp/dependencycheck/reporting/ReportGeneratorTest.java @@ -1,10 +1,24 @@ /* - * To change this template, choose Tools | Templates - * and open the template in the editor. + * This file is part of DependencyCheck. + * + * DependencyCheck is free software: you can redistribute it and/or modify it + * under the terms of the GNU General Public License as published by the Free + * Software Foundation, either version 3 of the License, or (at your option) any + * later version. + * + * DependencyCheck is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more + * details. + * + * You should have received a copy of the GNU General Public License along with + * DependencyCheck. If not, see http://www.gnu.org/licenses/. + * + * Copyright (c) 2012 Jeremy Long. All Rights Reserved. */ -package org.codesecure.dependencycheck.reporting; +package org.owasp.dependencycheck.reporting; -import org.codesecure.dependencycheck.data.cpe.BaseIndexTestCase; +import org.owasp.dependencycheck.data.cpe.BaseIndexTestCase; import org.junit.After; import org.junit.AfterClass; import org.junit.Before; @@ -39,7 +53,6 @@ public class ReportGeneratorTest { */ @Test public void testGenerateReport() throws Exception { - System.out.println("generateReport"); String templateName = "HtmlReport"; // File f = new File("target/test-reports"); // if (!f.exists()) { diff --git a/src/test/java/org/codesecure/dependencycheck/utils/ChecksumTest.java b/src/test/java/org/owasp/dependencycheck/utils/ChecksumTest.java similarity index 78% rename from src/test/java/org/codesecure/dependencycheck/utils/ChecksumTest.java rename to src/test/java/org/owasp/dependencycheck/utils/ChecksumTest.java index 1c553c9bf..323483a02 100644 --- a/src/test/java/org/codesecure/dependencycheck/utils/ChecksumTest.java +++ b/src/test/java/org/owasp/dependencycheck/utils/ChecksumTest.java @@ -1,24 +1,48 @@ /* - * To change this template, choose Tools | Templates - * and open the template in the editor. + * This file is part of DependencyCheck. + * + * DependencyCheck is free software: you can redistribute it and/or modify it + * under the terms of the GNU General Public License as published by the Free + * Software Foundation, either version 3 of the License, or (at your option) any + * later version. + * + * DependencyCheck is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more + * details. + * + * You should have received a copy of the GNU General Public License along with + * DependencyCheck. If not, see http://www.gnu.org/licenses/. + * + * Copyright (c) 2012 Jeremy Long. All Rights Reserved. */ -package org.codesecure.dependencycheck.utils; +package org.owasp.dependencycheck.utils; +import org.owasp.dependencycheck.utils.Checksum; import java.io.File; import java.io.IOException; import java.security.NoSuchAlgorithmException; -import junit.framework.TestCase; import org.junit.After; +import org.junit.AfterClass; import org.junit.Assert; import org.junit.Before; +import org.junit.BeforeClass; import org.junit.Test; /** * - * @author jeremy + * @author Jeremy Long (jeremy.long@gmail.com) */ public class ChecksumTest { + @BeforeClass + public static void setUpClass() throws Exception { + } + + @AfterClass + public static void tearDownClass() throws Exception { + } + @Before public void setUp() throws Exception { } @@ -33,7 +57,6 @@ public class ChecksumTest { */ @Test public void testGetChecksum() throws Exception { - System.out.println("getChecksum (md5)"); String algorithm = "MD5"; File file = new File(this.getClass().getClassLoader().getResource("checkSumTest.file").getPath()); byte[] expResult = {-16, -111, 92, 95, 70, -72, -49, -94, -125, -27, -83, 103, -96, -101, 55, -109}; @@ -57,7 +80,6 @@ public class ChecksumTest { */ @Test public void testGetChecksum_FileNotFound() throws Exception { - System.out.println("getChecksum (invalid path)"); String algorithm = "MD5"; File file = new File("not a valid file"); boolean exceptionThrown = false; @@ -77,7 +99,6 @@ public class ChecksumTest { */ @Test public void testGetChecksum_NoSuchAlgorithm() throws Exception { - System.out.println("getChecksum (invalid algorithm)"); String algorithm = "some unknown algorithm"; File file = new File(this.getClass().getClassLoader().getResource("checkSumTest.file").getPath()); boolean exceptionThrown = false; @@ -95,7 +116,6 @@ public class ChecksumTest { */ @Test public void testGetMD5Checksum() throws Exception { - System.out.println("getMD5Checksum"); File file = new File(this.getClass().getClassLoader().getResource("checkSumTest.file").getPath()); String expResult = "F0915C5F46B8CFA283E5AD67A09B3793"; String result = Checksum.getMD5Checksum(file); @@ -108,7 +128,6 @@ public class ChecksumTest { */ @Test public void testGetSHA1Checksum() throws Exception { - System.out.println("getSHA1Checksum"); File file = new File(this.getClass().getClassLoader().getResource("checkSumTest.file").getPath()); String expResult = "B8A9FF28B21BCB1D0B50E24A5243D8B51766851A"; String result = Checksum.getSHA1Checksum(file); @@ -120,7 +139,6 @@ public class ChecksumTest { */ @Test public void testGetHex() { - System.out.println("getHex"); byte[] raw = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16}; String expResult = "000102030405060708090A0B0C0D0E0F10"; String result = Checksum.getHex(raw); diff --git a/src/test/java/org/codesecure/dependencycheck/utils/CliParserTest.java b/src/test/java/org/owasp/dependencycheck/utils/CliParserTest.java similarity index 86% rename from src/test/java/org/codesecure/dependencycheck/utils/CliParserTest.java rename to src/test/java/org/owasp/dependencycheck/utils/CliParserTest.java index 03914a087..4ad3c8013 100644 --- a/src/test/java/org/codesecure/dependencycheck/utils/CliParserTest.java +++ b/src/test/java/org/owasp/dependencycheck/utils/CliParserTest.java @@ -1,27 +1,51 @@ /* - * To change this template, choose Tools | Templates - * and open the template in the editor. + * This file is part of DependencyCheck. + * + * DependencyCheck is free software: you can redistribute it and/or modify it + * under the terms of the GNU General Public License as published by the Free + * Software Foundation, either version 3 of the License, or (at your option) any + * later version. + * + * DependencyCheck is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more + * details. + * + * You should have received a copy of the GNU General Public License along with + * DependencyCheck. If not, see http://www.gnu.org/licenses/. + * + * Copyright (c) 2012 Jeremy Long. All Rights Reserved. */ -package org.codesecure.dependencycheck.utils; +package org.owasp.dependencycheck.utils; +import org.owasp.dependencycheck.utils.CliParser; import java.io.ByteArrayOutputStream; import java.io.File; import java.io.FileNotFoundException; import java.io.IOException; import java.io.PrintStream; -import junit.framework.TestCase; import org.apache.commons.cli.ParseException; import org.junit.After; +import org.junit.AfterClass; import org.junit.Assert; import org.junit.Before; +import org.junit.BeforeClass; import org.junit.Test; /** * - * @author jeremy + * @author Jeremy Long (jeremy.long@gmail.com) */ public class CliParserTest { + @BeforeClass + public static void setUpClass() throws Exception { + } + + @AfterClass + public static void tearDownClass() throws Exception { + } + @Before public void setUp() throws Exception { } @@ -36,7 +60,6 @@ public class CliParserTest { */ @Test public void testParse() throws Exception { - System.out.println("parse"); String[] args = {}; PrintStream out = System.out; @@ -58,7 +81,6 @@ public class CliParserTest { */ @Test public void testParse_help() throws Exception { - System.out.println("parse -help"); String[] args = {"-help"}; PrintStream out = System.out; @@ -77,7 +99,6 @@ public class CliParserTest { */ @Test public void testParse_version() throws Exception { - System.out.println("parse -ver"); String[] args = {"-version"}; @@ -95,7 +116,6 @@ public class CliParserTest { */ @Test public void testParse_unknown() throws Exception { - System.out.println("parse -unknown"); String[] args = {"-unknown"}; @@ -124,7 +144,6 @@ public class CliParserTest { */ @Test public void testParse_scan() throws Exception { - System.out.println("parse -scan"); String[] args = {"-scan"}; @@ -147,7 +166,6 @@ public class CliParserTest { */ @Test public void testParse_scan_unknownFile() throws Exception { - System.out.println("parse -scan jar.that.does.not.exist"); String[] args = {"-scan", "jar.that.does.not.exist", "-app", "test"}; @@ -169,7 +187,6 @@ public class CliParserTest { */ @Test public void testParse_scan_withFileExists() throws Exception { - System.out.println("parse -scan checkSumTest.file"); File path = new File(this.getClass().getClassLoader().getResource("checkSumTest.file").getPath()); String[] args = {"-scan", path.getCanonicalPath(), "-out", "./", "-app", "test"}; @@ -189,7 +206,6 @@ public class CliParserTest { */ @Test public void testParse_printVersionInfo() throws Exception { - System.out.println("printVersionInfo"); PrintStream out = System.out; ByteArrayOutputStream baos = new ByteArrayOutputStream(); @@ -218,7 +234,6 @@ public class CliParserTest { */ @Test public void testParse_printHelp() throws Exception { - System.out.println("printHelp"); PrintStream out = System.out; ByteArrayOutputStream baos = new ByteArrayOutputStream(); diff --git a/src/test/java/org/codesecure/dependencycheck/utils/DownloaderIntegrationTest.java b/src/test/java/org/owasp/dependencycheck/utils/DownloaderIntegrationTest.java similarity index 64% rename from src/test/java/org/codesecure/dependencycheck/utils/DownloaderIntegrationTest.java rename to src/test/java/org/owasp/dependencycheck/utils/DownloaderIntegrationTest.java index 8dffae7ca..80e665a46 100644 --- a/src/test/java/org/codesecure/dependencycheck/utils/DownloaderIntegrationTest.java +++ b/src/test/java/org/owasp/dependencycheck/utils/DownloaderIntegrationTest.java @@ -1,9 +1,25 @@ /* - * To change this template, choose Tools | Templates - * and open the template in the editor. + * This file is part of DependencyCheck. + * + * DependencyCheck is free software: you can redistribute it and/or modify it + * under the terms of the GNU General Public License as published by the Free + * Software Foundation, either version 3 of the License, or (at your option) any + * later version. + * + * DependencyCheck is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more + * details. + * + * You should have received a copy of the GNU General Public License along with + * DependencyCheck. If not, see http://www.gnu.org/licenses/. + * + * Copyright (c) 2012 Jeremy Long. All Rights Reserved. */ -package org.codesecure.dependencycheck.utils; +package org.owasp.dependencycheck.utils; +import org.owasp.dependencycheck.utils.Settings; +import org.owasp.dependencycheck.utils.Downloader; import java.net.URL; import org.junit.After; import org.junit.AfterClass; @@ -18,9 +34,6 @@ import static org.junit.Assert.*; */ public class DownloaderIntegrationTest { - public DownloaderIntegrationTest() { - } - @BeforeClass public static void setUpClass() throws Exception { } @@ -43,7 +56,6 @@ public class DownloaderIntegrationTest { */ @Test public void testFetchFile() throws Exception { - System.out.println("fetchFile"); // Settings.setString(Settings.KEYS.CONNECTION_TIMEOUT, "1000"); @@ -59,10 +71,9 @@ public class DownloaderIntegrationTest { Downloader.fetchFile(url, outputPath, false); } - + @Test public void testGetLastModified() throws Exception { - System.out.println("getLastModified"); URL url = new URL("http://nvd.nist.gov/download/nvdcve-2012.xml"); long timestamp = Downloader.getLastModified(url); assertTrue("timestamp equal to zero?", timestamp>0); diff --git a/src/test/java/org/codesecure/dependencycheck/utils/FilterTest.java b/src/test/java/org/owasp/dependencycheck/utils/FilterTest.java similarity index 68% rename from src/test/java/org/codesecure/dependencycheck/utils/FilterTest.java rename to src/test/java/org/owasp/dependencycheck/utils/FilterTest.java index fe85c07da..924a446b0 100644 --- a/src/test/java/org/codesecure/dependencycheck/utils/FilterTest.java +++ b/src/test/java/org/owasp/dependencycheck/utils/FilterTest.java @@ -1,9 +1,24 @@ /* - * To change this template, choose Tools | Templates - * and open the template in the editor. + * This file is part of DependencyCheck. + * + * DependencyCheck is free software: you can redistribute it and/or modify it + * under the terms of the GNU General Public License as published by the Free + * Software Foundation, either version 3 of the License, or (at your option) any + * later version. + * + * DependencyCheck is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more + * details. + * + * You should have received a copy of the GNU General Public License along with + * DependencyCheck. If not, see http://www.gnu.org/licenses/. + * + * Copyright (c) 2012 Jeremy Long. All Rights Reserved. */ -package org.codesecure.dependencycheck.utils; +package org.owasp.dependencycheck.utils; +import org.owasp.dependencycheck.utils.Filter; import java.util.List; import java.util.ArrayList; import org.junit.After; @@ -43,7 +58,6 @@ public class FilterTest { */ @Test public void testPasses() { - System.out.println("passes"); String keep = "keep"; String fail = "fail"; @@ -56,7 +70,6 @@ public class FilterTest { */ @Test public void testFilter_Iterable() { - System.out.println("filter"); List testData = new ArrayList(); testData.add("keep"); testData.add("remove"); diff --git a/src/test/java/org/codesecure/dependencycheck/utils/SettingsTest.java b/src/test/java/org/owasp/dependencycheck/utils/SettingsTest.java similarity index 74% rename from src/test/java/org/codesecure/dependencycheck/utils/SettingsTest.java rename to src/test/java/org/owasp/dependencycheck/utils/SettingsTest.java index 1f9c89aca..e4e3617c6 100644 --- a/src/test/java/org/codesecure/dependencycheck/utils/SettingsTest.java +++ b/src/test/java/org/owasp/dependencycheck/utils/SettingsTest.java @@ -1,24 +1,49 @@ /* - * To change this template, choose Tools | Templates - * and open the template in the editor. + * This file is part of DependencyCheck. + * + * DependencyCheck is free software: you can redistribute it and/or modify it + * under the terms of the GNU General Public License as published by the Free + * Software Foundation, either version 3 of the License, or (at your option) any + * later version. + * + * DependencyCheck is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more + * details. + * + * You should have received a copy of the GNU General Public License along with + * DependencyCheck. If not, see http://www.gnu.org/licenses/. + * + * Copyright (c) 2012 Jeremy Long. All Rights Reserved. */ -package org.codesecure.dependencycheck.utils; +package org.owasp.dependencycheck.utils; +import org.owasp.dependencycheck.utils.InvalidSettingException; +import org.owasp.dependencycheck.utils.Settings; import java.io.File; import java.io.IOException; import java.net.URISyntaxException; -import junit.framework.TestCase; import org.junit.After; +import org.junit.AfterClass; import org.junit.Assert; import org.junit.Before; +import org.junit.BeforeClass; import org.junit.Test; /** * - * @author jeremy + * @author Jeremy Long (jeremy.long@gmail.com) */ public class SettingsTest { + @BeforeClass + public static void setUpClass() throws Exception { + } + + @AfterClass + public static void tearDownClass() throws Exception { + } + @Before public void setUp() throws Exception { } @@ -32,7 +57,6 @@ public class SettingsTest { */ @Test public void testGetString() { - System.out.println("getString"); String key = Settings.KEYS.CPE_INDEX; String expResult = "target/data/cpe"; String result = Settings.getString(key); @@ -44,7 +68,6 @@ public class SettingsTest { */ @Test public void testMergeProperties_String() throws IOException, URISyntaxException { - System.out.println("getString"); String key = Settings.KEYS.PROXY_PORT; String expResult = Settings.getString(key); File f = new File(this.getClass().getClassLoader().getResource("test.properties").toURI()); @@ -59,7 +82,6 @@ public class SettingsTest { */ @Test public void testSetString() { - System.out.println("setString"); String key = "newProperty"; String value = "someValue"; Settings.setString(key, value); @@ -72,7 +94,6 @@ public class SettingsTest { */ @Test public void testGetString_String_String() { - System.out.println("getString"); String key = "key That Doesn't Exist"; String defaultValue = "blue bunny"; String expResult = "blue bunny"; @@ -87,7 +108,6 @@ public class SettingsTest { */ @Test public void testGetString_String() { - System.out.println("getString"); String key = Settings.KEYS.CONNECTION_TIMEOUT; String result = Settings.getString(key); Assert.assertTrue(result == null); @@ -98,7 +118,6 @@ public class SettingsTest { */ @Test public void testGetInt() throws InvalidSettingException { - System.out.println("getInt"); String key = "SomeNumber"; int expResult = 85; Settings.setString(key, "85"); @@ -111,7 +130,6 @@ public class SettingsTest { */ @Test public void testGetLong() throws InvalidSettingException { - System.out.println("getLong"); String key = "SomeNumber"; long expResult = 300L; Settings.setString(key, "300"); @@ -124,7 +142,6 @@ public class SettingsTest { */ @Test public void testGetBoolean() throws InvalidSettingException { - System.out.println("getBoolean"); String key = "SomeBoolean"; Settings.setString(key, "false"); boolean expResult = false;