Skip to content

Commit

Permalink
changing apiteam@wordnik.com to apiteam@swagger.io in 10 files
Browse files Browse the repository at this point in the history
  • Loading branch information
emckean committed Mar 26, 2015
1 parent 9d9f252 commit 0ad1e7e
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 10 deletions.
Expand Up @@ -6,7 +6,7 @@
"title": "Swagger Petstore",
"termsOfService": "http://helloreverb.com/terms/",
"contact": {
"name": "apiteam@wordnik.com"
"name": "apiteam@swagger.io"
},
"license": {
"name": "Apache 2.0",
Expand Down
Expand Up @@ -30,7 +30,7 @@ http://www.springframework.org/schema/beans http://www.springframework.org/schem
<property name="basePath" value="http://localhost:8080/java-grails2/api"/>
<property name="title" value="Petstore sample app"/>
<property name="description" value="This is a app."/>
<property name="contact" value="apiteam@wordnik.com"/>
<property name="contact" value="apiteam@swagger.io"/>
<property name="license" value="Apache 2.0 License"/>
<property name="licenseUrl" value="http://www.apache.org/licenses/LICENSE-2.0.html"/>
<property name="scan" value="true"/>
Expand Down
Expand Up @@ -45,7 +45,7 @@
<property name="basePath" value="/api"/>
<property name="title" value="Petstore sample app"/>
<property name="description" value="This is a app."/>
<property name="contact" value="apiteam@wordnik.com"/>
<property name="contact" value="apiteam@swagger.io"/>
<property name="license" value="Apache 2.0 License"/>
<property name="licenseUrl" value="http://www.apache.org/licenses/LICENSE-2.0.html"/>
<!-- <property name="filterClass" value="com.wordnik.swagger.sample.util.ApiAuthorizationFilterImpl"/> -->
Expand Down
Expand Up @@ -25,7 +25,7 @@ class ResourceListingIT extends FlatSpec with Matchers {
info.getVersion() should be ("1.0.0")
info.getTitle() should be ("Petstore sample app")
info.getContact() should not be (null)
info.getContact().getName() should be ("apiteam@wordnik.com")
info.getContact().getName() should be ("apiteam@swagger.io")
info.getLicense() should not be (null)
info.getLicense().getName() should be ("Apache 2.0 License")
}
Expand Down
Expand Up @@ -24,7 +24,7 @@ public void init(ServletConfig config) throws ServletException {
"you can use the api key \"special-key\" to test the authorization filters")
.termsOfService("http://helloreverb.com/terms/")
.contact(new Contact()
.email("apiteam@wordnik.com"))
.email("apiteam@swagger.io"))
.license(new License()
.name("Apache 2.0")
.url("http://www.apache.org/licenses/LICENSE-2.0.html"));
Expand Down
Expand Up @@ -27,7 +27,7 @@ class ResourceListingIT extends FlatSpec with Matchers {
info.getVersion() should be ("1.0.0")
info.getTitle() should be ("Petstore sample app")
info.getContact() should not be (null)
info.getContact().getName() should be ("apiteam@wordnik.com")
info.getContact().getName() should be ("apiteam@swagger.io")
info.getLicense() should not be (null)
info.getLicense().getName() should be ("Apache 2.0 License")
}
Expand Down
Expand Up @@ -19,7 +19,7 @@ public void init(ServletConfig config) throws ServletException {
"you can use the api key \"special-key\" to test the authorization filters")
.termsOfService("http://helloreverb.com/terms/")
.contact(new Contact()
.email("apiteam@wordnik.com"))
.email("apiteam@swagger.io"))
.license(new License()
.name("Apache 2.0")
.url("http://www.apache.org/licenses/LICENSE-2.0.html"));
Expand Down
2 changes: 1 addition & 1 deletion samples/java-jaxrs/src/test/scala/ResourceListingIT.scala
Expand Up @@ -27,7 +27,7 @@ class ResourceListingIT extends FlatSpec with Matchers {
info.getVersion() should be ("1.0.0")
info.getTitle() should be ("Petstore sample app")
info.getContact() should not be (null)
info.getContact().getName() should be ("apiteam@wordnik.com")
info.getContact().getName() should be ("apiteam@swagger.io")
info.getLicense() should not be (null)
info.getLicense().getName() should be ("Apache 2.0 License")
}
Expand Down
Expand Up @@ -19,7 +19,7 @@ public void init(ServletConfig config) throws ServletException {
"you can use the api key \"special-key\" to test the authorization filters")
.termsOfService("http://helloreverb.com/terms/")
.contact(new Contact()
.email("apiteam@wordnik.com"))
.email("apiteam@swagger.io"))
.license(new License()
.name("Apache 2.0")
.url("http://www.apache.org/licenses/LICENSE-2.0.html"));
Expand Down
Expand Up @@ -19,7 +19,7 @@ public void init(ServletConfig config) throws ServletException {
"you can use the api key \"special-key\" to test the authorization filters")
.termsOfService("http://helloreverb.com/terms/")
.contact(new Contact()
.email("apiteam@wordnik.com"))
.email("apiteam@swagger.io"))
.license(new License()
.name("Apache 2.0")
.url("http://www.apache.org/licenses/LICENSE-2.0.html"));
Expand Down

0 comments on commit 0ad1e7e

Please sign in to comment.