/*
* Copyright 2005-2006 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.strecks.action;
/**
* Interface which must be implemented when using the lookup and mapping dispatch controllers. Additional methods not
* part of this interface can be invoked, either by specifying the method name via a request parameter, or by using the
* "parameter" element in the struts-config.xml
* @see org.strecks.action.basic.BasicLookupDispatchController
* @see org.strecks.action.basic.BasicMappingDispatchController <br>
* Also, see for more details:<br>
* @see org.apache.struts.actions.LookupDispatchAction
* @see org.apache.struts.actions.MappingDispatchAction
* @author Phil Zoio
*/
public interface NavigableDispatchAction
{
/**
* The method which is called if no method is specified in the request (or path mapping)
*/
void unspecified();
}
|