You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by lu...@apache.org on 2010/06/06 04:33:28 UTC

svn commit: r951806 - /myfaces/shared/trunk_2.0.x/core/src/main/java/org/apache/myfaces/shared/util/ViewExpiredException.java

Author: lu4242
Date: Sun Jun  6 02:33:28 2010
New Revision: 951806

URL: http://svn.apache.org/viewvc?rev=951806&view=rev
Log:
documentate web config params better

Added:
    myfaces/shared/trunk_2.0.x/core/src/main/java/org/apache/myfaces/shared/util/ViewExpiredException.java   (with props)

Added: myfaces/shared/trunk_2.0.x/core/src/main/java/org/apache/myfaces/shared/util/ViewExpiredException.java
URL: http://svn.apache.org/viewvc/myfaces/shared/trunk_2.0.x/core/src/main/java/org/apache/myfaces/shared/util/ViewExpiredException.java?rev=951806&view=auto
==============================================================================
--- myfaces/shared/trunk_2.0.x/core/src/main/java/org/apache/myfaces/shared/util/ViewExpiredException.java (added)
+++ myfaces/shared/trunk_2.0.x/core/src/main/java/org/apache/myfaces/shared/util/ViewExpiredException.java Sun Jun  6 02:33:28 2010
@@ -0,0 +1,61 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you 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.apache.myfaces.shared.util;
+
+import javax.faces.FacesException;
+
+public class ViewExpiredException extends FacesException
+{
+    
+    private String viewId;
+    
+    public ViewExpiredException() {
+    }
+    
+    public ViewExpiredException(String viewId) {
+        this.viewId = viewId;
+    }
+    
+    public ViewExpiredException(String message, String viewId) {
+        super(message);
+        this.viewId = viewId;
+    }
+    
+    public ViewExpiredException(String message, Throwable cause, String viewId) {
+        super(message, cause);
+        this.viewId = viewId;
+    }
+    
+    public ViewExpiredException(Throwable cause, String viewId) {
+        super(cause);
+        this.viewId = viewId;
+    }
+
+    public String getViewId() {
+        return viewId;
+    }
+    
+    public String getMessage() {
+        if (viewId != null) {
+            return viewId + super.getMessage();
+        }
+        
+        return super.getMessage();
+    }
+}

Propchange: myfaces/shared/trunk_2.0.x/core/src/main/java/org/apache/myfaces/shared/util/ViewExpiredException.java
------------------------------------------------------------------------------
    svn:executable = *