/*
* Copyright 2004-2012 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.springframework.webflow.expression.el;
import java.beans.FeatureDescriptor;
import java.util.Iterator;
import javax.el.ELContext;
import javax.el.ELResolver;
import javax.el.PropertyNotWritableException;
import org.springframework.webflow.execution.Action;
import org.springframework.webflow.execution.AnnotatedAction;
/**
* Resolves the method to invoke on a resolved Web Flow Action instance. The resolved Action is usually a
* {@link org.springframework.webflow.action.MultiAction}. Returns an AnnotatedAction wrapper around the target Action
* configured with the appropriate method dispatching rules.
*
* @see org.springframework.webflow.action.EvaluateAction
*
* @author Keith Donald
*/
public class ActionMethodELResolver extends ELResolver {
public Class<?> getCommonPropertyType(ELContext elContext, Object base) {
if (base instanceof Action) {
return String.class;
} else {
return null;
}
}
public Iterator<FeatureDescriptor> getFeatureDescriptors(ELContext elContext, Object base) {
return null;
}
public Class<?> getType(ELContext elContext, Object base, Object property) {
if (base instanceof Action) {
elContext.setPropertyResolved(true);
return Action.class;
} else {
return null;
}
}
public Object getValue(ELContext elContext, Object base, Object property) {
if (base instanceof Action) {
Action action = (Action) base;
elContext.setPropertyResolved(true);
AnnotatedAction annotated = new AnnotatedAction(action);
annotated.setMethod(property.toString());
return annotated;
} else {
return null;
}
}
public boolean isReadOnly(ELContext elContext, Object base, Object property) {
if (base instanceof Action) {
elContext.setPropertyResolved(true);
return true;
} else {
return false;
}
}
public void setValue(ELContext elContext, Object base, Object property, Object value) {
if (base instanceof Action) {
elContext.setPropertyResolved(true);
throw new PropertyNotWritableException("The Action cannot be set with an expression.");
}
}
}