Uses of Interface
com.hierynomus.protocol.commons.Factory.Named
-
Packages that use Factory.Named Package Description com.hierynomus.protocol.commons com.hierynomus.smbj com.hierynomus.smbj.auth -
-
Uses of Factory.Named in com.hierynomus.protocol.commons
Methods in com.hierynomus.protocol.commons that return Factory.Named Modifier and Type Method Description static <T> Factory.Named<T>
Factory.Named.Util. get(java.util.List<Factory.Named<T>> factories, java.lang.String name)
Retrieve a particular factory as identified byname
from a list of namedfactories
.Method parameters in com.hierynomus.protocol.commons with type arguments of type Factory.Named Modifier and Type Method Description static <T> T
Factory.Named.Util. create(java.util.List<Factory.Named<T>> factories, java.lang.String name)
Creates an object by picking a factory fromfactories
that is identified byname
from a list of namedfactories
.static <T> Factory.Named<T>
Factory.Named.Util. get(java.util.List<Factory.Named<T>> factories, java.lang.String name)
Retrieve a particular factory as identified byname
from a list of namedfactories
.static <T> java.util.List<java.lang.String>
Factory.Named.Util. getNames(java.util.List<Factory.Named<T>> factories)
Get a comma-delimited string containing the factory names from the given list offactories
. -
Uses of Factory.Named in com.hierynomus.smbj
Fields in com.hierynomus.smbj with type parameters of type Factory.Named Modifier and Type Field Description private java.util.List<Factory.Named<Authenticator>>
SmbConfig. authenticators
Methods in com.hierynomus.smbj that return types with arguments of type Factory.Named Modifier and Type Method Description private static java.util.List<Factory.Named<Authenticator>>
SmbConfig. getDefaultAuthenticators()
java.util.List<Factory.Named<Authenticator>>
SmbConfig. getSupportedAuthenticators()
Methods in com.hierynomus.smbj with parameters of type Factory.Named Modifier and Type Method Description SmbConfig.Builder
SmbConfig.Builder. withAuthenticators(Factory.Named<Authenticator>... authenticators)
Method parameters in com.hierynomus.smbj with type arguments of type Factory.Named Modifier and Type Method Description SmbConfig.Builder
SmbConfig.Builder. withAuthenticators(java.lang.Iterable<Factory.Named<Authenticator>> authenticators)
-
Uses of Factory.Named in com.hierynomus.smbj.auth
Classes in com.hierynomus.smbj.auth that implement Factory.Named Modifier and Type Class Description static class
NtlmAuthenticator.Factory
static class
SpnegoAuthenticator.Factory
-