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

com.github.wzc789376152.file.service.impl.FileServiceImpl Maven / Gradle / Ivy

There is a newer version: 2.1.1
Show newest version
package com.github.wzc789376152.file.service.impl;

import com.github.wzc789376152.file.FileProperties;
import com.github.wzc789376152.file.manager.IFileManager;

public class FileServiceImpl extends FileServiceAbstract {
    public FileServiceImpl(FileProperties properties, IFileManager manager) {
        super(properties, manager);
    }

    @Override
    public FileProperties getProperties() {
        return fileProperties;
    }

    @Override
    public IFileManager getFileManager() {
        return fileManager;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy