Class: VertxAuthOauth2::OAuth2Response
- Inherits:
-
Object
- Object
- VertxAuthOauth2::OAuth2Response
show all
- Defined in:
- /Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-auth-oauth2/o_auth2_response.rb
Overview
A response from a fetch request.
This class represents a secure response from a Oauth2 fetch call.
A fetch is a simplified HTTP response from a protected resource.
Constant Summary
- @@j_api_type =
Object.new
Class Method Summary
(collapse)
Instance Method Summary
(collapse)
Class Method Details
+ (Boolean) accept?(obj)
23
24
25
|
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-auth-oauth2/o_auth2_response.rb', line 23
def @@j_api_type.accept?(obj)
obj.class == OAuth2Response
end
|
+ (Object) j_api_type
32
33
34
|
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-auth-oauth2/o_auth2_response.rb', line 32
def self.j_api_type
@@j_api_type
end
|
+ (Object) j_class
35
36
37
|
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-auth-oauth2/o_auth2_response.rb', line 35
def self.j_class
Java::IoVertxExtAuthOauth2::OAuth2Response.java_class
end
|
+ (Object) unwrap(obj)
29
30
31
|
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-auth-oauth2/o_auth2_response.rb', line 29
def @@j_api_type.unwrap(obj)
obj.j_del
end
|
+ (Object) wrap(obj)
26
27
28
|
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-auth-oauth2/o_auth2_response.rb', line 26
def @@j_api_type.wrap(obj)
OAuth2Response.new(obj)
end
|
Instance Method Details
The HTTP response body as a buffer
66
67
68
69
70
71
|
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-auth-oauth2/o_auth2_response.rb', line 66
def body
if !block_given?
return ::Vertx::Util::Utils.safe_create(@j_del.java_method(:body, []).call(),::Vertx::Buffer)
end
raise ArgumentError, "Invalid arguments when calling body()"
end
|
Looks up a HTTP response header by name, in case where the response is a list of headers,
the first one is returned.
58
59
60
61
62
63
|
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-auth-oauth2/o_auth2_response.rb', line 58
def (name=nil)
if name.class == String && !block_given?
return @j_del.java_method(:getHeader, [Java::java.lang.String.java_class]).call(name)
end
raise ArgumentError, "Invalid arguments when calling get_header(#{name})"
end
|
The HTTP response headers from the HTTP layer.
48
49
50
51
52
53
|
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-auth-oauth2/o_auth2_response.rb', line 48
def
if !block_given?
return ::Vertx::Util::Utils.safe_create(@j_del.java_method(:headers, []).call(),::Vertx::MultiMap)
end
raise ArgumentError, "Invalid arguments when calling headers()"
end
|
- (true, false) is?(contentType = nil)
Helper to analize the response body. The test is performed against the header Content-Type,
the content of the body is not analyzed.
92
93
94
95
96
97
|
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-auth-oauth2/o_auth2_response.rb', line 92
def is?(contentType=nil)
if contentType.class == String && !block_given?
return @j_del.java_method(:is, [Java::java.lang.String.java_class]).call(contentType)
end
raise ArgumentError, "Invalid arguments when calling is?(#{contentType})"
end
|
- (Array<String,Object>) json_array
The HTTP response body as a JsonArray
82
83
84
85
86
87
|
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-auth-oauth2/o_auth2_response.rb', line 82
def json_array
if !block_given?
return @j_del.java_method(:jsonArray, []).call() != nil ? JSON.parse(@j_del.java_method(:jsonArray, []).call().encode) : nil
end
raise ArgumentError, "Invalid arguments when calling json_array()"
end
|
- (Hash{String => Object}) json_object
The HTTP response body as a JsonObject
74
75
76
77
78
79
|
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-auth-oauth2/o_auth2_response.rb', line 74
def json_object
if !block_given?
return @j_del.java_method(:jsonObject, []).call() != nil ? JSON.parse(@j_del.java_method(:jsonObject, []).call().encode) : nil
end
raise ArgumentError, "Invalid arguments when calling json_object()"
end
|
- (Fixnum) status_code
the returned status code from the HTTP layer.
40
41
42
43
44
45
|
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-auth-oauth2/o_auth2_response.rb', line 40
def status_code
if !block_given?
return @j_del.java_method(:statusCode, []).call()
end
raise ArgumentError, "Invalid arguments when calling status_code()"
end
|