Resource.java 293 Bytes
/*
 * Decompiled with CFR 0_118.
 */
package com.adobe.aemds.connector.repository;

import java.io.IOException;
import java.io.InputStream;

public interface Resource {
    public String getMimeType();

    public int getSize();

    public InputStream getInputStream() throws IOException;
}