-
Notifications
You must be signed in to change notification settings - Fork 140
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bag for request specific data and its support
In order to support aspect related operations such as authentication, session management etc, we need to carry a bag of arbitrary objects on the request. When integrated with Vertx, for instance, developers can assign their own authentication handler that would set some sort of auth context for the request, which we will pick up in qbit.
- Loading branch information
Showing
10 changed files
with
141 additions
and
14 deletions.
There are no files selected for viewing
55 changes: 55 additions & 0 deletions
55
qbit/core/src/main/java/io/advantageous/qbit/annotation/DataParam.java
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,55 @@ | ||
/* | ||
* Copyright (c) 2015. Rick Hightower, Geoff Chandler | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
* | ||
* QBit - The Microservice lib for Java : JSON, WebSocket, REST. Be The Web! | ||
*/ | ||
|
||
package io.advantageous.qbit.annotation; | ||
|
||
import java.lang.annotation.ElementType; | ||
import java.lang.annotation.Retention; | ||
import java.lang.annotation.RetentionPolicy; | ||
import java.lang.annotation.Target; | ||
|
||
/** | ||
* Defines a data parameter for mapping service methods to HTTP like calls. | ||
* | ||
* @author Boris Byk | ||
*/ | ||
@Retention(RetentionPolicy.RUNTIME) | ||
@Target(value = {ElementType.PARAMETER}) | ||
public @interface DataParam { | ||
|
||
/** Name of the data param. */ | ||
String value(); | ||
|
||
boolean required() default false; | ||
|
||
/** Default value. | ||
* The default value is set to AnnotationConstants.NOT_SET which is used | ||
* to indicate a default value was not set. | ||
* @return default value | ||
*/ | ||
String defaultValue() default AnnotationConstants.NOT_SET; | ||
|
||
|
||
/** | ||
* Used to document endpoint | ||
* @return description | ||
*/ | ||
String description() default "no description"; | ||
|
||
|
||
} |
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
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
31 changes: 31 additions & 0 deletions
31
qbit/core/src/main/java/io/advantageous/qbit/meta/params/DataParam.java
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,31 @@ | ||
/* | ||
* Copyright (c) 2015. Rick Hightower, Geoff Chandler | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
* | ||
* QBit - The Microservice lib for Java : JSON, WebSocket, REST. Be The Web! | ||
*/ | ||
package io.advantageous.qbit.meta.params; | ||
|
||
|
||
/** | ||
* Holds meta data about a body where a header represents a single argument to a method. | ||
*/ | ||
public class DataParam extends NamedParam { | ||
|
||
|
||
public DataParam(final boolean required, final String name, Object defaultValue, | ||
final String description) { | ||
super(required, name, defaultValue, ParamType.DATA, description); | ||
} | ||
} |
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
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
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