Searched defs:oldValue (Results 1 - 9 of 9) sorted by relevance

/glassfish-3.1.2/admin/config-api/src/main/java/org/glassfish/config/support/
H A DTypedChangeEvent.java55 public TypedChangeEvent(Object source, String propertyName, Object oldValue, Object newValue) { argument
56 super(source, propertyName, oldValue, newValue);
60 public TypedChangeEvent(Object source, String propertyName, Object oldValue, Object newValue, Type type) { argument
61 super(source, propertyName, oldValue, newValue);
H A DTypedVetoableChangeSupport.java62 public void fireVetoableChange(String propertyName, Object oldValue, Object newValue) argument
65 super.fireVetoableChange(new TypedChangeEvent(source, propertyName, oldValue, newValue));
/glassfish-3.1.2/common/amx-core/src/main/java/org/glassfish/admin/amx/util/jmx/
H A DAttributeChangeNotificationBuilder.java74 final Object oldValue,
77 return buildAttributeChange(msg, attributeName, attributeType, now(), oldValue, newValue);
85 final Object oldValue,
95 oldValue,
70 buildAttributeChange( final String msg, final String attributeName, final String attributeType, final Object oldValue, final Object newValue) argument
80 buildAttributeChange( final String msg, final String attributeName, final String attributeType, final long when, final Object oldValue, final Object newValue) argument
/glassfish-3.1.2/common/amx-core/src/main/java/org/glassfish/admin/amx/base/
H A DUnprocessedConfigChange.java94 final String oldValue,
102 mOldValue = oldValue;
148 ", oldValue = " + StringUtil.quote( getOldValue() ) +
92 UnprocessedConfigChange( final String name, final String oldValue, final String newValue, final Object source, final String reason) argument
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/core/
H A DNamingContextListener.java525 * @param oldValue The old value (or <code>null</code> if adding)
529 Object oldValue,
533 if (oldValue != null) {
534 ContextEjb ejb = (ContextEjb) oldValue;
546 if (oldValue != null) {
547 ContextEnvironment env = (ContextEnvironment) oldValue;
559 if (oldValue != null) {
560 ContextLocalEjb ejb = (ContextLocalEjb) oldValue;
572 if (oldValue != null) {
573 ContextResource resource = (ContextResource) oldValue;
528 processGlobalResourcesChange(String name, Object oldValue, Object newValue) argument
[all...]
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/tomcat/util/modeler/
H A DBaseModelMBean.java588 Object oldValue=null;
590 oldValue=getAttribute( name );
591 sendAttributeChangeNotification(new Attribute( name, oldValue),
937 * @param oldValue The original value of the <code>Attribute</code>
946 (Attribute oldValue, Attribute newValue)
953 else if (oldValue.getValue() != null)
954 type = oldValue.getValue().getClass().getName();
962 oldValue.getName(), type,
963 oldValue.getValue(), newValue.getValue());
945 sendAttributeChangeNotification(Attribute oldValue, Attribute newValue) argument
/glassfish-3.1.2/common/amx-config-impl/src/main/java/org/glassfish/admin/amx/impl/config/
H A DAMXConfigLoader.java140 final Object oldValue,
149 if (oldValue != null) {
150 changed = !oldValue.equals(newValue);
152 changed = !newValue.equals(oldValue);
156 //debug( "AMXConfigLoader.issueAttributeChange(): " + xmlAttrName + ": {" + oldValue + " => " + newValue + "}");
162 final String message = cb.getProxyType().getName() + "." + xmlAttrName + ": " + oldValue + " => " + newValue;
163 amx.issueAttributeChangeForXmlAttrName(xmlAttrName, message, oldValue, newValue, whenChanged);
180 final Object oldValue = event.getOldValue();
185 if (oldValue == null && newValue instanceof ConfigBeanProxy) {
196 } else if (newValue == null && oldValue instanceo
137 issueAttributeChange( final ConfigBean cb, final String xmlAttrName, final Object oldValue, final Object newValue, final long whenChanged) argument
[all...]
H A DAMXConfigImpl.java1635 final Object oldValue,
1648 getLogger().fine( getObjectName() + " -- " + attributeName + " = " + newValue + " <== " + oldValue );
1654 new AttributeChangeNotification( getObjectName(), sequenceNumber, whenChanged, message, attributeName, attributeType, oldValue, newValue);
1632 issueAttributeChangeForXmlAttrName( final String xmlAttrName, final String message, final Object oldValue, final Object newValue, final long whenChanged ) argument
/glassfish-3.1.2/common/amx-core-impl/src/main/java/org/glassfish/admin/amx/impl/mbean/
H A DAMXImplBase.java637 final Object oldValue = shouldEmitNotifications ? getAttribute(attr.getName()) : null;
648 sendAttributeChangeNotification("", attr.getName(), attrType, System.currentTimeMillis(), oldValue, attr.getValue());
671 final Object oldValue,
676 if (oldValue != null && !oldValue.equals(newValue)) {
681 builder.buildAttributeChange(msg, name, attrType, when, oldValue, newValue);
702 final Object oldValue = oldValues.get(attrName);
705 sendAttributeChangeNotification("", attrName, attrType, when, oldValue, newValue);
666 sendAttributeChangeNotification( final String msg, final String name, final String attrType, final long when, final Object oldValue, final Object newValue) argument

Completed in 35 milliseconds