Package org.sonatype.nexus.client.core.subsystem.repository

Examples of org.sonatype.nexus.client.core.subsystem.repository.Repository.withName()


  @Test
  public void refreshProxy() {
    final Repository repository = repositories().get("central");
    final String name = repository.name();
    repository.withName("foo");
    repository.refresh();
    assertThat(repository.name(), is(name));
  }

  @Test
View Full Code Here


  @Test
  public void refreshGroup() {
    final Repository repository = repositories().get("public");
    final String name = repository.name();
    repository.withName("foo");
    repository.refresh();
    assertThat(repository.name(), is(name));
  }

  @Test
View Full Code Here

  @Test
  public void refreshShadow() {
    final Repository repository = repositories().get("central-m1");
    final String name = repository.name();
    repository.withName("foo");
    repository.refresh();
    assertThat(repository.name(), is(name));
  }

  @Test
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.