Skip navigation links

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

E12907-02


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

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

All Implemented Interfaces:
Serializable

public class StatusPageRequest
extends Object
implements Serializable

Status Page Request type. A status page request contains the Uri and HTTP Body that can be used to retrieve a status page.

XML Serialization

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

<?xml version="1.0" encoding="UTF-8"?>
<core:StatusPageRequest xmlns:core="http://xmlns.oracle.com/irm/core">
    <uri>http://irm.example.com/irm_desktop/status?page=LICENSE_EXPIRED</uri>
    <body>d2hhdCB3aWxsIHByaW50IG91dA==</body>
</core:StatusPageRequest>

See Also:
Serialized Form

Nested Class Summary
static class StatusPageRequest.StatusPage
          Status Page enumeration.

 

Constructor Summary
StatusPageRequest()
          No argument constructor.
StatusPageRequest(URI uri, byte[] body)
          Constructor.

 

Method Summary
 byte[] getBody()
          Status page body.
 URI getUri()
          Status page URI.
 void setBody(byte[] value)
          Status page body.
 void setUri(URI value)
          Status page URI.

 

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

 

Constructor Detail

StatusPageRequest

public StatusPageRequest()
No argument constructor.

StatusPageRequest

public StatusPageRequest(URI uri,
                         byte[] body)
Constructor.

Method Detail

getUri

public URI getUri()
Status page URI.
Returns:
the value of the property.

setUri

public void setUri(URI value)
Status page URI.
Parameters:
value - the new value for the property.

getBody

public byte[] getBody()
Status page body. This body should be placed in the HTTP request body before POSTing to the Uri.
Returns:
the value of the property.

setBody

public void setBody(byte[] value)
Status page body. This body should be placed in the HTTP request body before POSTing to the Uri.
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-02


Copyright © 2010, Oracle. All rights reserved.