hudson.scm
クラス SubversionCredentialProvider

java.lang.Object
  上位を拡張 hudson.scm.SubversionCredentialProvider
すべての実装されたインタフェース:
hudson.ExtensionPoint

public abstract class SubversionCredentialProvider
extends java.lang.Object
implements hudson.ExtensionPoint

Extension point for programmatically providing a credential (such as username/password) for Subversion access.

Put Extension on your implementation to have it registered.

導入されたバージョン:
1.301
作成者:
Kohsuke Kawaguchi

入れ子のクラスの概要
 
インタフェース hudson.ExtensionPoint から継承された入れ子のクラス/インタフェース
hudson.ExtensionPoint.LegacyInstancesAreScopedToHudson
 
コンストラクタの概要
SubversionCredentialProvider()
           
 
メソッドの概要
static hudson.ExtensionList<SubversionCredentialProvider> all()
          All regsitered instances.
abstract  SubversionSCM.DescriptorImpl.Credential getCredential(org.tmatesoft.svn.core.SVNURL url, java.lang.String realm)
          Called whenever Hudson needs to connect to an authenticated subversion repository, to obtain a credential.
 
クラス java.lang.Object から継承されたメソッド
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

コンストラクタの詳細

SubversionCredentialProvider

public SubversionCredentialProvider()
メソッドの詳細

getCredential

public abstract SubversionSCM.DescriptorImpl.Credential getCredential(org.tmatesoft.svn.core.SVNURL url,
                                                                      java.lang.String realm)
Called whenever Hudson needs to connect to an authenticated subversion repository, to obtain a credential.

パラメータ:
realm - This is a non-null string that represents the realm of authentication.
url - URL that is being accessed. Never null.
戻り値:
null if the implementation doesn't understand the given realm. When null is returned, Hudson searches other sources of credentials to come up with one.

all

public static hudson.ExtensionList<SubversionCredentialProvider> all()
All regsitered instances.



Copyright © 2010. All Rights Reserved.