Package com.github.dreamhead.moco.util

Examples of com.github.dreamhead.moco.util.FileContentType


        return new File(dir, relativePath.get());
    }

    @Override
    protected String getContentType(HttpRequest request) {
        return new FileContentType(targetFile(request).getName()).getContentType();
    }
View Full Code Here


        this.file = file;
    }

    @Override
    public String getContentType() {
        return new FileContentType(file.getName()).getContentType();
    }
View Full Code Here

        }
    }

    @Override
    public String getContentType() {
        return new FileContentType(this.filename).getContentType();
    }
View Full Code Here

TOP

Related Classes of com.github.dreamhead.moco.util.FileContentType

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.