Package org.sonatype.nexus.rest.model

Examples of org.sonatype.nexus.rest.model.RepositoryShadowResource


    super(nexusClient, settings);
  }

  @Override
  protected RepositoryShadowResource createSettings() {
    final RepositoryShadowResource settings = new RepositoryShadowResource();

    settings.setRepoType(REPO_TYPE);
    settings.setProviderRole(PROVIDER_ROLE);
    settings.setExposed(true);

    return settings;
  }
View Full Code Here


    super(nexusClient, settings);
  }

  @Override
  protected RepositoryShadowResource createSettings() {
    final RepositoryShadowResource settings = super.createSettings();

    settings.setProvider(PROVIDER);

    return settings;
  }
View Full Code Here

    super(nexusClient, settings);
  }

  @Override
  protected RepositoryShadowResource createSettings() {
    final RepositoryShadowResource settings = super.createSettings();

    settings.setProvider(JerseyObrVirtualRepository.PROVIDER);

    return settings;
  }
View Full Code Here

TOP

Related Classes of org.sonatype.nexus.rest.model.RepositoryShadowResource

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.