ContentReferenceDescription.java
540 Bytes
/*
* Decompiled with CFR 0_118.
*/
package com.day.cq.wcm.core.references;
public class ContentReferenceDescription {
private final String resourceType;
private final String attributeName;
public ContentReferenceDescription(String resourceType, String attributeName) {
this.resourceType = resourceType;
this.attributeName = attributeName;
}
public String getResourceType() {
return this.resourceType;
}
public String getAttributeName() {
return this.attributeName;
}
}