Class HttpRedirectTarget
- java.lang.Object
-
- com.oracle.bmc.http.client.internal.ExplicitlySetBmcModel
-
- com.oracle.bmc.waas.model.HttpRedirectTarget
-
@Generated(value="OracleSDKGenerator", comments="API Version: 20181116") public final class HttpRedirectTarget extends com.oracle.bmc.http.client.internal.ExplicitlySetBmcModel
Note: Objects should always be created or deserialized using theHttpRedirectTarget.Builder
.This model distinguishes fields that are null because they are unset from fields that are explicitly set to null. This is done in the setter methods of the
HttpRedirectTarget.Builder
, which maintain a set of all explicitly set fields calledHttpRedirectTarget.Builder.__explicitlySet__
. ThehashCode()
andequals(Object)
methods are implemented to take the explicitly set fields into account. The constructor, on the other hand, does not take the explicitly set fields into account (since the constructor cannot distinguish explicit null from unset null).
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
HttpRedirectTarget.Builder
static class
HttpRedirectTarget.Protocol
The protocol used for the target, http or https.
-
Constructor Summary
Constructors Constructor Description HttpRedirectTarget(HttpRedirectTarget.Protocol protocol, String host, Integer port, String path, String query)
Deprecated.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static HttpRedirectTarget.Builder
builder()
Create a new builder.boolean
equals(Object o)
String
getHost()
The host portion of the redirect.String
getPath()
The path component of the target URL (e.g., “/path/to/resource” in “https://target.example.com/path/to/resource?redirected”), which can be empty, static, or request-copying, or request-prefixing.Integer
getPort()
Port number of the target destination of the redirect, default to match protocolHttpRedirectTarget.Protocol
getProtocol()
The protocol used for the target, http or https.String
getQuery()
The query component of the target URL (e.g., “?redirected” in “https://target.example.com/path/to/resource?redirected”), which can be empty, static, or request-copying.int
hashCode()
HttpRedirectTarget.Builder
toBuilder()
String
toString()
String
toString(boolean includeByteArrayContents)
Return a string representation of the object.
-
-
-
Constructor Detail
-
HttpRedirectTarget
@Deprecated @ConstructorProperties({"protocol","host","port","path","query"}) public HttpRedirectTarget(HttpRedirectTarget.Protocol protocol, String host, Integer port, String path, String query)
Deprecated.
-
-
Method Detail
-
builder
public static HttpRedirectTarget.Builder builder()
Create a new builder.
-
toBuilder
public HttpRedirectTarget.Builder toBuilder()
-
getProtocol
public HttpRedirectTarget.Protocol getProtocol()
The protocol used for the target, http or https.- Returns:
- the value
-
getHost
public String getHost()
The host portion of the redirect.- Returns:
- the value
-
getPort
public Integer getPort()
Port number of the target destination of the redirect, default to match protocol- Returns:
- the value
-
getPath
public String getPath()
The path component of the target URL (e.g., “/path/to/resource” in “https://target.example.com/path/to/resource?redirected”), which can be empty, static, or request-copying, or request-prefixing.Use of \ is not permitted except to escape a following \, {, or }. An empty value is treated the same as static “/”. A static value must begin with a leading “/”, optionally followed by other path characters. A request-copying value must exactly match “{path}”, and will be replaced with the path component of the request URL (including its initial “/”). A request-prefixing value must start with “/” and end with a non-escaped “{path}”, which will be replaced with the path component of the request URL (including its initial “/”). Only one such replacement token is allowed.
- Returns:
- the value
-
getQuery
public String getQuery()
The query component of the target URL (e.g., “?redirected” in “https://target.example.com/path/to/resource?redirected”), which can be empty, static, or request-copying.Use of \ is not permitted except to escape a following \, {, or }. An empty value results in a redirection target URL with no query component. A static value must begin with a leading “?”, optionally followed by other query characters. A request-copying value must exactly match “{query}”, and will be replaced with the query component of the request URL (including a leading “?” if and only if the request URL includes a query component).
- Returns:
- the value
-
toString
public String toString()
- Overrides:
toString
in classcom.oracle.bmc.http.client.internal.ExplicitlySetBmcModel
-
toString
public String toString(boolean includeByteArrayContents)
Return a string representation of the object.- Parameters:
includeByteArrayContents
- true to include the full contents of byte arrays- Returns:
- string representation
-
equals
public boolean equals(Object o)
- Overrides:
equals
in classcom.oracle.bmc.http.client.internal.ExplicitlySetBmcModel
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classcom.oracle.bmc.http.client.internal.ExplicitlySetBmcModel
-
-