├── .editorconfig ├── .gitattributes ├── .github ├── FUNDING.yml ├── dependabot.yml ├── settings.xml └── workflows │ ├── close_stale.yml │ └── maven.yml ├── .gitignore ├── .mvn └── wrapper │ ├── MavenWrapperDownloader.java │ ├── maven-wrapper.jar │ └── maven-wrapper.properties ├── .travis.yml ├── .travis_after_success.sh ├── LICENSE ├── README.md ├── maven_deploy_settings.xml ├── mvnw ├── mvnw.cmd ├── pom.xml ├── sample.yml ├── spotbugs.xml └── src ├── main ├── java │ └── io │ │ └── federecio │ │ └── dropwizard │ │ ├── sample │ │ ├── OAuth2Resource.java │ │ ├── SampleApplication.java │ │ ├── SampleBasicAuthenticator.java │ │ ├── SampleConfiguration.java │ │ ├── SampleOAuth2Authenticator.java │ │ ├── SampleResource.java │ │ └── Saying.java │ │ └── swagger │ │ ├── ConfigurationHelper.java │ │ ├── SwaggerBundle.java │ │ ├── SwaggerBundleConfiguration.java │ │ ├── SwaggerOAuth2Configuration.java │ │ ├── SwaggerResource.java │ │ ├── SwaggerView.java │ │ └── SwaggerViewConfiguration.java └── resources │ ├── io │ └── federecio │ │ └── dropwizard │ │ └── swagger │ │ └── index.ftl │ ├── myassets │ └── customJavascript.js │ └── swagger-static │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ ├── index.css │ ├── index.html │ ├── oauth2-redirect.html │ ├── swagger-initializer.js │ ├── swagger-ui-bundle.js │ ├── swagger-ui-bundle.js.map │ ├── swagger-ui-es-bundle-core.js │ ├── swagger-ui-es-bundle-core.js.map │ ├── swagger-ui-es-bundle.js │ ├── swagger-ui-es-bundle.js.map │ ├── swagger-ui-standalone-preset.js │ ├── swagger-ui-standalone-preset.js.map │ ├── swagger-ui.css │ ├── swagger-ui.css.map │ ├── swagger-ui.js │ └── swagger-ui.js.map └── test ├── java └── io │ └── federecio │ └── dropwizard │ └── swagger │ ├── DefaultServerTest.java │ ├── DefaultServerWithApiSelectorDisabledTest.java │ ├── DefaultServerWithApplicationContextPathAndRootPathSetTest.java │ ├── DefaultServerWithApplicationContextPathSetTest.java │ ├── DefaultServerWithAuthAndApiSelectorDisabledTest.java │ ├── DefaultServerWithAuthDisabledTest.java │ ├── DefaultServerWithContactTest.java │ ├── DefaultServerWithCustomJavascriptTest.java │ ├── DefaultServerWithCustomTemplateTest.java │ ├── DefaultServerWithNoSwaggerTest.java │ ├── DefaultServerWithPathSetProgramaticallyTest.java │ ├── DefaultServerWithRootPathSetTest.java │ ├── DefaultServerWithSwaggerResourceDisabledTest.java │ ├── DropwizardCommonTest.java │ ├── DropwizardNoSwaggerTest.java │ ├── DropwizardTest.java │ ├── SimpleServerTest.java │ ├── SimpleServerWithApplicationContextPathAndRootPathSetTest.java │ ├── SimpleServerWithApplicationContextPathSetTest.java │ ├── SimpleServerWithRootPathSetTest.java │ ├── TestApplication.java │ ├── TestApplicationWithApiSelectorDisabled.java │ ├── TestApplicationWithAssetsAndPathSetProgramatically.java │ ├── TestApplicationWithAuthAndApiSelectorDisabled.java │ ├── TestApplicationWithAuthDisabled.java │ ├── TestApplicationWithCustomJavascript.java │ ├── TestApplicationWithCustomTemplate.java │ ├── TestApplicationWithPathSetProgramatically.java │ ├── TestConfiguration.java │ └── TestResource.java └── resources ├── myassets ├── customIndex.ftl ├── customJavascript.js ├── dropwizard-logo.png └── test.html ├── test-default-assets.yaml ├── test-default-authenticated.yaml ├── test-default-contact.yaml ├── test-default-context-and-root-path.yaml ├── test-default-context-path.yaml ├── test-default-disabled.yaml ├── test-default-root-path.yaml ├── test-default-with-path-set-programatically.yaml ├── test-default-without-swagger-resource.yaml ├── test-default.yaml ├── test-simple-with-context-and-root-path.yaml ├── test-simple-with-context-path.yaml ├── test-simple-with-root-path.yaml └── test-simple.yaml /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smoketurner/dropwizard-swagger/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smoketurner/dropwizard-swagger/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smoketurner/dropwizard-swagger/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smoketurner/dropwizard-swagger/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smoketurner/dropwizard-swagger/HEAD/.github/settings.xml -------------------------------------------------------------------------------- /.github/workflows/close_stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smoketurner/dropwizard-swagger/HEAD/.github/workflows/close_stale.yml -------------------------------------------------------------------------------- /.github/workflows/maven.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smoketurner/dropwizard-swagger/HEAD/.github/workflows/maven.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smoketurner/dropwizard-swagger/HEAD/.gitignore -------------------------------------------------------------------------------- /.mvn/wrapper/MavenWrapperDownloader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smoketurner/dropwizard-swagger/HEAD/.mvn/wrapper/MavenWrapperDownloader.java -------------------------------------------------------------------------------- /.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smoketurner/dropwizard-swagger/HEAD/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smoketurner/dropwizard-swagger/HEAD/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smoketurner/dropwizard-swagger/HEAD/.travis.yml -------------------------------------------------------------------------------- /.travis_after_success.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smoketurner/dropwizard-swagger/HEAD/.travis_after_success.sh -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smoketurner/dropwizard-swagger/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smoketurner/dropwizard-swagger/HEAD/README.md -------------------------------------------------------------------------------- /maven_deploy_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smoketurner/dropwizard-swagger/HEAD/maven_deploy_settings.xml -------------------------------------------------------------------------------- /mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smoketurner/dropwizard-swagger/HEAD/mvnw -------------------------------------------------------------------------------- /mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smoketurner/dropwizard-swagger/HEAD/mvnw.cmd -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smoketurner/dropwizard-swagger/HEAD/pom.xml -------------------------------------------------------------------------------- /sample.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smoketurner/dropwizard-swagger/HEAD/sample.yml -------------------------------------------------------------------------------- /spotbugs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smoketurner/dropwizard-swagger/HEAD/spotbugs.xml -------------------------------------------------------------------------------- /src/main/java/io/federecio/dropwizard/sample/OAuth2Resource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smoketurner/dropwizard-swagger/HEAD/src/main/java/io/federecio/dropwizard/sample/OAuth2Resource.java -------------------------------------------------------------------------------- /src/main/java/io/federecio/dropwizard/sample/SampleApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smoketurner/dropwizard-swagger/HEAD/src/main/java/io/federecio/dropwizard/sample/SampleApplication.java -------------------------------------------------------------------------------- /src/main/java/io/federecio/dropwizard/sample/SampleBasicAuthenticator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smoketurner/dropwizard-swagger/HEAD/src/main/java/io/federecio/dropwizard/sample/SampleBasicAuthenticator.java -------------------------------------------------------------------------------- /src/main/java/io/federecio/dropwizard/sample/SampleConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smoketurner/dropwizard-swagger/HEAD/src/main/java/io/federecio/dropwizard/sample/SampleConfiguration.java -------------------------------------------------------------------------------- /src/main/java/io/federecio/dropwizard/sample/SampleOAuth2Authenticator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smoketurner/dropwizard-swagger/HEAD/src/main/java/io/federecio/dropwizard/sample/SampleOAuth2Authenticator.java -------------------------------------------------------------------------------- /src/main/java/io/federecio/dropwizard/sample/SampleResource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smoketurner/dropwizard-swagger/HEAD/src/main/java/io/federecio/dropwizard/sample/SampleResource.java -------------------------------------------------------------------------------- /src/main/java/io/federecio/dropwizard/sample/Saying.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smoketurner/dropwizard-swagger/HEAD/src/main/java/io/federecio/dropwizard/sample/Saying.java -------------------------------------------------------------------------------- /src/main/java/io/federecio/dropwizard/swagger/ConfigurationHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smoketurner/dropwizard-swagger/HEAD/src/main/java/io/federecio/dropwizard/swagger/ConfigurationHelper.java -------------------------------------------------------------------------------- /src/main/java/io/federecio/dropwizard/swagger/SwaggerBundle.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smoketurner/dropwizard-swagger/HEAD/src/main/java/io/federecio/dropwizard/swagger/SwaggerBundle.java -------------------------------------------------------------------------------- /src/main/java/io/federecio/dropwizard/swagger/SwaggerBundleConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smoketurner/dropwizard-swagger/HEAD/src/main/java/io/federecio/dropwizard/swagger/SwaggerBundleConfiguration.java -------------------------------------------------------------------------------- /src/main/java/io/federecio/dropwizard/swagger/SwaggerOAuth2Configuration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smoketurner/dropwizard-swagger/HEAD/src/main/java/io/federecio/dropwizard/swagger/SwaggerOAuth2Configuration.java -------------------------------------------------------------------------------- /src/main/java/io/federecio/dropwizard/swagger/SwaggerResource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smoketurner/dropwizard-swagger/HEAD/src/main/java/io/federecio/dropwizard/swagger/SwaggerResource.java -------------------------------------------------------------------------------- /src/main/java/io/federecio/dropwizard/swagger/SwaggerView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smoketurner/dropwizard-swagger/HEAD/src/main/java/io/federecio/dropwizard/swagger/SwaggerView.java -------------------------------------------------------------------------------- /src/main/java/io/federecio/dropwizard/swagger/SwaggerViewConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smoketurner/dropwizard-swagger/HEAD/src/main/java/io/federecio/dropwizard/swagger/SwaggerViewConfiguration.java -------------------------------------------------------------------------------- /src/main/resources/io/federecio/dropwizard/swagger/index.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smoketurner/dropwizard-swagger/HEAD/src/main/resources/io/federecio/dropwizard/swagger/index.ftl -------------------------------------------------------------------------------- /src/main/resources/myassets/customJavascript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smoketurner/dropwizard-swagger/HEAD/src/main/resources/myassets/customJavascript.js -------------------------------------------------------------------------------- /src/main/resources/swagger-static/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smoketurner/dropwizard-swagger/HEAD/src/main/resources/swagger-static/favicon-16x16.png -------------------------------------------------------------------------------- /src/main/resources/swagger-static/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smoketurner/dropwizard-swagger/HEAD/src/main/resources/swagger-static/favicon-32x32.png -------------------------------------------------------------------------------- /src/main/resources/swagger-static/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smoketurner/dropwizard-swagger/HEAD/src/main/resources/swagger-static/index.css -------------------------------------------------------------------------------- /src/main/resources/swagger-static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smoketurner/dropwizard-swagger/HEAD/src/main/resources/swagger-static/index.html -------------------------------------------------------------------------------- /src/main/resources/swagger-static/oauth2-redirect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smoketurner/dropwizard-swagger/HEAD/src/main/resources/swagger-static/oauth2-redirect.html -------------------------------------------------------------------------------- /src/main/resources/swagger-static/swagger-initializer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smoketurner/dropwizard-swagger/HEAD/src/main/resources/swagger-static/swagger-initializer.js -------------------------------------------------------------------------------- /src/main/resources/swagger-static/swagger-ui-bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smoketurner/dropwizard-swagger/HEAD/src/main/resources/swagger-static/swagger-ui-bundle.js -------------------------------------------------------------------------------- /src/main/resources/swagger-static/swagger-ui-bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smoketurner/dropwizard-swagger/HEAD/src/main/resources/swagger-static/swagger-ui-bundle.js.map -------------------------------------------------------------------------------- /src/main/resources/swagger-static/swagger-ui-es-bundle-core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smoketurner/dropwizard-swagger/HEAD/src/main/resources/swagger-static/swagger-ui-es-bundle-core.js -------------------------------------------------------------------------------- /src/main/resources/swagger-static/swagger-ui-es-bundle-core.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smoketurner/dropwizard-swagger/HEAD/src/main/resources/swagger-static/swagger-ui-es-bundle-core.js.map -------------------------------------------------------------------------------- /src/main/resources/swagger-static/swagger-ui-es-bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smoketurner/dropwizard-swagger/HEAD/src/main/resources/swagger-static/swagger-ui-es-bundle.js -------------------------------------------------------------------------------- /src/main/resources/swagger-static/swagger-ui-es-bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smoketurner/dropwizard-swagger/HEAD/src/main/resources/swagger-static/swagger-ui-es-bundle.js.map -------------------------------------------------------------------------------- /src/main/resources/swagger-static/swagger-ui-standalone-preset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smoketurner/dropwizard-swagger/HEAD/src/main/resources/swagger-static/swagger-ui-standalone-preset.js -------------------------------------------------------------------------------- /src/main/resources/swagger-static/swagger-ui-standalone-preset.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smoketurner/dropwizard-swagger/HEAD/src/main/resources/swagger-static/swagger-ui-standalone-preset.js.map -------------------------------------------------------------------------------- /src/main/resources/swagger-static/swagger-ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smoketurner/dropwizard-swagger/HEAD/src/main/resources/swagger-static/swagger-ui.css -------------------------------------------------------------------------------- /src/main/resources/swagger-static/swagger-ui.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smoketurner/dropwizard-swagger/HEAD/src/main/resources/swagger-static/swagger-ui.css.map -------------------------------------------------------------------------------- /src/main/resources/swagger-static/swagger-ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smoketurner/dropwizard-swagger/HEAD/src/main/resources/swagger-static/swagger-ui.js -------------------------------------------------------------------------------- /src/main/resources/swagger-static/swagger-ui.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smoketurner/dropwizard-swagger/HEAD/src/main/resources/swagger-static/swagger-ui.js.map -------------------------------------------------------------------------------- /src/test/java/io/federecio/dropwizard/swagger/DefaultServerTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smoketurner/dropwizard-swagger/HEAD/src/test/java/io/federecio/dropwizard/swagger/DefaultServerTest.java -------------------------------------------------------------------------------- /src/test/java/io/federecio/dropwizard/swagger/DefaultServerWithApiSelectorDisabledTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smoketurner/dropwizard-swagger/HEAD/src/test/java/io/federecio/dropwizard/swagger/DefaultServerWithApiSelectorDisabledTest.java -------------------------------------------------------------------------------- /src/test/java/io/federecio/dropwizard/swagger/DefaultServerWithApplicationContextPathAndRootPathSetTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smoketurner/dropwizard-swagger/HEAD/src/test/java/io/federecio/dropwizard/swagger/DefaultServerWithApplicationContextPathAndRootPathSetTest.java -------------------------------------------------------------------------------- /src/test/java/io/federecio/dropwizard/swagger/DefaultServerWithApplicationContextPathSetTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smoketurner/dropwizard-swagger/HEAD/src/test/java/io/federecio/dropwizard/swagger/DefaultServerWithApplicationContextPathSetTest.java -------------------------------------------------------------------------------- /src/test/java/io/federecio/dropwizard/swagger/DefaultServerWithAuthAndApiSelectorDisabledTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smoketurner/dropwizard-swagger/HEAD/src/test/java/io/federecio/dropwizard/swagger/DefaultServerWithAuthAndApiSelectorDisabledTest.java -------------------------------------------------------------------------------- /src/test/java/io/federecio/dropwizard/swagger/DefaultServerWithAuthDisabledTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smoketurner/dropwizard-swagger/HEAD/src/test/java/io/federecio/dropwizard/swagger/DefaultServerWithAuthDisabledTest.java -------------------------------------------------------------------------------- /src/test/java/io/federecio/dropwizard/swagger/DefaultServerWithContactTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smoketurner/dropwizard-swagger/HEAD/src/test/java/io/federecio/dropwizard/swagger/DefaultServerWithContactTest.java -------------------------------------------------------------------------------- /src/test/java/io/federecio/dropwizard/swagger/DefaultServerWithCustomJavascriptTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smoketurner/dropwizard-swagger/HEAD/src/test/java/io/federecio/dropwizard/swagger/DefaultServerWithCustomJavascriptTest.java -------------------------------------------------------------------------------- /src/test/java/io/federecio/dropwizard/swagger/DefaultServerWithCustomTemplateTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smoketurner/dropwizard-swagger/HEAD/src/test/java/io/federecio/dropwizard/swagger/DefaultServerWithCustomTemplateTest.java -------------------------------------------------------------------------------- /src/test/java/io/federecio/dropwizard/swagger/DefaultServerWithNoSwaggerTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smoketurner/dropwizard-swagger/HEAD/src/test/java/io/federecio/dropwizard/swagger/DefaultServerWithNoSwaggerTest.java -------------------------------------------------------------------------------- /src/test/java/io/federecio/dropwizard/swagger/DefaultServerWithPathSetProgramaticallyTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smoketurner/dropwizard-swagger/HEAD/src/test/java/io/federecio/dropwizard/swagger/DefaultServerWithPathSetProgramaticallyTest.java -------------------------------------------------------------------------------- /src/test/java/io/federecio/dropwizard/swagger/DefaultServerWithRootPathSetTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smoketurner/dropwizard-swagger/HEAD/src/test/java/io/federecio/dropwizard/swagger/DefaultServerWithRootPathSetTest.java -------------------------------------------------------------------------------- /src/test/java/io/federecio/dropwizard/swagger/DefaultServerWithSwaggerResourceDisabledTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smoketurner/dropwizard-swagger/HEAD/src/test/java/io/federecio/dropwizard/swagger/DefaultServerWithSwaggerResourceDisabledTest.java -------------------------------------------------------------------------------- /src/test/java/io/federecio/dropwizard/swagger/DropwizardCommonTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smoketurner/dropwizard-swagger/HEAD/src/test/java/io/federecio/dropwizard/swagger/DropwizardCommonTest.java -------------------------------------------------------------------------------- /src/test/java/io/federecio/dropwizard/swagger/DropwizardNoSwaggerTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smoketurner/dropwizard-swagger/HEAD/src/test/java/io/federecio/dropwizard/swagger/DropwizardNoSwaggerTest.java -------------------------------------------------------------------------------- /src/test/java/io/federecio/dropwizard/swagger/DropwizardTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smoketurner/dropwizard-swagger/HEAD/src/test/java/io/federecio/dropwizard/swagger/DropwizardTest.java -------------------------------------------------------------------------------- /src/test/java/io/federecio/dropwizard/swagger/SimpleServerTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smoketurner/dropwizard-swagger/HEAD/src/test/java/io/federecio/dropwizard/swagger/SimpleServerTest.java -------------------------------------------------------------------------------- /src/test/java/io/federecio/dropwizard/swagger/SimpleServerWithApplicationContextPathAndRootPathSetTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smoketurner/dropwizard-swagger/HEAD/src/test/java/io/federecio/dropwizard/swagger/SimpleServerWithApplicationContextPathAndRootPathSetTest.java -------------------------------------------------------------------------------- /src/test/java/io/federecio/dropwizard/swagger/SimpleServerWithApplicationContextPathSetTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smoketurner/dropwizard-swagger/HEAD/src/test/java/io/federecio/dropwizard/swagger/SimpleServerWithApplicationContextPathSetTest.java -------------------------------------------------------------------------------- /src/test/java/io/federecio/dropwizard/swagger/SimpleServerWithRootPathSetTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smoketurner/dropwizard-swagger/HEAD/src/test/java/io/federecio/dropwizard/swagger/SimpleServerWithRootPathSetTest.java -------------------------------------------------------------------------------- /src/test/java/io/federecio/dropwizard/swagger/TestApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smoketurner/dropwizard-swagger/HEAD/src/test/java/io/federecio/dropwizard/swagger/TestApplication.java -------------------------------------------------------------------------------- /src/test/java/io/federecio/dropwizard/swagger/TestApplicationWithApiSelectorDisabled.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smoketurner/dropwizard-swagger/HEAD/src/test/java/io/federecio/dropwizard/swagger/TestApplicationWithApiSelectorDisabled.java -------------------------------------------------------------------------------- /src/test/java/io/federecio/dropwizard/swagger/TestApplicationWithAssetsAndPathSetProgramatically.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smoketurner/dropwizard-swagger/HEAD/src/test/java/io/federecio/dropwizard/swagger/TestApplicationWithAssetsAndPathSetProgramatically.java -------------------------------------------------------------------------------- /src/test/java/io/federecio/dropwizard/swagger/TestApplicationWithAuthAndApiSelectorDisabled.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smoketurner/dropwizard-swagger/HEAD/src/test/java/io/federecio/dropwizard/swagger/TestApplicationWithAuthAndApiSelectorDisabled.java -------------------------------------------------------------------------------- /src/test/java/io/federecio/dropwizard/swagger/TestApplicationWithAuthDisabled.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smoketurner/dropwizard-swagger/HEAD/src/test/java/io/federecio/dropwizard/swagger/TestApplicationWithAuthDisabled.java -------------------------------------------------------------------------------- /src/test/java/io/federecio/dropwizard/swagger/TestApplicationWithCustomJavascript.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smoketurner/dropwizard-swagger/HEAD/src/test/java/io/federecio/dropwizard/swagger/TestApplicationWithCustomJavascript.java -------------------------------------------------------------------------------- /src/test/java/io/federecio/dropwizard/swagger/TestApplicationWithCustomTemplate.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smoketurner/dropwizard-swagger/HEAD/src/test/java/io/federecio/dropwizard/swagger/TestApplicationWithCustomTemplate.java -------------------------------------------------------------------------------- /src/test/java/io/federecio/dropwizard/swagger/TestApplicationWithPathSetProgramatically.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smoketurner/dropwizard-swagger/HEAD/src/test/java/io/federecio/dropwizard/swagger/TestApplicationWithPathSetProgramatically.java -------------------------------------------------------------------------------- /src/test/java/io/federecio/dropwizard/swagger/TestConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smoketurner/dropwizard-swagger/HEAD/src/test/java/io/federecio/dropwizard/swagger/TestConfiguration.java -------------------------------------------------------------------------------- /src/test/java/io/federecio/dropwizard/swagger/TestResource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smoketurner/dropwizard-swagger/HEAD/src/test/java/io/federecio/dropwizard/swagger/TestResource.java -------------------------------------------------------------------------------- /src/test/resources/myassets/customIndex.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smoketurner/dropwizard-swagger/HEAD/src/test/resources/myassets/customIndex.ftl -------------------------------------------------------------------------------- /src/test/resources/myassets/customJavascript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smoketurner/dropwizard-swagger/HEAD/src/test/resources/myassets/customJavascript.js -------------------------------------------------------------------------------- /src/test/resources/myassets/dropwizard-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smoketurner/dropwizard-swagger/HEAD/src/test/resources/myassets/dropwizard-logo.png -------------------------------------------------------------------------------- /src/test/resources/myassets/test.html: -------------------------------------------------------------------------------- 1 |

