ACP API

net.juniper.smgt.acp.application
Interface ActionCongestionPointExt

All Superinterfaces:
ActionCongestionPoint

public interface ActionCongestionPointExt
extends ActionCongestionPoint

An extension to ActionCongestionPoint


Method Summary
 void configChanged(javax.naming.directory.Attributes ldapAttrs)
          Notifies the Action Congestion Point that its configuration has changed.
 void vrShutDown(java.lang.String vrName, long freedUpStreamBandwidth, long freedDownStreamBandwidth)
          Notifies the Action Congestion Point that a virtual router has shutted down.
 
Methods inherited from interface net.juniper.smgt.acp.application.ActionCongestionPoint
authorize, init, track
 

Method Detail

configChanged

void configChanged(javax.naming.directory.Attributes ldapAttrs)
Notifies the Action Congestion Point that its configuration has changed.

Parameters:
ldapAttrs - The attributes of the congestion point definition, including the multivalued attribute "actionProperties", which contains the values entered in the CLI using the CLI command "set action-parameters". It is possible to specify via the CLI action parameters of the form "name=value", and then parse them in this method's implementation.

vrShutDown

void vrShutDown(java.lang.String vrName,
                long freedUpStreamBandwidth,
                long freedDownStreamBandwidth)
Notifies the Action Congestion Point that a virtual router has shutted down. All user sessions and service sessions are gone.

Parameters:
vrName - name of the virtual router that shuts down.
freedUpStreamBandWidth - the total upstream bandwidth allocated to the service sessions of the virtual router
freedDownStreamBandWidth - the total downstream bandwidth allocated to the service sessions of the virtual router

ACP API