LaunchSourceImpl.java 712 Bytes
/*
 * Decompiled with CFR 0_118.
 * 
 * Could not load the following classes:
 *  com.adobe.cq.launches.api.LaunchSource
 *  org.apache.sling.api.resource.Resource
 */
package com.adobe.cq.wcm.launches.impl;

import com.adobe.cq.launches.api.LaunchSource;
import org.apache.sling.api.resource.Resource;

public class LaunchSourceImpl
implements LaunchSource {
    private final Resource resource;
    private boolean isDeep;

    public LaunchSourceImpl(Resource resource, boolean isDeep) {
        this.resource = resource;
        this.isDeep = isDeep;
    }

    public Resource getSourceRootResource() {
        return this.resource;
    }

    public boolean isDeep() {
        return this.isDeep;
    }
}