You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@brooklyn.apache.org by he...@apache.org on 2015/11/13 03:08:54 UTC

[05/11] incubator-brooklyn git commit: Fix mime-type typo

Fix mime-type typo


Project: http://git-wip-us.apache.org/repos/asf/incubator-brooklyn/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-brooklyn/commit/434588f8
Tree: http://git-wip-us.apache.org/repos/asf/incubator-brooklyn/tree/434588f8
Diff: http://git-wip-us.apache.org/repos/asf/incubator-brooklyn/diff/434588f8

Branch: refs/heads/master
Commit: 434588f817895fe7e58b36b79d8c9ad9ffae355f
Parents: f0612bd
Author: Ciprian Ciubotariu <ch...@gmx.net>
Authored: Thu Nov 12 19:43:40 2015 +0200
Committer: Ciprian Ciubotariu <ch...@gmx.net>
Committed: Thu Nov 12 19:43:40 2015 +0200

----------------------------------------------------------------------
 .../src/main/java/org/apache/brooklyn/rest/api/ServerApi.java    | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-brooklyn/blob/434588f8/usage/rest-api/src/main/java/org/apache/brooklyn/rest/api/ServerApi.java
----------------------------------------------------------------------
diff --git a/usage/rest-api/src/main/java/org/apache/brooklyn/rest/api/ServerApi.java b/usage/rest-api/src/main/java/org/apache/brooklyn/rest/api/ServerApi.java
index 84e7102..ef4fe5d 100644
--- a/usage/rest-api/src/main/java/org/apache/brooklyn/rest/api/ServerApi.java
+++ b/usage/rest-api/src/main/java/org/apache/brooklyn/rest/api/ServerApi.java
@@ -50,9 +50,9 @@ import com.wordnik.swagger.core.ApiParam;
 @Beta
 public interface ServerApi {
 
-    public final String MIME_TYPE_ZIP = "applicaiton/zip";
+    public final String MIME_TYPE_ZIP = "application/zip";
     // TODO support TGZ, and check mime type
-    public final String MIME_TYPE_TGZ = "applicaiton/gzip";
+    public final String MIME_TYPE_TGZ = "application/gzip";
     
     @POST
     @Path("/properties/reload")