Class Redirect


public class Redirect extends IsodeSyntax<MHSR.Redirect>
Class representation of a Redirect value. Users may create values from Strings, BER, or AttributeValue objects.

This class works by holding an MHSR.Redirect object, and providing a slightly more user-friendly set of methods which access and manipulate fields inside that object. See RFC 1801 for description of Redirect, which says it looks like this:

 Redirect ::= SEQUENCE OF SEQUENCE {
        or-name ORName,
        reason RedirectionReason, -- from X.411
        filter CHOICE {
                min-size [1] INTEGER,
                max-size [1] INTEGER,
                content [3] ContentType,
                eit [4] ExternalEncodedInformationType 
        } OPTIONAL
 }
This class supports access (via set and get methods) to all of the above fields. The enum RedirectionReason can be used to access reason fields in the object.
Since:
14.6
Author:
tc