Package org.apache.sling.jcr.webdav.impl.handler

Source Code of org.apache.sling.jcr.webdav.impl.handler.DefaultHandlerService

/*
* 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.sling.jcr.webdav.impl.handler;

import org.apache.felix.scr.annotations.Activate;
import org.apache.felix.scr.annotations.Component;
import org.apache.felix.scr.annotations.Deactivate;
import org.apache.felix.scr.annotations.Modified;
import org.apache.felix.scr.annotations.Properties;
import org.apache.felix.scr.annotations.Property;
import org.apache.felix.scr.annotations.Service;
import org.apache.jackrabbit.server.io.DefaultHandler;
import org.apache.jackrabbit.server.io.ExportContext;
import org.apache.jackrabbit.server.io.IOHandler;
import org.apache.jackrabbit.server.io.IOManager;
import org.apache.jackrabbit.server.io.ImportContext;
import org.apache.jackrabbit.server.io.PropertyExportContext;
import org.apache.jackrabbit.server.io.PropertyHandler;
import org.apache.jackrabbit.server.io.PropertyImportContext;
import org.apache.jackrabbit.server.io.CopyMoveHandler;
import org.apache.jackrabbit.server.io.CopyMoveContext;
import org.apache.jackrabbit.webdav.DavException;
import org.apache.jackrabbit.webdav.DavResource;
import org.apache.jackrabbit.webdav.property.PropEntry;
import org.apache.sling.commons.osgi.OsgiUtil;
import org.apache.sling.jcr.webdav.impl.servlets.SlingWebDavServlet;
import org.osgi.framework.Constants;

import java.io.IOException;
import java.util.Map;

import javax.jcr.RepositoryException;

/**
* Wraps {@link org.apache.jackrabbit.server.io.DefaultHandler} in order to run
* it as a service.
*/
@Component(metatype = true, label = "%defaulthandler.name", description = "%defaulthandler.description")
@Properties({
    @Property(name = Constants.SERVICE_RANKING, intValue = 1000, propertyPrivate = false),
    @Property(name = SlingWebDavServlet.TYPE_COLLECTIONS, value = SlingWebDavServlet.TYPE_COLLECTIONS_DEFAULT, propertyPrivate = false),
    @Property(name = SlingWebDavServlet.TYPE_NONCOLLECTIONS, value = SlingWebDavServlet.TYPE_NONCOLLECTIONS_DEFAULT, propertyPrivate = false),
    @Property(name = SlingWebDavServlet.TYPE_CONTENT, value = SlingWebDavServlet.TYPE_CONTENT_DEFAULT, propertyPrivate = false) })
@Service
public class DefaultHandlerService implements IOHandler, PropertyHandler, CopyMoveHandler {

    private DefaultHandler delegatee;

    @Activate
    @Modified
    @SuppressWarnings("unused")
    private void activate(final Map<String, Object> properties) {
        final String collectionType = OsgiUtil.toString(
            properties.get(SlingWebDavServlet.TYPE_COLLECTIONS),
            SlingWebDavServlet.TYPE_COLLECTIONS_DEFAULT);
        final String nonCollectionType = OsgiUtil.toString(
            properties.get(SlingWebDavServlet.TYPE_NONCOLLECTIONS),
            SlingWebDavServlet.TYPE_NONCOLLECTIONS_DEFAULT);
        final String contentType = OsgiUtil.toString(
            properties.get(SlingWebDavServlet.TYPE_CONTENT),
            SlingWebDavServlet.TYPE_CONTENT_DEFAULT);

        this.delegatee = new DefaultHandler(null, collectionType,
            nonCollectionType, contentType);
    }

    @Deactivate
    @SuppressWarnings("unused")
    private void deactivate() {
        this.delegatee = null;
    }

    public IOManager getIOManager() {
        return delegatee.getIOManager();
    }

    public void setIOManager(IOManager ioManager) {
        delegatee.setIOManager(ioManager);
    }

    public String getName() {
        return delegatee.getName();
    }

    public boolean canImport(ImportContext context, boolean isCollection) {
        return delegatee.canImport(context, isCollection);
    }

    public boolean canImport(ImportContext context, DavResource resource) {
        return delegatee.canImport(context, resource);
    }

    public boolean importContent(ImportContext context, boolean isCollection)
            throws IOException {
        return delegatee.importContent(context, isCollection);
    }

    public boolean importContent(ImportContext context, DavResource resource)
            throws IOException {
        return delegatee.importContent(context, resource);
    }

    public boolean canExport(ExportContext context, boolean isCollection) {
        return delegatee.canExport(context, isCollection);
    }

    public boolean canExport(ExportContext context, DavResource resource) {
        return delegatee.canExport(context, resource);
    }

    public boolean exportContent(ExportContext context, boolean isCollection)
            throws IOException {
        return delegatee.exportContent(context, isCollection);
    }

    public boolean exportContent(ExportContext context, DavResource resource)
            throws IOException {
        return delegatee.exportContent(context, resource);
    }

    public boolean canExport(PropertyExportContext context, boolean isCollection) {
        return delegatee.canExport(context, isCollection);
    }

    public boolean exportProperties(PropertyExportContext exportContext,
            boolean isCollection) throws RepositoryException {
        return delegatee.exportProperties(exportContext, isCollection);
    }

    public boolean canImport(PropertyImportContext context, boolean isCollection) {
        return delegatee.canImport(context, isCollection);
    }

    public Map<? extends PropEntry, ?> importProperties(
            PropertyImportContext importContext, boolean isCollection)
            throws RepositoryException {
        return delegatee.importProperties(importContext, isCollection);
    }

    public boolean canCopy(CopyMoveContext context, DavResource source, DavResource destination) {
        return delegatee.canCopy(context, source, destination);
    }

    public boolean copy(CopyMoveContext context, DavResource source, DavResource destination) throws DavException {
        return delegatee.copy(context, source, destination);
    }

    public boolean canMove(CopyMoveContext context, DavResource source, DavResource destination) {
        return delegatee.canMove(context, source, destination);
    }

    public boolean move(CopyMoveContext context, DavResource source, DavResource destination) throws DavException {
      return delegatee.move(context, source, destination);
    }
}
TOP

Related Classes of org.apache.sling.jcr.webdav.impl.handler.DefaultHandlerService

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.