Package org.jvnet.hk2.config
Class OnDeleteCascade
java.lang.Object
org.jvnet.hk2.config.OnDeleteCascade
- All Implemented Interfaces:
ConfigBeanInterceptor<Object>
Usage:
class ExampleDocument extends DomDocument {
- Author:
- Andriy Zhdanov
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidafterChange(PropertyChangeEvent evt, long timestamp) Notification that an attribute has changedvoidNotification that an attribute is about to be changedInterceptor can usually be configured, allowing for customizing how the interceptor should behave or do.voidreadValue(ConfigBean source, String xmlName, Object value) Notification of an attribute read
-
Constructor Details
-
OnDeleteCascade
public OnDeleteCascade()
-
-
Method Details
-
getConfiguration
Description copied from interface:ConfigBeanInterceptorInterceptor can usually be configured, allowing for customizing how the interceptor should behave or do.- Specified by:
getConfigurationin interfaceConfigBeanInterceptor<Object>- Returns:
- interface implementing the configuration capability of this interceptor
-
beforeChange
Description copied from interface:ConfigBeanInterceptorNotification that an attribute is about to be changed- Specified by:
beforeChangein interfaceConfigBeanInterceptor<Object>- Parameters:
evt- information about the forthcoming change- Throws:
PropertyVetoException- if the change is unacceptable
-
afterChange
Description copied from interface:ConfigBeanInterceptorNotification that an attribute has changed- Specified by:
afterChangein interfaceConfigBeanInterceptor<Object>- Parameters:
evt- information about the changetimestamp- time of the change
-
readValue
Description copied from interface:ConfigBeanInterceptorNotification of an attribute read- Specified by:
readValuein interfaceConfigBeanInterceptor<Object>- Parameters:
source- object owning the attributexmlName- name of the attributevalue- value of the attribute
-