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

Part Number E41849-02

weblogic.j2ee.descriptor.wl
Interface PropertyBean

All Superinterfaces:
SettableBean

public interface PropertyBean
extends SettableBean

When interfacing with a remote naming context it may be necessary to set key/value properties. This bean represents a single key/value pairing.

Access limited to the following security roles:
Deployer

Method Summary
 String getKey()
          Gets the key of this bean
 String getValue()
          Gets the value associated with this bean
 void setKey(String key)
          Sets the key of this bean
 void setValue(String value)
          Sets the value to be associated with this bean
 
Methods inherited from interface weblogic.descriptor.SettableBean
isSet, unSet
 

Method Detail

getKey

String getKey()
Gets the key of this bean

Returns:
The key associated with this property

setKey

void setKey(String key)
            throws IllegalArgumentException
Sets the key of this bean

Parameters:
key - The key portion of this key/value pair
Throws:
IllegalArgumentException

getValue

String getValue()
Gets the value associated with this bean

Returns:
The value associated with this property

setValue

void setValue(String value)
              throws IllegalArgumentException
Sets the value to be associated with this bean

Parameters:
value - The value to be associated with this property
Throws:
IllegalArgumentException

Copyright 1996, 2014, 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.3)

Part Number E41849-02