|
BEA Systems, Inc. | |||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectweblogic.security.service.ResourceBase
weblogic.security.service.JMSResource
The JMSResource
class is used by a container to specify the
JMS resource (and method related to the resource) that a caller is
attempting to access.
The toString
format (which is produced by the ResourceBase
class) for a JMS resource deployed with an application where the module name is specified
in the weblogic-application.xml
descriptor is:
type=<jms>, application=myApp, module=myModule, destType=queue, resource=myQueue, action=receive
The toString
format for a JMS system resource is:
type=<jms>, application=mySystemResource, destType=queue, resource=myQueue, action=receive
The toString
format for a JMS resource that is part of the interop-jms
resources is:
type=<jms>, application=, destType=queue, resource=myQueue, action=receive
Field Summary |
Fields inherited from class weblogic.security.service.ResourceBase |
id, length, NO_PARENT, parent, resStr, SCOPE_RESOURCE_ACTION, values |
Fields inherited from interface weblogic.security.spi.SelfDescribingResource |
LIST_FIELD_TYPE, NORMAL_FIELD_TYPE, PATH_FIELD_TYPE, UNDEFINED_FIELD_TYPE |
Constructor Summary | |
JMSResource(String application,
String destType,
String resource,
String action)
Deprecated. As of 06/17/04 (WLS 9.0), replaced with JMSResource(String,String,String,String,String) |
|
JMSResource(String application,
String module,
String destType,
String resource,
String action)
Constructs a new JMSResource with a target name composed from
the application , destType ,
resource , and action parameters. |
Method Summary | |
boolean |
equals(Object obj)
Compares this resource to the resource in the specified object. |
String |
getActionName()
Gets the name of the action being requested on the JMSResource . |
String |
getApplicationName()
Gets the name of the application associated with the JMSResource . |
String |
getDestinationType()
Gets the type of the destination resource. |
String[] |
getKeys()
Gets keys for the JMSResource . |
String |
getModule()
Returns the name of the module associated with the JMSResource . |
int |
getRepeatingFieldIndex()
getRepeatingFieldIndex returns an index into the
array returned by getKeys() that signifies what part
of the Resource's fields repeat as the hierarchy is traversed. |
int |
getRepeatingFieldTerminatingIndex()
The field returned by getRepeatingFieldIndex is
repeated as the Resource is shortened up to and including this
field index. |
String |
getResourceName()
Gets the name of the JMSResource . |
String |
getType()
Gets the type of this resource ( JMSResource ). |
void |
initialize(String application,
String destType,
String resource,
String action)
Deprecated. As of 04/01/02, the constructor should be used instead. |
boolean |
isTransitiveField(String fieldName)
Returns true when the specified field name is a transitive field. |
protected Resource |
makeParent()
Gets a Resource object that represents the parent of the
current JMSResource . |
protected void |
writeResourceString(StringBuffer buf)
Writes a string representation of the resource to buffer. |
Methods inherited from class weblogic.security.service.ResourceBase |
appendArrayValue, appendValue, getFieldType, getID, getParentResource, getValues, hashCode, init, init, reset, toString |
Methods inherited from class java.lang.Object |
clone, finalize, getClass, notify, notifyAll, wait, wait, wait |
Constructor Detail |
public JMSResource(String application, String destType, String resource, String action) throws InvalidParameterException
InvalidParameterException
public JMSResource(String application, String module, String destType, String resource, String action) throws InvalidParameterException
JMSResource
with a target name composed from
the application
, destType
,
resource
, and action
parameters.
InvalidParameterException
- if the parameters are not specified.Method Detail |
public boolean equals(Object obj)
equals
in interface Resource
equals
in class ResourceBase
obj
- the other resource with which to compare this resource.
TRUE
if the resource passed in matches this resource,
and FALSE
otherwise.Object.equals(Object)
public String getActionName()
JMSResource
.
JMSResource
, represented as a String.public String getApplicationName()
JMSResource
.
JMSResource
,
represented as a String.public String getDestinationType()
public String[] getKeys()
JMSResource
.
getKeys
in interface Resource
getKeys
in class ResourceBase
JMSResource
's keys.public String getModule()
JMSResource
.
JMSResource
.public int getRepeatingFieldIndex()
SelfDescribingResource
getRepeatingFieldIndex
returns an index into the
array returned by getKeys()
that signifies what part
of the Resource's fields repeat as the hierarchy is traversed.
For example, in the URLResource
, the
httpMethod
is repeated as the hierarchy is walked.
A value of -1
indicates that there are no repeating
fields.
getRepeatingFieldIndex
in interface SelfDescribingResource
getRepeatingFieldIndex
in class ResourceBase
public int getRepeatingFieldTerminatingIndex()
SelfDescribingResource
getRepeatingFieldIndex
is
repeated as the Resource is shortened up to and including this
field index. After this field index the repetition is no longer
applied.
getRepeatingFieldTerminatingIndex
in interface SelfDescribingResource
getRepeatingFieldTerminatingIndex
in class ResourceBase
public String getResourceName()
JMSResource
.
JMSResource
, represented as a String.public String getType()
JMSResource
).
public void initialize(String application, String destType, String resource, String action)
application
, destType
,
resource
, and action
parameters
of the resource with the specified values.
public boolean isTransitiveField(String fieldName)
SelfDescribingResourceV2
isTransitiveField
in interface SelfDescribingResourceV2
isTransitiveField
in class ResourceBase
protected Resource makeParent()
Resource
object that represents the parent of the
current JMSResource
. If the resource does not have a parent, the value of
null
must be returned.
The parentage hierarchy for a system JMSResource
is:
type=<jms>, application=mySystemResource, destinationType=queue, resource=myQueue, action=send
type=<jms>, application=mySystemResource, destinationType=queue, resource=myQueue
type=<jms>, application=mySystemResource, destinationType=queue, action=send
type=<jms>, application=mySystemResource, destinationType=queue
type=<jms>, application=mySystemResource, action=send
type=<jms>, application=mySystemResource
type=<app>, application=mySystemResource
type=<jms>, action=send
type=<jms>
makeParent
in class ResourceBase
Resource
object of the parent resource.protected void writeResourceString(StringBuffer buf)
Each type of resource is first printed in angled brackets. Then, each key is printed, in order, along with it's value. The keys are comma-separated. Values that are lists are comma-separated and delineated by open and close curly braces. Each value is printed as is, except that commas (,), open braces ({), close braces (}), and back slashes (\) are each escaped with a backslash.
Note: Because this method produces a result based on the concatenation of strings, it may be expensive in terms of performance.
writeResourceString
in class ResourceBase
buf
- buffer to write to.
|
Documentation is available at http://download.oracle.com/docs/cd/E13222_01/wls/docs91 Copyright 2005 BEA Systems Inc. |
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |