Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
S
spring-cloud-netflix
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
openSource
spring-cloud-netflix
Commits
17484fad
Commit
17484fad
authored
Jan 15, 2015
by
Dave Syer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use Enum.valueOf() instead of case switch
Fixes gh-156
parent
6e078a88
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
13 deletions
+7
-13
RibbonRoutingFilter.java
...cloud/netflix/zuul/filters/route/RibbonRoutingFilter.java
+7
-13
No files found.
spring-cloud-netflix-core/src/main/java/org/springframework/cloud/netflix/zuul/filters/route/RibbonRoutingFilter.java
View file @
17484fad
...
@@ -168,27 +168,21 @@ public class RibbonRoutingFilter extends ZuulFilter {
...
@@ -168,27 +168,21 @@ public class RibbonRoutingFilter extends ZuulFilter {
return
requestEntity
;
return
requestEntity
;
}
}
Verb
getVerb
(
HttpServletRequest
request
)
{
private
Verb
getVerb
(
HttpServletRequest
request
)
{
String
sMethod
=
request
.
getMethod
();
String
sMethod
=
request
.
getMethod
();
return
getVerb
(
sMethod
);
return
getVerb
(
sMethod
);
}
}
Verb
getVerb
(
String
sMethod
)
{
private
Verb
getVerb
(
String
sMethod
)
{
if
(
sMethod
==
null
)
if
(
sMethod
==
null
)
return
Verb
.
GET
;
return
Verb
.
GET
;
sMethod
=
sMethod
.
toLowerCase
();
try
{
if
(
sMethod
.
equals
(
"post"
))
return
Verb
.
valueOf
(
sMethod
.
toUpperCase
());
return
Verb
.
POST
;
}
if
(
sMethod
.
equals
(
"put"
))
catch
(
IllegalArgumentException
e
)
{
return
Verb
.
PUT
;
if
(
sMethod
.
equals
(
"delete"
))
return
Verb
.
DELETE
;
if
(
sMethod
.
equals
(
"options"
))
return
Verb
.
OPTIONS
;
if
(
sMethod
.
equals
(
"head"
))
return
Verb
.
HEAD
;
return
Verb
.
GET
;
return
Verb
.
GET
;
}
}
}
private
void
setResponse
(
HttpResponse
resp
)
throws
ClientException
,
IOException
{
private
void
setResponse
(
HttpResponse
resp
)
throws
ClientException
,
IOException
{
helper
.
setResponse
(
resp
.
getStatus
(),
helper
.
setResponse
(
resp
.
getStatus
(),
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment