Package org.glassfish.appclient.server.core.jws.servedcontent

Examples of org.glassfish.appclient.server.core.jws.servedcontent.FixedContent


    private Map.Entry<URI,StaticContent> developerSignedAppContentEntry(URI absURIToFile) {
        final URI jarURIRelativeToApp = EARDirectoryServerURI.relativize(absURIToFile);
        StaticContent content = relURIToContent.get(absURIToFile);
        if (content == null) {
            content = new FixedContent(new File(absURIToFile));
            relURIToContent.put(jarURIRelativeToApp, content);
        }
        return new AbstractMap.SimpleEntry<URI,StaticContent>(
            jarURIRelativeToApp, content);
    }
View Full Code Here

TOP

Related Classes of org.glassfish.appclient.server.core.jws.servedcontent.FixedContent

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.