当前位置: 首页>>代码示例>>Java>>正文


Java LightweightHttpWagon类代码示例

本文整理汇总了Java中org.apache.maven.wagon.providers.http.LightweightHttpWagon的典型用法代码示例。如果您正苦于以下问题:Java LightweightHttpWagon类的具体用法?Java LightweightHttpWagon怎么用?Java LightweightHttpWagon使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


LightweightHttpWagon类属于org.apache.maven.wagon.providers.http包,在下文中一共展示了LightweightHttpWagon类的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: lookup

import org.apache.maven.wagon.providers.http.LightweightHttpWagon; //导入依赖的package包/类
/**
 * {@inheritDoc}
 * 
 * @see org.sonatype.aether.connector.wagon.WagonProvider#lookup(java.lang.String)
 */
@Override
public Wagon lookup(final String roleHint) throws Exception
{
   if (roleHint.equals(HTTP))
   {
      return setAuthenticator(new LightweightHttpWagon());
   }
   else if (roleHint.equals(HTTPS))
   {
      return setAuthenticator(new LightweightHttpsWagon());
   }
   else if (roleHint.equals(FILE))
   {
      return new FileWagon();
   }

   throw new RuntimeException("Role hint not supported: " + roleHint);
}
 
开发者ID:forge,项目名称:furnace,代码行数:24,代码来源:ManualWagonProvider.java

示例2: lookup

import org.apache.maven.wagon.providers.http.LightweightHttpWagon; //导入依赖的package包/类
@Override
public Wagon lookup(String roleHint) throws Exception {
    if ("http".equals(roleHint)) {
        if (useLightweightHttpWagon) {
            LightweightHttpWagon lightweightHttpWagon = new LightweightHttpWagon();
            FieldUtils.writeField(lightweightHttpWagon, "authenticator", new LightweightHttpWagonAuthenticator(), true);
            return lightweightHttpWagon;
        } else {
            return new HttpWagon();
        }
    } else if ("https".equals(roleHint)) {
        if (useLightweightHttpWagon) {
            LightweightHttpsWagon lightweightHttpsWagon = new LightweightHttpsWagon();
            FieldUtils.writeField(lightweightHttpsWagon, "authenticator", new LightweightHttpWagonAuthenticator(), true);
            return lightweightHttpsWagon;
        } else {
            return new HttpWagon();
        }
    } else if ("file".equals(roleHint)) {
        return new FileWagon();
    }
    return null;
}
 
开发者ID:release-engineering,项目名称:redhat-repository-validator,代码行数:24,代码来源:InternalWagonProvider.java

示例3: lookup

import org.apache.maven.wagon.providers.http.LightweightHttpWagon; //导入依赖的package包/类
@Override
public Wagon lookup(String roleHint) throws Exception {
  if ("http".equals(roleHint)) {
    return new LightweightHttpWagon();
  }

  if ("https".equals(roleHint)) {
    return new HttpWagon();
  }

  return null;
}
 
开发者ID:lorthos,项目名称:incubator-zeppelin-druid,代码行数:13,代码来源:RepositorySystemFactory.java

示例4: lookup

import org.apache.maven.wagon.providers.http.LightweightHttpWagon; //导入依赖的package包/类
public Wagon lookup(String roleHint) {
    if ("http".equals(roleHint)) {
        return new LightweightHttpWagon() {
            @Override
            protected void openConnectionInternal() throws ConnectionException, AuthenticationException {
            }
        };
    }
    return null;
}
 
开发者ID:motech,项目名称:motech,代码行数:11,代码来源:ModuleAdminServiceImpl.java

示例5: setAuthenticator

import org.apache.maven.wagon.providers.http.LightweightHttpWagon; //导入依赖的package包/类
private LightweightHttpWagon setAuthenticator(final LightweightHttpWagon wagon)
{
   final Field authenticator;
   try
   {
      authenticator = AccessController.doPrivileged(new PrivilegedExceptionAction<Field>()
      {
         @Override
         public Field run() throws Exception
         {
            final Field field = LightweightHttpWagon.class.getDeclaredField("authenticator");
            field.setAccessible(true);
            return field;
         }
      });
   }
   catch (final PrivilegedActionException pae)
   {
      throw new RuntimeException("Could not manually set authenticator to accessible on "
               + LightweightHttpWagon.class.getName(), pae);
   }
   try
   {
      authenticator.set(wagon, new LightweightHttpWagonAuthenticator());
   }
   catch (final Exception e)
   {
      throw new RuntimeException("Could not manually set authenticator on " + LightweightHttpWagon.class.getName(),
               e);
   }

   // SHRINKRES-69
   // Needed to ensure that we do not cache BASIC Auth values
   wagon.setPreemptiveAuthentication(true);

   return wagon;
}
 
开发者ID:forge,项目名称:furnace,代码行数:38,代码来源:ManualWagonProvider.java


注:本文中的org.apache.maven.wagon.providers.http.LightweightHttpWagon类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。