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 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.


Method Summary
abstract  String getKey()
          Gets the key of this bean
abstract  String getValue()
          Gets the value associated with this bean
abstract  void setKey(String key)
          Sets the key of this bean
abstract  void setValue(String value)
          Sets the value to be associated with this bean

 

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

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