01: /*
02: * Copyright 2004 The Apache Software Foundation.
03: *
04: * Licensed under the Apache License, Version 2.0 (the "License");
05: * you may not use this file except in compliance with the License.
06: * You may obtain a copy of the License at
07: *
08: * http://www.apache.org/licenses/LICENSE-2.0
09: *
10: * Unless required by applicable law or agreed to in writing, software
11: * distributed under the License is distributed on an "AS IS" BASIS,
12: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13: * See the License for the specific language governing permissions and
14: * limitations under the License.
15: */
16: package org.apache.myfaces.renderkit;
17:
18: import javax.faces.application.StateManager;
19: import javax.faces.context.FacesContext;
20: import javax.faces.render.ResponseStateManager;
21: import java.io.IOException;
22:
23: /**
24: * @author Manfred Geiler (latest modification by $Author: baranda $)
25: * @version $Revision: 466403 $ $Date: 2006-10-21 16:17:16 +0200 (Sa, 21 Okt 2006) $
26: *
27: */
28: public abstract class MyfacesResponseStateManager extends
29: ResponseStateManager {
30:
31: /**
32: * Writes url parameters with the state info to be saved.
33: * {@link org.apache.myfaces.application.MyfacesStateManager} delegates calls to
34: * {@link org.apache.myfaces.application.MyfacesStateManager#writeState} to this method.
35: *
36: * @deprecated
37: */
38: public void writeStateAsUrlParams(FacesContext facescontext,
39: StateManager.SerializedView serializedview)
40: throws IOException {
41: throw new UnsupportedOperationException(
42: "long been deprecated...");
43: }
44: }
|