ContentReference.java
879 Bytes
/*
* Decompiled with CFR 0_118.
*
* Could not load the following classes:
* com.adobe.granite.references.Reference
* org.apache.sling.api.resource.Resource
*/
package com.day.cq.wcm.core.references;
import com.adobe.granite.references.Reference;
import com.day.cq.wcm.core.references.ContentReferenceDescription;
import org.apache.sling.api.resource.Resource;
public class ContentReference
extends Reference {
private final ContentReferenceDescription contentReferenceDescription;
public ContentReference(Resource source, Resource target, ContentReferenceDescription contentReferenceDescription, String type) {
super(source, target, type);
this.contentReferenceDescription = contentReferenceDescription;
}
public ContentReferenceDescription getContentReferenceDescription() {
return this.contentReferenceDescription;
}
}