Skip navigation links

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

E12907-01


oracle.irm.engine.core.desktop
Interface DesktopApplication


public interface DesktopApplication

A desktop application. The desktop may run many applications that use the IRM product. The desktop application is used to identify which application is making a request.

Creation

Instances of Desktop Application objects can be created using the following factory style method(s).

DesktopApplication object = createDesktopApplication(name);
DesktopApplication object = createDesktopApplication(
    name,
    container);

XML Serialization

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

<?xml version="1.0" encoding="UTF-8"?>
<core:DesktopApplication xmlns:core="http://xmlns.oracle.com/irm/core">
    <name>desktop</name>
    <container>browser</container>
</core:DesktopApplication>


Method Summary
 String getContainer()
          The container name.
 String getName()
          The application name.

 

Method Detail

getName

String getName()
The application name. An unique name to identify the application.
Returns:
the value of the property. This method will never return null.

getContainer

String getContainer()
The container name. The container application can be considered the application hosting the desktop logic - such as a browser or word processor.
Returns:
the value of the property. This method can return null.

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.