com.ibm.portal.outbound.config
Interface ModifiableOutboundConnectionProfile

All Superinterfaces:
Administrable, Modifiable, ModifiableNode, OutboundConnectionProfile

public interface ModifiableOutboundConnectionProfile
extends OutboundConnectionProfile, ModifiableNode

Interface that contains functions to modify outbound connection profile items.
The following code excerpt changes the application scope reference of an outbound connection profile:

OutboundConnectionModelController ctrl;
OutboundConnectionModel model;
˙˙˙
OutboundConnectionProfile profile = model.getProfileLocator().findScopedProfile("/wps/PA_SAMPLE_CONTEXT");
ModifiableOutboundConnectionProfile mprofile = ctrl.getModifiableNode(profile);
mprofile.setApplicationScope("/wps/PA_THE_NEW_CONTEXT");
ctrl.commit();


Since:
8.5.0
See Also:
OutboundConnectionModel, OutboundConnectionModelController, OutboundConnectionProfile

Method Summary
 void setApplicationScope(java.lang.String scopeReference)
          Override the application scope reference
 
Methods inherited from interface com.ibm.portal.outbound.config.OutboundConnectionProfile
getApplicationScope, hasApplicationScope
 
Methods inherited from interface com.ibm.portal.outbound.config.Administrable
getName, isReadOnly
 
Methods inherited from interface com.ibm.portal.outbound.config.ModifiableNode
setName
 

Method Detail

setApplicationScope

void setApplicationScope(java.lang.String scopeReference)
                         throws CannotModifyPropertyException
Override the application scope reference

Parameters:
scopeReference - The new socope reference. Never null.
Throws:
CannotModifyPropertyException - The specified scope reference is invalid.