|
activemq-cpp-3.9.0
|
Basic type object that holds data that composes a given URL. More...
#include <src/main/decaf/internal/net/URLType.h>
Public Member Functions | |
| URLType () | |
| virtual | ~URLType () |
| decaf::lang::String | getFile () const |
| Gets the File of the URL. More... | |
| void | setFile (const decaf::lang::String &file) |
| Sets the File of the URL. More... | |
| decaf::lang::String | getProtocol () const |
| Gets the protocol of the URL, e.g. More... | |
| void | setProtocol (const decaf::lang::String &protocol) |
| Sets the protocol of the URL, e.g. More... | |
| decaf::lang::String | getAuthority () const |
| Gets the Authority of the URL. More... | |
| void | setAuthority (const decaf::lang::String &authority) |
| Sets the Authority of the URL. More... | |
| decaf::lang::String | getUserInfo () const |
| Gets the user info part of the URL, e.g. More... | |
| void | setUserInfo (const decaf::lang::String &userInfo) |
| Sets the user info part of the URL, e.g. More... | |
| decaf::lang::String | getHost () const |
| Gets the Host name part of the URL. More... | |
| void | setHost (const decaf::lang::String &host) |
| Sets the Host name part of the URL. More... | |
| int | getPort () const |
| Gets the port part of the URL. More... | |
| void | setPort (int port) |
| Sets the port part of the URL. More... | |
| decaf::lang::String | getPath () const |
| Gets the Path part of the URL. More... | |
| void | setPath (const decaf::lang::String &path) |
| Sets the Path part of the URL. More... | |
| decaf::lang::String | getQuery () const |
| Gets the Query part of the URL. More... | |
| void | setQuery (const decaf::lang::String &query) |
| Sets the Query part of the URL. More... | |
| decaf::lang::String | getRef () const |
| Gets the Ref part of the URL. More... | |
| void | setRef (const decaf::lang::String &ref) |
| Sets the Ref part of the URL. More... | |
| int | getHashCode () const |
| Gets the computed hashCode for this URLType or return -1 if non is set. More... | |
| void | setHashCode (int hashCode) |
| Sets the hash code for this URLType instance. More... | |
Basic type object that holds data that composes a given URL.
| decaf::internal::net::URLType::URLType | ( | ) |
|
virtual |
|
inline |
Gets the Authority of the URL.
|
inline |
Gets the File of the URL.
|
inline |
|
inline |
Gets the Host name part of the URL.
|
inline |
Gets the Path part of the URL.
|
inline |
Gets the port part of the URL.
|
inline |
Gets the protocol of the URL, e.g.
protocol ("http"/"ftp"/...).
|
inline |
Gets the Query part of the URL.
|
inline |
Gets the Ref part of the URL.
|
inline |
Gets the user info part of the URL, e.g.
user name, as in http://user:passwd@host:port/
|
inline |
Sets the Authority of the URL.
| authority | Authority part string. |
|
inline |
Sets the File of the URL.
| File | Authority part string. |
|
inline |
|
inline |
Sets the Host name part of the URL.
| host | - Host name part string. |
|
inline |
Sets the Path part of the URL.
| path | - Path part string. |
|
inline |
Sets the port part of the URL.
| port | - port part string, -1 if not set. |
|
inline |
Sets the protocol of the URL, e.g.
protocol ("http"/"ftp"/...).
| protocol | - protocol part string. |
|
inline |
Sets the Query part of the URL.
| query | - Query part string. |
|
inline |
Sets the Ref part of the URL.
| ref | - Ref part string. |
|
inline |
Sets the user info part of the URL, e.g.
user name, as in http://user:passwd@host:port/
| userInfo | - user info part string. |