weaver      2004/08/24 07:17:05

  Modified:    jetspeed-api/src/java/org/apache/jetspeed/page
                        PageManager.java
  Log:
  Added the begins of folder meta data support.  I used Dublin Core schema for basic 
metadata like.  Metadata is marshaled/unmarshalled
  using JDom and metadata is accessed via XPath queries.  We may want to look into 
switching over to castor given that castor has the
  namespace support we require.
  
  Revision  Changes    Path
  1.5       +3 -2      
jakarta-jetspeed-2/jetspeed-api/src/java/org/apache/jetspeed/page/PageManager.java
  
  Index: PageManager.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-jetspeed-2/jetspeed-api/src/java/org/apache/jetspeed/page/PageManager.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- PageManager.java  18 Aug 2004 13:56:35 -0000      1.4
  +++ PageManager.java  24 Aug 2004 14:17:05 -0000      1.5
  @@ -16,6 +16,7 @@
   
   package org.apache.jetspeed.page;
   
  +import java.io.IOException;
   import java.util.List;
   
   import org.apache.jetspeed.exception.JetspeedException;
  @@ -81,7 +82,7 @@
        * @return <code>Folder</code> object represented by the 
<code>folderPath</code> or
        * <code>null</code> if no such folder exists.
        */
  -    Folder getFolder(String folderPath);
  +    Folder getFolder(String folderPath) throws IOException;
   
       /**
        * 
  
  
  

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

Reply via email to