Skip navigation links

Oracle® Information Rights Management Server Java API Reference
11g Release 1 (11.1.1)

E12907-01


oracle.irm.engine.types.core.status
Class StatusPageRedirectTarget

java.lang.Object
  extended by oracle.irm.engine.types.core.status.StatusPageRedirectTarget

All Implemented Interfaces:
Serializable

public class StatusPageRedirectTarget
extends Object
implements Serializable

Status Page Redirect Target type. The redirect target contains the information required to redirect a status page request to another location.

XML Serialization

Status Page Redirect Target instances can be serialized as an XML document. This XML document can also be used to recreate a Status Page Redirect Target object. The following XML document shows an example Status Page Redirect Target in XML form.

<?xml version="1.0" encoding="UTF-8"?>
<core:StatusPageRedirectTarget xmlns:core="http://xmlns.oracle.com/irm/core">
    <uri>http://irm.example.com/status</uri>
    <method>GET</method>
</core:StatusPageRedirectTarget>

See Also:
Serialized Form

Nested Class Summary
static class StatusPageRedirectTarget.HTTPMethod
          HTTP Method enumeration.

 

Constructor Summary
StatusPageRedirectTarget()
          No argument constructor.
StatusPageRedirectTarget(URI uri, StatusPageRedirectTarget.HTTPMethod method)
          Constructor.

 

Method Summary
 StatusPageRedirectTarget.HTTPMethod getMethod()
          The redirection method to use.
 URI getUri()
          The redirection URI.
 void setMethod(StatusPageRedirectTarget.HTTPMethod value)
          The redirection method to use.
 void setUri(URI value)
          The redirection URI.

 

Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait

 

Constructor Detail

StatusPageRedirectTarget

public StatusPageRedirectTarget()
No argument constructor.

StatusPageRedirectTarget

public StatusPageRedirectTarget(URI uri,
                                StatusPageRedirectTarget.HTTPMethod method)
Constructor.

Method Detail

getUri

public URI getUri()
The redirection URI.
Returns:
the value of the property.

setUri

public void setUri(URI value)
The redirection URI.
Parameters:
value - the new value for the property.

getMethod

public StatusPageRedirectTarget.HTTPMethod getMethod()
The redirection method to use. The HTTP method that will be used to perform the redirection.
Returns:
the value of the property.

setMethod

public void setMethod(StatusPageRedirectTarget.HTTPMethod value)
The redirection method to use. The HTTP method that will be used to perform the redirection.
Parameters:
value - the new value for the property.

Skip navigation links

Oracle® Information Rights Management Server Java API Reference
11g Release 1 (11.1.1)

E12907-01


Copyright © 2010, Oracle. All rights reserved.