Class SetNotificationDestinationExtendedRequest

java.lang.Object
com.unboundid.ldap.sdk.LDAPRequest
com.unboundid.ldap.sdk.ExtendedRequest
com.unboundid.ldap.sdk.unboundidds.extensions.SetNotificationDestinationExtendedRequest
All Implemented Interfaces:
ProtocolOp, ReadOnlyLDAPRequest, Serializable

This class provides an extended request that may be used to create or update a notification destination.
NOTE: This class, and other classes within the com.unboundid.ldap.sdk.unboundidds package structure, are only supported for use against Ping Identity, UnboundID, and Nokia/Alcatel-Lucent 8661 server products. These classes provide support for proprietary functionality or for external specifications that are not considered stable or mature enough to be guaranteed to work in an interoperable way with other types of LDAP servers.

The request has an OID of 1.3.6.1.4.1.30221.2.6.36 and a value with the following encoding:

   SetNotificationDestinationRequest ::= SEQUENCE {
        notificationManagerID         OCTET STRING,
        notificationDestinationID     OCTET STRING,
        destinationDetails            SEQUENCE OF OCTET STRING,
        changeType                    [0] ENUMERATED {
             replace (0),
             add (1),
             delete (2) } DEFAULT replace }
 
See Also:
  • Field Details

  • Constructor Details

    • SetNotificationDestinationExtendedRequest

      public SetNotificationDestinationExtendedRequest(@NotNull String managerID, @NotNull String destinationID, @NotNull ASN1OctetString... destinationDetails)
      Creates a new set notification destination extended request with the provided information.
      Parameters:
      managerID - The notification manager ID. It must not be null.
      destinationID - The notification destination ID. It must not be null.
      destinationDetails - The implementation-specific details for the notification destination. At least one detail value must be provided.
    • SetNotificationDestinationExtendedRequest

      public SetNotificationDestinationExtendedRequest(@NotNull String managerID, @NotNull String destinationID, @NotNull Collection<ASN1OctetString> destinationDetails, @Nullable Control... controls)
      Creates a new set notification destination extended request with the provided information.
      Parameters:
      managerID - The notification manager ID. It must not be null.
      destinationID - The notification destination ID. It must not be null.
      destinationDetails - The implementation-specific details for the notification destination. At least one detail value must be provided.
      controls - The set of controls to include in the request. It may be null or empty if no controls are needed.
    • SetNotificationDestinationExtendedRequest

      Creates a new set notification destination extended request with the provided information.
      Parameters:
      managerID - The notification manager ID. It must not be null.
      destinationID - The notification destination ID. It must not be null.
      destinationDetails - The implementation-specific details for the notification destination. At least one detail value must be provided.
      changeType - The change type for the destination details.
      controls - The set of controls to include in the request. It may be null or empty if no controls are needed.
    • SetNotificationDestinationExtendedRequest

      Creates a new set notification destination extended request from the provided generic extended request.
      Parameters:
      extendedRequest - The generic extended request to use to create this set notification destination extended request.
      Throws:
      LDAPException - If a problem occurs while decoding the request.
  • Method Details