Oracle Fusion Middleware User Messaging Service 11.1.1.7.0 Java API Reference
E14011-05

oracle.sdp.messaging
Enum MessageTrackingType

java.lang.Object
  extended by java.lang.Enum<MessageTrackingType>
      extended by oracle.sdp.messaging.MessageTrackingType
All Implemented Interfaces:
Serializable, java.lang.Comparable<MessageTrackingType>

public enum MessageTrackingType
extends java.lang.Enum<MessageTrackingType>

MessageTrackingType enumerates all available tracking types or levels for sending messages in the SDP Messaging. This property can be set in the MessageInfo associated with a Message.

Sample Usage: Message.getMessageInfo().setTracking(MessageTrackingType.TIGHT_FULL_TRACK);

Since:
11.0.0

Enum Constant Summary
LOOSE_FULL_TRACK
          Indicates full message tracking is required and the tracking notification need not necessarily come to the same instance that sent the message.
LOOSE_NOTIFICATION
          Indicates tracking notification need not necessarily come to the same instance that sent the message.
NO_TRACK
          Indicates message tracking not requried.
TIGHT_FULL_TRACK
          Indicates full message tracking is required and the tracking notification must come to the same instance that sent the message.
TIGHT_NOTIFICATION
          Indicates tracking notification must come to the same instance that sent the message.
 
Method Summary
static MessageTrackingType valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static MessageTrackingType[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

NO_TRACK

public static final MessageTrackingType NO_TRACK
Indicates message tracking not requried.


TIGHT_NOTIFICATION

public static final MessageTrackingType TIGHT_NOTIFICATION
Indicates tracking notification must come to the same instance that sent the message.


TIGHT_FULL_TRACK

public static final MessageTrackingType TIGHT_FULL_TRACK
Indicates full message tracking is required and the tracking notification must come to the same instance that sent the message.


LOOSE_NOTIFICATION

public static final MessageTrackingType LOOSE_NOTIFICATION
Indicates tracking notification need not necessarily come to the same instance that sent the message.


LOOSE_FULL_TRACK

public static final MessageTrackingType LOOSE_FULL_TRACK
Indicates full message tracking is required and the tracking notification need not necessarily come to the same instance that sent the message.

Method Detail

values

public static MessageTrackingType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (MessageTrackingType c : MessageTrackingType.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static MessageTrackingType valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null

Oracle Fusion Middleware User Messaging Service 11.1.1.7.0 Java API Reference
E14011-05

Copyright © 2009, 2013 Oracle and/or its affiliates. All rights reserved.