Class: VertxWeb::BasicAuthHandler
- Inherits:
-
Object
- Object
- VertxWeb::BasicAuthHandler
show all
- Includes:
- AuthHandler
- Defined in:
- /Users/julien/java/vertx-stack/stack-docs/target/rb/vertx-web/basic_auth_handler.rb
Overview
An auth handler that provides HTTP Basic Authentication support.
Constant Summary
- @@j_api_type =
Object.new
Class Method Summary
(collapse)
Instance Method Summary
(collapse)
Class Method Details
+ (Boolean) accept?(obj)
21
22
23
|
# File '/Users/julien/java/vertx-stack/stack-docs/target/rb/vertx-web/basic_auth_handler.rb', line 21
def @@j_api_type.accept?(obj)
obj.class == BasicAuthHandler
end
|
Create a basic auth handler, specifying realm
68
69
70
71
72
73
74
75
|
# File '/Users/julien/java/vertx-stack/stack-docs/target/rb/vertx-web/basic_auth_handler.rb', line 68
def self.create(authProvider=nil,realm=nil)
if authProvider.class.method_defined?(:j_del) && !block_given? && realm == nil
return ::Vertx::Util::Utils.safe_create(Java::IoVertxExtWebHandler::BasicAuthHandler.java_method(:create, [Java::IoVertxExtAuth::AuthProvider.java_class]).call(authProvider.j_del),::VertxWeb::AuthHandlerImpl)
elsif authProvider.class.method_defined?(:j_del) && realm.class == String && !block_given?
return ::Vertx::Util::Utils.safe_create(Java::IoVertxExtWebHandler::BasicAuthHandler.java_method(:create, [Java::IoVertxExtAuth::AuthProvider.java_class,Java::java.lang.String.java_class]).call(authProvider.j_del,realm),::VertxWeb::AuthHandlerImpl)
end
raise ArgumentError, "Invalid arguments when calling create(#{authProvider},#{realm})"
end
|
+ (Object) j_api_type
30
31
32
|
# File '/Users/julien/java/vertx-stack/stack-docs/target/rb/vertx-web/basic_auth_handler.rb', line 30
def self.j_api_type
@@j_api_type
end
|
+ (Object) j_class
33
34
35
|
# File '/Users/julien/java/vertx-stack/stack-docs/target/rb/vertx-web/basic_auth_handler.rb', line 33
def self.j_class
Java::IoVertxExtWebHandler::BasicAuthHandler.java_class
end
|
+ (Object) unwrap(obj)
27
28
29
|
# File '/Users/julien/java/vertx-stack/stack-docs/target/rb/vertx-web/basic_auth_handler.rb', line 27
def @@j_api_type.unwrap(obj)
obj.j_del
end
|
+ (Object) wrap(obj)
24
25
26
|
# File '/Users/julien/java/vertx-stack/stack-docs/target/rb/vertx-web/basic_auth_handler.rb', line 24
def @@j_api_type.wrap(obj)
BasicAuthHandler.new(obj)
end
|
Instance Method Details
- (self) add_authorities(authorities = nil)
Add a set of required authorities for this auth handler
57
58
59
60
61
62
63
|
# File '/Users/julien/java/vertx-stack/stack-docs/target/rb/vertx-web/basic_auth_handler.rb', line 57
def add_authorities(authorities=nil)
if authorities.class == Set && !block_given?
@j_del.java_method(:addAuthorities, [Java::JavaUtil::Set.java_class]).call(Java::JavaUtil::LinkedHashSet.new(authorities.map { |element| element }))
return self
end
raise ArgumentError, "Invalid arguments when calling add_authorities(#{authorities})"
end
|
- (self) add_authority(authority = nil)
Add a required authority for this auth handler
47
48
49
50
51
52
53
|
# File '/Users/julien/java/vertx-stack/stack-docs/target/rb/vertx-web/basic_auth_handler.rb', line 47
def add_authority(authority=nil)
if authority.class == String && !block_given?
@j_del.java_method(:addAuthority, [Java::java.lang.String.java_class]).call(authority)
return self
end
raise ArgumentError, "Invalid arguments when calling add_authority(#{authority})"
end
|
- (void) handle(arg0 = nil)
This method returns an undefined value.
38
39
40
41
42
43
|
# File '/Users/julien/java/vertx-stack/stack-docs/target/rb/vertx-web/basic_auth_handler.rb', line 38
def handle(arg0=nil)
if arg0.class.method_defined?(:j_del) && !block_given?
return @j_del.java_method(:handle, [Java::IoVertxExtWeb::RoutingContext.java_class]).call(arg0.j_del)
end
raise ArgumentError, "Invalid arguments when calling handle(#{arg0})"
end
|