test asset

-------------------------------------------------------------------------------- /src/test/resources/test-default-assets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smoketurner/dropwizard-swagger/HEAD/src/test/resources/test-default-assets.yaml -------------------------------------------------------------------------------- /src/test/resources/test-default-authenticated.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smoketurner/dropwizard-swagger/HEAD/src/test/resources/test-default-authenticated.yaml -------------------------------------------------------------------------------- /src/test/resources/test-default-contact.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smoketurner/dropwizard-swagger/HEAD/src/test/resources/test-default-contact.yaml -------------------------------------------------------------------------------- /src/test/resources/test-default-context-and-root-path.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smoketurner/dropwizard-swagger/HEAD/src/test/resources/test-default-context-and-root-path.yaml -------------------------------------------------------------------------------- /src/test/resources/test-default-context-path.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smoketurner/dropwizard-swagger/HEAD/src/test/resources/test-default-context-path.yaml -------------------------------------------------------------------------------- /src/test/resources/test-default-disabled.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smoketurner/dropwizard-swagger/HEAD/src/test/resources/test-default-disabled.yaml -------------------------------------------------------------------------------- /src/test/resources/test-default-root-path.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smoketurner/dropwizard-swagger/HEAD/src/test/resources/test-default-root-path.yaml -------------------------------------------------------------------------------- /src/test/resources/test-default-with-path-set-programatically.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smoketurner/dropwizard-swagger/HEAD/src/test/resources/test-default-with-path-set-programatically.yaml -------------------------------------------------------------------------------- /src/test/resources/test-default-without-swagger-resource.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smoketurner/dropwizard-swagger/HEAD/src/test/resources/test-default-without-swagger-resource.yaml -------------------------------------------------------------------------------- /src/test/resources/test-default.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smoketurner/dropwizard-swagger/HEAD/src/test/resources/test-default.yaml -------------------------------------------------------------------------------- /src/test/resources/test-simple-with-context-and-root-path.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smoketurner/dropwizard-swagger/HEAD/src/test/resources/test-simple-with-context-and-root-path.yaml -------------------------------------------------------------------------------- /src/test/resources/test-simple-with-context-path.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smoketurner/dropwizard-swagger/HEAD/src/test/resources/test-simple-with-context-path.yaml -------------------------------------------------------------------------------- /src/test/resources/test-simple-with-root-path.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smoketurner/dropwizard-swagger/HEAD/src/test/resources/test-simple-with-root-path.yaml -------------------------------------------------------------------------------- /src/test/resources/test-simple.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smoketurner/dropwizard-swagger/HEAD/src/test/resources/test-simple.yaml --------------------------------------------------------------------------------