Oracle Fusion Middleware
Java API Reference for Oracle WebLogic Server
12c (12.1.2)

Part Number E27170-01

weblogic.j2ee.descriptor.wl
Interface DistributedDestinationMemberBean

All Superinterfaces:
NamedEntityBean, SettableBean

Deprecated. 10.3.4.0, since Weighted Distributed Destination has been deprecated and replaced by Uniform Distributed Destination

public interface DistributedDestinationMemberBean
extends NamedEntityBean

This bean defines common properties of distributed destination members. Distributed destination members can be members of queues or topics.

Access limited to the following security roles:
Deployer

Method Summary
 String getPhysicalDestinationName()
          Deprecated. 9.0.0.0 Replaced by getName
 int getWeight()
          Deprecated.  The weight of a distributed destination member is a measure of its ability to handle message load, compared to the other member destinations in the same distributed set.
 void setPhysicalDestinationName(String destination)
          Deprecated. 9.0.0.0 Replaced by setName
 void setWeight(int weight)
          Deprecated. Sets the weight element.
 
Methods inherited from interface weblogic.j2ee.descriptor.wl.NamedEntityBean
getId, getName, getNotes, setName, setNotes
 
Methods inherited from interface weblogic.descriptor.SettableBean
isSet, unSet
 

Method Detail

getWeight

int getWeight()
Deprecated. 

The weight of a distributed destination member is a measure of its ability to handle message load, compared to the other member destinations in the same distributed set.

Returns:
The weight of this distributed destination member
Changes take effect after you redeploy the module or restart the server.
Default Value:
1

setWeight

void setWeight(int weight)
               throws IllegalArgumentException
Deprecated. 

Sets the weight element.

Parameters:
weight - The new weight of this distributed destination member
Throws:
IllegalArgumentException
See Also:
DistributedDestinationMemberBean.getWeight()
Changes take effect after you redeploy the module or restart the server.
Minimum Value:
1

getPhysicalDestinationName

String getPhysicalDestinationName()
Deprecated. 9.0.0.0 Replaced by getName

This attribute is only used by the JMS interop module.

The name of the destination that is to be a member of the distributed destination.

Note that this is the real name of the destination (e.g. the name as retrieved by getName()), not the destination-name element of the destination (e.g. the name as retrieved by getJMSCreateDestinationIdentifier()).

This field is only used by the JMS interop module. All other modules may not set this field. In all other modules the name of the DistributedDestinationMemberBean itself is the name of the queue to be used by this destination

Returns:
The name of the queue member
Changes take effect after you redeploy the module or restart the server.
This method can NOT set a null value.

setPhysicalDestinationName

void setPhysicalDestinationName(String destination)
                                throws IllegalArgumentException
Deprecated. 9.0.0.0 Replaced by setName

This attribute is only used by the JMS interop module. Sets the name of the destination to be a member of the distributed destination

This field is only used by the JMS interop module. All other modules may not set this field. In all other modules the name of the DistributedDestinationMemberBean itself is the name of the queue to be used by this destination

Parameters:
destination - The name of the destination that is to be a member of the distributed destination
Throws:
IllegalArgumentException
Changes take effect after you redeploy the module or restart the server.
This method can NOT set a null value.

Copyright 1996, 2013, Oracle and/or its affiliates. All rights reserved. Oracle is a registered trademark of Oracle Corporation and/or its affiliates. Other names may be trademarks of their respective owners.

Oracle Fusion Middleware
Java API Reference for Oracle WebLogic Server
12c (12.1.2)

Part Number E27170-01