All Downloads are FREE. Search and download functionalities are using the official Maven repository.

de.zebrajaeger.opencms.resourceplugin.ResourceCreatorConfig Maven / Gradle / Ivy

package de.zebrajaeger.opencms.resourceplugin;

import java.io.File;

/**
 * Created by lars on 12.02.2017.
 */
public interface ResourceCreatorConfig {
    enum Layout{
        DISTRIBUTED, RESOURCE
    }

    File getManifestDir();

    String getManifestStubFile();

    File getVfsDir();

    String getNewResourceName();

    String getResourceId();

    String getIcon();

    String getBigicon();

    String getModuleName();

    Layout getLayout();

    String getResourceTypeSubDirectory();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy