Package org.sonatype.nexus.plugins.rest

Examples of org.sonatype.nexus.plugins.rest.DefaultStaticResource


public class ArtifactUsageResourceBundle extends AbstractNexusResourceBundle {
  @Override
  public List<StaticResource> getContributedResouces() {
    List<StaticResource> result = new ArrayList<StaticResource>();

    result.add(new DefaultStaticResource(
            getClass().getResource("/static/js/nexus-artifact-usage-plugin-all.js"),
            "/js/repoServer/nexus-artifact-usage-plugin-all.js",
            "application/x-javascript"));
    result.add(new DefaultStaticResource(
            getClass().getResource("/static/icons/jar-jar.png"),
            "/icons/repoServer/jar-jar.png",
            "image/png"));

    return result;
View Full Code Here

TOP

Related Classes of org.sonatype.nexus.plugins.rest.DefaultStaticResource

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.