ResourceWrapper.java
768 Bytes
/*
* Decompiled with CFR 0_118.
*
* Could not load the following classes:
* org.apache.sling.api.resource.Resource
* org.apache.sling.api.resource.ResourceWrapper
*/
package com.day.cq.wcm.foundation.forms.impl;
import org.apache.sling.api.resource.Resource;
public class ResourceWrapper
extends org.apache.sling.api.resource.ResourceWrapper {
private final String resourceType;
private final String resourceSuperType;
public ResourceWrapper(Resource r, String rt, String rst) {
super(r);
this.resourceType = rt;
this.resourceSuperType = rst;
}
public String getResourceSuperType() {
return this.resourceSuperType;
}
public String getResourceType() {
return this.resourceType;
}
}