juergen     2002/07/23 05:34:00

  Modified:    src/webdav/server/org/apache/slide/webdav/util/resourcekind
                        PrincipalImpl.java
  Log:
  fixed live property problem (eckehard)
  
  Revision  Changes    Path
  1.5       +4 -37     
jakarta-slide/src/webdav/server/org/apache/slide/webdav/util/resourcekind/PrincipalImpl.java
  
  Index: PrincipalImpl.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-slide/src/webdav/server/org/apache/slide/webdav/util/resourcekind/PrincipalImpl.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- PrincipalImpl.java        15 Jul 2002 12:26:06 -0000      1.4
  +++ PrincipalImpl.java        23 Jul 2002 12:34:00 -0000      1.5
  @@ -66,7 +66,7 @@
   import java.util.*;
   
   
  -public class PrincipalImpl extends AbstractResourceKind implements Principal {
  +public class PrincipalImpl extends DeltavCompliantImpl implements Principal {
       
        protected static ResourceKind singleton = null;
        
  @@ -83,39 +83,6 @@
         * Protected constructor
         */
        protected PrincipalImpl() {
  -     }
  -
  -    /**
  -      * Get the set properties supported by this resource kind.
  -      * @param filter Q_PROTECTED_ONLY or Q_COMPUTED_ONLY (no filtering if null)
  -      * @param excludedFeatures array of F_* constants (no filtering if null or 
empty)
  -      * @see org.apache.slide.webdav.util.WebdavConstants
  -      * @see org.apache.slide.webdav.util.DeltavConstants
  -      * @see org.apache.slide.webdav.util.AclConstants
  -      * @see org.apache.slide.webdav.util.DaslConstants
  -     */
  -    public Set getSupportedLiveProperties( String[] excludedFeatures ) {
  -             Set s = super.getSupportedLiveProperties( excludedFeatures );
  -        if( isSupportedFeature(F_ACCESS_CONTROL, excludedFeatures) ) {
  -            s.add( P_ALTERNATE_URI_SET );
  -        }
  -             return s;
  -     }
  -
  -    /**
  -     * Get the set methods supported by this resource kind.
  -     */
  -    public Set getSupportedMethods() {
  -             Set s = super.getSupportedMethods();
  -             return s;
  -    }
  -
  -    /**
  -     * Get the set reports supported by this resource kind.
  -     */
  -    public Set getSupportedReports() {
  -             Set s = super.getSupportedReports();
  -             return s;
       }
   }
   
  
  
  

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

Reply via email to