VersionedContentImpl.java
641 Bytes
/*
* Decompiled with CFR 0_118.
*
* Could not load the following classes:
* com.adobe.cq.dam.cfm.VersionedContent
*/
package com.adobe.cq.dam.cfm.impl;
import com.adobe.cq.dam.cfm.VersionedContent;
public class VersionedContentImpl
implements VersionedContent {
private final String content;
private final String contentType;
public VersionedContentImpl(String content, String contentType) {
this.content = content;
this.contentType = contentType;
}
public String getContent() {
return this.content;
}
public String getContentType() {
return this.contentType;
}
}