Skip navigation links

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

E12907-03


oracle.irm.engine.core.status
Interface StatusPageRedirectTarget


public interface StatusPageRedirectTarget

A status page direct target. The redirect target contains the information required to redirect a status page request to another location.

Creation

Instances of Status Page Redirect Target objects can be created using the following factory style method(s).

StatusPageRedirectTarget object = createStatusPageRedirectTarget(
    uri,
    method);

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>


Nested Class Summary
static class StatusPageRedirectTarget.HTTPMethod
          The HTTP method.

 

Method Summary
 StatusPageRedirectTarget.HTTPMethod getMethod()
          The redirection method to use.
 URI getUri()
          The redirection URI.

 

Method Detail

getUri

URI getUri()
The redirection URI.
Returns:
the value of the property. This method will never return null.

getMethod

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. This method will never return null.

Skip navigation links

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

E12907-03


Copyright © 2011, Oracle. All rights reserved.