Package org.apache.slide.webdav.util

Source Code of org.apache.slide.webdav.util.AbstractWebdavHelper

/*
* $Header: /home/cvs/jakarta-slide/src/webdav/server/org/apache/slide/webdav/util/AbstractWebdavHelper.java,v 1.9.2.1 2004/02/05 16:11:25 mholz Exp $
* $Revision: 1.9.2.1 $
* $Date: 2004/02/05 16:11:25 $
*
* ====================================================================
*
* Copyright 1999-2002 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.slide.webdav.util;

import org.apache.slide.common.NamespaceAccessToken;
import org.apache.slide.common.SlideToken;
import org.apache.slide.common.SlideTokenWrapper;
import org.apache.slide.content.NodeProperty.NamespaceCache;
import org.jdom.Namespace;
import org.jdom.input.SAXBuilder;
import org.jdom.output.XMLOutputter;


/**
* Helper class for handling report resources.
*
* @author <a href="mailto:peter.nevermann@softwareag.com">Peter Nevermann</a>
*/

public class AbstractWebdavHelper
implements AclConstants, DeltavConstants, DaslConstants {
   
   
    // an XML outputter
    protected static XMLOutputter xmlOut = new XMLOutputter();
   
    // an XML parser
    protected static SAXBuilder xmlBuilder = new SAXBuilder();
       
    protected static final Namespace DNSP = NamespaceCache.DEFAULT_NAMESPACE;
   
   
    // the Slide token
    protected SlideToken sToken = null;
   
    // the namespace access token
    protected NamespaceAccessToken nsaToken = null;
   
    /**
     * Protected contructor
     */
    protected AbstractWebdavHelper( SlideToken sToken, NamespaceAccessToken nsaToken ) {
        this.sToken = sToken;
        this.nsaToken = nsaToken;
    }

    protected SlideToken readonlySlideToken() {
        SlideToken stok = sToken;
        if (stok.isForceStoreEnlistment()) {
            stok = new SlideTokenWrapper(sToken, false);
        }
        return stok;
    }
}

TOP

Related Classes of org.apache.slide.webdav.util.AbstractWebdavHelper

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.