com.ibm.websphere.workarea

Class PropertyFixed

  1. java.lang.Object
  2. extended byjava.lang.Throwable
  3. extended byjava.lang.Exception
  4. extended bycom.ibm.websphere.exception.DistributedException
  5. extended bycom.ibm.websphere.workarea.WorkAreaException
  6. extended bycom.ibm.websphere.workarea.PropertyFixed
All implemented interfaces:
DistributedExceptionEnabled, java.io.Serializable

  1. public class PropertyFixed
  2. extends WorkAreaException
A PropertyFixed exception indicates that an application has requested that the WorkArea service remove an existing property that has previously been set as fixed. The fixed mode indicates that the value must exist within the outermost scope at which the property was first set; the property cannot be deleted without completing the WorkArea. For example, doing a:
     userWorkArea.set("key", "value", PropertyModeType.fixed)
     userWorkArea.remove("key");
     
will throw a PropertyFixed exception. However, note that doing a:
     userWorkArea.set("key", "value", PropertyModeType.fixed)
     userWorkArea.complete();
     
will succeed; the property is considered fixed only within the boundary of the context into which it was set.
Version:
1.0
See Also:
Serialized Form

Constructor Summary

Constructor and Description
PropertyFixed()
PropertyFixed(java.lang.String s)

Method Summary

Methods inherited from class com.ibm.websphere.exception.DistributedException
getException, getExceptionInfo, getMessage, getOriginalException, getPreviousException, printStackTrace, printStackTrace, printStackTrace, printSuperStackTrace, printSuperStackTrace, setDefaultMessage, setLocalizationInfo
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getStackTrace, initCause, setStackTrace, toString
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait

Constructor Detail

PropertyFixed

  1. public PropertyFixed()

PropertyFixed

  1. public PropertyFixed(java.lang.String s)