LaunchSourceImpl.java
707 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.translation.impl;
import com.adobe.cq.launches.api.LaunchSource;
import org.apache.sling.api.resource.Resource;
public class LaunchSourceImpl
implements LaunchSource {
public Resource resource;
public 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;
}
}