-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
More HTTP refactoring for different content types
- Loading branch information
Showing
3 changed files
with
70 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
package convex.api; | ||
|
||
/** | ||
* MIME content types used for peer-to=peer communication | ||
*/ | ||
public class ContentTypes { | ||
|
||
/** | ||
* Content type for plain test | ||
*/ | ||
public static final String TEXT="text/plain"; | ||
|
||
/** | ||
* Content type for JSON | ||
*/ | ||
public static final String JSON="application/json"; | ||
|
||
/** | ||
* Content type for CVX Readable format | ||
*/ | ||
public static final String CVX="application/cvx"; | ||
|
||
/** | ||
* Content type for CVX raw encoding | ||
*/ | ||
public static final String CVX_RAW="application/cvx-raw"; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters