Consider Context naming
See original GitHub issueCurrent
ctx.param("service-id") // path parameter
ctx.queryParam("service-id") // query parameter
ctx.formParam("service-id") // form parameter
Maybe
ctx.pathParam("service-id") // path parameter
ctx.queryParam("service-id") // query parameter
ctx.formParam("service-id") // form parameter
Or
ctx.path("service-id") // path parameter
ctx.query("service-id") // query parameter
ctx.form("service-id") // form parameter
Issue Analytics
- State:
- Created 5 years ago
- Comments:8 (3 by maintainers)
Top Results From Across the Web
Naming Context - Wikipedia
Active Directory naming context (NC) or directory partition, is a logical portion of the Microsoft's Active Directory (AD).
Read more >Naming Context - an overview | ScienceDirect Topics
The configuration naming context holds configuration information from your environment (including information about the configuration of Exchange). The ...
Read more >How to Improve on Naming Contexts in Domain-Driven Design
An in-depth look at how to tackle naming bounded contexts when utilizing domain-driven design architecture.
Read more >asp.net - What, exactly, is the "Context" naming convention
I am trying to define when to name a class as a Context and I am having a very difficult time. Could someone...
Read more >Context (Java Platform SE 7 ) - Oracle Help Center
This interface represents a naming context, which consists of a set of name-to-object bindings. It contains methods for examining and updating these ...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
I’m also for:
But if we change it, we should also be change WsSession.kt to have a consistent format.
I’m fine with this, I also prefer empty collections (at least in Java). I think I just returned null because that’s what the underlying request did.