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

Part Number E27170-01

weblogic.j2ee.descriptor.wl
Interface DefaultPersistentStoreBean

All Superinterfaces:
SettableBean

public interface DefaultPersistentStoreBean
extends SettableBean

This MBean is the parent of the GenericFileStoreMBean and GenericJDBCStoreMBean. It is not intended for deployment.


Method Summary
 String getDirectoryPath()
          Gets the value of the directory path where this store should be found
 String getNotes()
          Optional information that you can include to describe this named JMS descriptor bean.
 String getSynchronousWritePolicy()
          Sets the value of the SynchronousWritePolicy attribute.
 void setDirectoryPath(String directoryPath)
          Sets the value of the directory path where this store should be found
 void setNotes(String notes)
          Sets the notes attribute of the named JMS descriptor bean
 void setSynchronousWritePolicy(String policy)
          Sets the value of the SynchronousWritePolicy attribute.
 
Methods inherited from interface weblogic.descriptor.SettableBean
isSet, unSet
 

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
Changes take effect after you redeploy the module or restart the server.

setNotes

void setNotes(String notes)

Sets the notes attribute of the named JMS descriptor bean

Parameters:
notes - The new notes value

getDirectoryPath

String getDirectoryPath()

Gets the value of the directory path where this store should be found

Default Value:
"store/default"

setDirectoryPath

void setDirectoryPath(String directoryPath)

Sets the value of the directory path where this store should be found

Parameters:
directoryPath - A path to a directory where the store files should be located
Default Value:
"store/default"

getSynchronousWritePolicy

String getSynchronousWritePolicy()

Sets the value of the SynchronousWritePolicy attribute.

Default Value:
"Direct-Write"
Valid Values:
"Disabled","Cache-Flush","Direct-Write"

setSynchronousWritePolicy

void setSynchronousWritePolicy(String policy)

Sets the value of the SynchronousWritePolicy attribute.

Parameters:
policy - The new synchronousWritePolicy value
Default Value:
"Direct-Write"
Valid Values:
"Disabled","Cache-Flush","Direct-Write"

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