Author: ate
Date: Sat Feb 11 11:57:49 2006
New Revision: 377034

URL: http://svn.apache.org/viewcvs?rev=377034&view=rev
Log:
New Page "edit" state component interface, introduced to allow nested page 
layout customization.
See http://issues.apache.org/jira/browse/JS2-468.

Added:
    
portals/jetspeed-2/trunk/jetspeed-api/src/java/org/apache/jetspeed/decoration/PageEditAccess.java

Added: 
portals/jetspeed-2/trunk/jetspeed-api/src/java/org/apache/jetspeed/decoration/PageEditAccess.java
URL: 
http://svn.apache.org/viewcvs/portals/jetspeed-2/trunk/jetspeed-api/src/java/org/apache/jetspeed/decoration/PageEditAccess.java?rev=377034&view=auto
==============================================================================
--- 
portals/jetspeed-2/trunk/jetspeed-api/src/java/org/apache/jetspeed/decoration/PageEditAccess.java
 (added)
+++ 
portals/jetspeed-2/trunk/jetspeed-api/src/java/org/apache/jetspeed/decoration/PageEditAccess.java
 Sat Feb 11 11:57:49 2006
@@ -0,0 +1,42 @@
+/*
+ * Copyright 2000-2001,2004 The Apache Software Foundation.
+ * 
+ * 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.apache.jetspeed.decoration;
+
+/**
+ * PageEditAccess representing current Page edit state.
+ * 
+ * @author <href a="mailto:[EMAIL PROTECTED]">Ate Douma</a>
+ * @version $Id$
+ */
+public interface PageEditAccess 
+{
+    /**
+     * @return true if page editing is allowed
+     */
+    boolean isEditAllowed();
+    
+    /**
+     * @return true if page in edit mode
+     */
+    boolean isEditing();
+    
+    /**
+     * Switch the Page edit state.
+     * @param editing intended Page edit state
+     * @throws SecurityException when trying to set edit state while not 
allowed
+     */
+    void setEditing(boolean editing) throws SecurityException;
+}



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to