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

net.n2oapp.framework.config.test.FrontendFileSystemResource Maven / Gradle / Ivy

The newest version!
package net.n2oapp.framework.config.test;

import org.springframework.core.io.FileSystemResource;

/**
 * Ресурс в директории frontend модуля.
 */
public class FrontendFileSystemResource extends FileSystemResource {

    private static String FRONTEND_RELATIVE_PATH = "../../../frontend/n2o-framework/src/";

    public FrontendFileSystemResource(String path) {
        super(FRONTEND_RELATIVE_PATH + path);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy