import "NicAccess.idl";
Inheritance diagram for net.juniper.smgt.gateway.nic.protocol.NicLocatorFeature:
Public Member Functions | |
AttrSeq | getLocatorInfo () |
The getLocatorInfo() method returns a sequence of attributes. | |
NicLocatorValue | lookupSingle (in NicLocatorKey key) raises (NICException) |
The lookupSingle() method looks up and then returns one value for a key that the method receives. | |
NicLocatorValueSeq | lookup (in NicLocatorKey key) raises (NICException) |
The lookup() method looks up and then returns the values for a key that the method receives. | |
NicLocatorResultSeq | lookupBulk (in NicLocatorKeySeq keys) raises (NICException) |
The lookupBulk() method looks up and then returns the values for one or more keys that the method receives. |
AttrSeq net.juniper.smgt.gateway.nic.protocol.NicLocatorFeature.getLocatorInfo | ( | ) |
The getLocatorInfo() method returns a sequence of attributes.
The method returns the names of the following attributes:
NicLocatorValueSeq net.juniper.smgt.gateway.nic.protocol.NicLocatorFeature.lookup | ( | in NicLocatorKey | key | ) | raises (NICException) |
The lookup() method looks up and then returns the values for a key that the method receives.
[in] | key | NIC key for which to locate and return a value. Specify the key in string format that conforms to the format of the NIC data type that this locator feature accepts. Constraints are optional. |
NICException | Raised if the method does not find a value for the key. |
NicLocatorResultSeq net.juniper.smgt.gateway.nic.protocol.NicLocatorFeature.lookupBulk | ( | in NicLocatorKeySeq | keys | ) | raises (NICException) |
The lookupBulk() method looks up and then returns the values for one or more keys that the method receives.
The method returns a list of values for each key.
[in] | keys | List of NIC keys for which to locate and return values. Specify each key in string format that conforms to the format of the NIC data type that this locator feature accepts. Constraints are optional. |
NICException | Raised if a general exception occurs; that is, a problem not related to a specific key. |
NicLocatorValue net.juniper.smgt.gateway.nic.protocol.NicLocatorFeature.lookupSingle | ( | in NicLocatorKey | key | ) | raises (NICException) |
The lookupSingle() method looks up and then returns one value for a key that the method receives.
If the method finds more than one value, the locator returns only one value.
If you want more than one value returned for a key, use the lookup() method.
[in] | key | NIC key for which to locate and return a value. Specify the key in string format that conforms to the format of the NIC data type that this locator feature accepts. Constraints are optional. |
NICException | Raised if the method does not find a value for the key. |