Package org.apache.sling.launchpad.testservices.resourceprovider

Source Code of org.apache.sling.launchpad.testservices.resourceprovider.PlanetResource$PlanetValueMap

/*
* 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.launchpad.testservices.resourceprovider;

import java.util.HashMap;

import org.apache.sling.api.resource.AbstractResource;
import org.apache.sling.api.resource.Resource;
import org.apache.sling.api.resource.ResourceMetadata;
import org.apache.sling.api.resource.ResourceResolver;
import org.apache.sling.api.resource.ValueMap;
import org.apache.sling.api.wrappers.ValueMapDecorator;
import org.apache.sling.adapter.annotations.Adaptable;
import org.apache.sling.adapter.annotations.Adapter;

/** A Sling Resource that represents a planet */
@Adaptable(adaptableClass=Resource.class, adapters={
    @Adapter({ValueMap.class})
})
public class PlanetResource extends AbstractResource implements Resource {

    private final String path;
    private final ResourceMetadata metadata;
    private final ValueMap valueMap;
    private final ResourceResolver resolver;
   
    public static final String RESOURCE_TYPE = "sling/test-services/planet";
   
    static class PlanetValueMap extends ValueMapDecorator {
        PlanetValueMap(String name, int distance) {
            super(new HashMap<String, Object>());
            put("name", name);
            put("distance", distance);
        }
    }
   
    PlanetResource(ResourceResolver resolver, String path, ValueMap valueMap) {
        this.path = path;
               
        this.valueMap = valueMap;
        this.resolver = resolver;
       
        metadata = new ResourceMetadata();
        metadata.setResolutionPath(path);
    }
   
    @Override
    public String toString() {
        return getClass().getSimpleName() + " " + path;
    }
   
    public String getPath() {
        return path;
    }

    public ResourceMetadata getResourceMetadata() {
        return metadata;
    }

    public ResourceResolver getResourceResolver() {
        return resolver;
    }

    public String getResourceSuperType() {
        return null;
    }

    public String getResourceType() {
        return RESOURCE_TYPE;
    }
   
    @Override
    @SuppressWarnings("unchecked")
    public <AdapterType> AdapterType adaptTo(Class<AdapterType> type) {
        if(type == ValueMap.class) {
            return (AdapterType)valueMap;
        }
        return super.adaptTo(type);
    }
}
TOP

Related Classes of org.apache.sling.launchpad.testservices.resourceprovider.PlanetResource$PlanetValueMap

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.