Class: Ronin::DB::HTTPHeaderName
- Inherits:
-
ActiveRecord::Base
- Object
- ActiveRecord::Base
- Ronin::DB::HTTPHeaderName
- Includes:
- Model, Model::HasUniqueName
- Defined in:
- lib/ronin/db/http_header_name.rb
Overview
Represents a HTTP request or response Header name.
Instance Attribute Summary collapse
-
#http_request_headers ⇒ Array<HTTPRequestHeader>
The associated HTTP request headers.
-
#http_requests ⇒ Array<HTTPRequest>
The HTTP requests which contain this HTTP Header name.
-
#http_response_headers ⇒ Array<HTTPResponseHeader>
The associated HTTP response headers.
-
#http_responses ⇒ Array<HTTPResponse>
The HTTP responses which contain this HTTP Header name.
-
#id ⇒ Integer
The primary key of the HTTP header name.
-
#name ⇒ String
The Header name.
Method Summary
Methods included from Model::HasUniqueName
Methods included from Model
Instance Attribute Details
#http_request_headers ⇒ Array<HTTPRequestHeader>
The associated HTTP request headers.
53 |
# File 'lib/ronin/db/http_header_name.rb', line 53 has_many :http_request_headers |
#http_requests ⇒ Array<HTTPRequest>
The HTTP requests which contain this HTTP Header name.
59 |
# File 'lib/ronin/db/http_header_name.rb', line 59 has_many :http_requests, through: :http_request_headers |
#http_response_headers ⇒ Array<HTTPResponseHeader>
The associated HTTP response headers.
65 |
# File 'lib/ronin/db/http_header_name.rb', line 65 has_many :http_response_headers |
#http_responses ⇒ Array<HTTPResponse>
The HTTP responses which contain this HTTP Header name.
71 |
# File 'lib/ronin/db/http_header_name.rb', line 71 has_many :http_responses, through: :http_response_headers |
#id ⇒ Integer
The primary key of the HTTP header name.
40 |
# File 'lib/ronin/db/http_header_name.rb', line 40 attribute :id, :integer |
#name ⇒ String
The Header name.
46 |
# File 'lib/ronin/db/http_header_name.rb', line 46 attribute :name, :string |