Skip navigation links

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

Part Number E55141-01
P4 Change 1723563 on 2015/10/09


weblogic.j2ee.descriptor.wl
Interface NamedEntityBean

All Superinterfaces:
SettableBean
All Known Subinterfaces:
DestinationBean, DestinationKeyBean, DistributedDestinationBean, DistributedDestinationMemberBean, DistributedQueueBean, DistributedTopicBean, ForeignConnectionFactoryBean, ForeignDestinationBean, ForeignJNDIObjectBean, ForeignServerBean, JMSConnectionFactoryBean, QueueBean, QuotaBean, SAFDestinationBean, SAFErrorHandlingBean, SAFImportedDestinationsBean, SAFQueueBean, SAFRemoteContextBean, SAFTopicBean, TargetableBean, TemplateBean, TopicBean, UniformDistributedDestinationBean, UniformDistributedQueueBean, UniformDistributedTopicBean

public interface NamedEntityBean
extends SettableBean

All JMS beans that use a name as a primary key are NamedEntityBeans. All of the named entity beans in a module must have a unique name.


Method Summary
abstract  long getId()
           Return the unique identifier of this bean instance.
abstract  String getName()
          The name of this entity, represented in XML as an attribute.
abstract  String getNotes()
          Optional information that you can include to describe this named JMS descriptor bean.
abstract  void setName(String name)
          The name of this entity, represented in XML as an attribute.
abstract  void setNotes(String notes)
          Sets the notes attribute of the named JMS descriptor bean

 

Method Detail

getNotes

String getNotes()

Optional information that you can include to describe this named JMS descriptor bean.

JMS module saves this note in the JMS descriptor file as XML PCDATA. All left angle brackets (<) are converted to the XML entity &lt;. Carriage returns/line feeds are preserved.

Note:

If you create or edit a note from the Administration Console, the Administration Console does not preserve carriage returns/line feeds.

Returns:
The notes value

setNotes

void setNotes(String notes)

Sets the notes attribute of the named JMS descriptor bean

Parameters:
notes - The new notes value

getName

String getName()

The name of this entity, represented in XML as an attribute.

Many of the elements within the JMS module are named entities. All of the named entities encased by a type in the XML file must be unique. This is the identifier used to delineate a particular entity within the JMS module.

This attribute cannot be modified externally from the module (for example, with a deployment plan) because it may be used inside the module referentially.

Returns:
The name of this entity

setName

void setName(String name)

The name of this entity, represented in XML as an attribute.

Many of the elements within the JMS module are named entities. All of the named entities encased by a type in the XML file must be unique. This is the identifier used to delineate a particular entity within the JMS module.

This attribute cannot be modified externally from the module (for example, with a deployment plan) because it may be used inside the module referentially.

Parameters:
name - The name to use for this entity

getId

long getId()

Return the unique identifier of this bean instance.

Returns:
The identifier value

Skip navigation links

Copyright 1996, 2015, 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.2.1)

Part Number E55141-01
P4 Change 1723563 on 2015/10/09