org.apache.maven.artifact.repository.Authentication.getUsername()方法的使用及代码示例

x33g5p2x  于2022-01-17 转载在 其他  
字(7.0k)|赞(0)|评价(0)|浏览(109)

本文整理了Java中org.apache.maven.artifact.repository.Authentication.getUsername()方法的一些代码示例,展示了Authentication.getUsername()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Authentication.getUsername()方法的具体详情如下:
包路径:org.apache.maven.artifact.repository.Authentication
类名称:Authentication
方法名:getUsername

Authentication.getUsername介绍

[英]Get the username used to access the repository.
[中]获取用于访问存储库的用户名。

代码示例

代码示例来源:origin: apache/maven

String getRepositoryKey( ArtifactRepository repository )
{
  StringBuilder buffer = new StringBuilder( 256 );
  Proxy proxy = repository.getProxy();
  if ( proxy != null )
  {
    if ( proxy.getUserName() != null )
    {
      int hash = ( proxy.getUserName() + proxy.getPassword() ).hashCode();
      buffer.append( hash ).append( '@' );
    }
    buffer.append( proxy.getHost() ).append( ':' ).append( proxy.getPort() ).append( '>' );
  }
  // consider the username&password because a repo manager might block artifacts depending on authorization
  Authentication auth = repository.getAuthentication();
  if ( auth != null )
  {
    int hash = ( auth.getUsername() + auth.getPassword() ).hashCode();
    buffer.append( hash ).append( '@' );
  }
  // consider the URL (instead of the id) as this most closely relates to the contents in the repo
  buffer.append( repository.getUrl() );
  return buffer.toString();
}

代码示例来源:origin: apache/maven

private AuthenticationInfo authenticationInfo( ArtifactRepository repository )
{
  AuthenticationInfo ai = new AuthenticationInfo();
  ai.setUserName( repository.getAuthentication().getUsername() );
  ai.setPassword( repository.getAuthentication().getPassword() );
  return ai;
}

代码示例来源:origin: apache/maven

private static Authentication toAuthentication( org.apache.maven.artifact.repository.Authentication auth )
{
  Authentication result = null;
  if ( auth != null )
  {
    AuthenticationBuilder authBuilder = new AuthenticationBuilder();
    authBuilder.addUsername( auth.getUsername() ).addPassword( auth.getPassword() );
    authBuilder.addPrivateKey( auth.getPrivateKey(), auth.getPassphrase() );
    result = authBuilder.build();
  }
  return result;
}

代码示例来源:origin: spring-projects/sts4

private String getLastUpdatedKey(ArtifactRepository repository, Artifact artifact) {
  StringBuilder key = new StringBuilder();
  // repository part
  key.append(repository.getId());
  if (repository.getAuthentication() != null) {
    key.append('|').append(repository.getAuthentication().getUsername());
  }
  key.append('|').append(repository.getUrl());
  // artifact part
  key.append('|').append(artifact.getClassifier());
  return key.toString();
}

代码示例来源:origin: spring-projects/sts4

private List<ArtifactRepository> removeDuplicateRepositories(ArrayList<ArtifactRepository> repositories) {
  ArrayList<ArtifactRepository> result = new ArrayList<ArtifactRepository>();
  HashSet<String> keys = new HashSet<String>();
  for (ArtifactRepository repository : repositories) {
    StringBuilder key = new StringBuilder();
    if (repository.getId() != null) {
      key.append(repository.getId());
    }
    key.append(':').append(repository.getUrl()).append(':');
    if (repository.getAuthentication() != null && repository.getAuthentication().getUsername() != null) {
      key.append(repository.getAuthentication().getUsername());
    }
    if (keys.add(key.toString())) {
      result.add(repository);
    }
  }
  return result;
}

代码示例来源:origin: wildfly-swarm-archive/ARCHIVE-wildfly-swarm

public void remoteRepository(ArtifactRepository repo) {
  RemoteRepository.Builder builder = new RemoteRepository.Builder(repo.getId(), "default", repo.getUrl());
  final Authentication mavenAuth = repo.getAuthentication();
  if (mavenAuth != null && mavenAuth.getUsername() != null && mavenAuth.getPassword() != null) {
    builder.setAuthentication(new AuthenticationBuilder()
        .addUsername(mavenAuth.getUsername())
        .addPassword(mavenAuth.getPassword()).build());
  }
  this.remoteRepositories.add(builder.build());
}

代码示例来源:origin: takari/takari-lifecycle

private static Authentication toAuthentication(org.apache.maven.artifact.repository.Authentication auth) {
 Authentication result = null;
 if (auth != null) {
  AuthenticationBuilder authBuilder = new AuthenticationBuilder();
  authBuilder.addUsername(auth.getUsername()).addPassword(auth.getPassword());
  authBuilder.addPrivateKey(auth.getPrivateKey(), auth.getPassphrase());
  result = authBuilder.build();
 }
 return result;
}

代码示例来源:origin: io.takari.maven.plugins/takari-lifecycle-plugin

private static Authentication toAuthentication(org.apache.maven.artifact.repository.Authentication auth) {
 Authentication result = null;
 if (auth != null) {
  AuthenticationBuilder authBuilder = new AuthenticationBuilder();
  authBuilder.addUsername(auth.getUsername()).addPassword(auth.getPassword());
  authBuilder.addPrivateKey(auth.getPrivateKey(), auth.getPassphrase());
  result = authBuilder.build();
 }
 return result;
}

代码示例来源:origin: egineering-llc/gitflow-helper-maven-plugin

/**
 * Builds a RemoteRepository for resolving artifacts.
 *
 * @param altRepository the repository identifier or alt-syntax specification
 * @return the resolve remote repository
 * @throws MojoExecutionException if the provided repository specification defines an invalid repository layout
 * @throws MojoFailureException if the provided repository specification is invalid
 */
RemoteRepository getRepository(final String altRepository) throws MojoExecutionException, MojoFailureException {
  if (getLog().isDebugEnabled()) {
    getLog().debug("Creating remote Aether repository (to resolve remote artifacts) for: " + altRepository);
  }
  // Get an appropriate injected ArtifactRepository. (This resolves authentication in the 'normal' manner from Maven)
  ArtifactRepository remoteArtifactRepo = getDeploymentRepository(altRepository);
  if (getLog().isDebugEnabled()) {
    getLog().debug("Resolved maven deployment repository. Transcribing to Aether Repository...");
  }
  RemoteRepository.Builder remoteRepoBuilder = new RemoteRepository.Builder(remoteArtifactRepo.getId(), remoteArtifactRepo.getLayout().getId(), remoteArtifactRepo.getUrl());
  // Add authentication.
  if (remoteArtifactRepo.getAuthentication() != null) {
    if (getLog().isDebugEnabled()) {
      getLog().debug("Maven deployment repsoitory has Authentication. Transcribing to Aether Authentication...");
    }
    remoteRepoBuilder.setAuthentication(new AuthenticationBuilder().addUsername(remoteArtifactRepo.getAuthentication().getUsername())
        .addPassword(remoteArtifactRepo.getAuthentication().getPassword())
        .addPrivateKey(remoteArtifactRepo.getAuthentication().getPrivateKey(), remoteArtifactRepo.getAuthentication().getPassphrase())
        .build());
  }
  return remoteRepoBuilder.build();
}

代码示例来源:origin: org.springframework.boot.experimental/spring-boot-thin-launcher

private org.apache.maven.repository.Proxy proxy(MavenSettings settings,
    RepositorySystemSession session, RemoteRepository remote,
    ProxySelector proxy) {
  Proxy config = proxy.getProxy(remote);
  if (config == null) {
    return null;
  }
  org.apache.maven.repository.Proxy result = new org.apache.maven.repository.Proxy();
  result.setHost(config.getHost());
  if (config.getAuthentication() != null) {
    org.apache.maven.artifact.repository.Authentication auth = authentication(
        settings, session,
        new RemoteRepository.Builder(remote)
            .setAuthentication(config.getAuthentication()).build(),
        config.getAuthentication());
    result.setUserName(auth.getUsername());
    result.setPassword(auth.getPassword() != null ? auth.getPassword()
        : auth.getPassphrase());
  }
  result.setProtocol(config.getType());
  result.setPort(config.getPort());
  return result;
}

相关文章