Class CompositeKeyMaterialFactory
java.lang.Object
org.jenkinsci.plugins.docker.commons.credentials.KeyMaterialFactory
org.jenkinsci.plugins.docker.commons.impl.CompositeKeyMaterialFactory
@Restricted(org.kohsuke.accmod.restrictions.NoExternalUse.class)
public class CompositeKeyMaterialFactory
extends KeyMaterialFactory
Composes multiple
KeyMaterialFactory
s into one.- Author:
- Kohsuke Kawaguchi
-
Field Summary
Fields inherited from class org.jenkinsci.plugins.docker.commons.credentials.KeyMaterialFactory
NULL
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptioncontextualize
(KeyMaterialContext context) Sets theKeyMaterialContext
within which thisKeyMaterialFactory
canKeyMaterialFactory.materialize()
KeyMaterial
instances.Builds the key material environment variables needed to be passed when docker runs, to accessDockerServerCredentials
that this object was created from.Methods inherited from class org.jenkinsci.plugins.docker.commons.credentials.KeyMaterialFactory
checkContextualized, createSecretsDirectory, getContext, plus
-
Constructor Details
-
CompositeKeyMaterialFactory
-
-
Method Details
-
contextualize
Description copied from class:KeyMaterialFactory
Sets theKeyMaterialContext
within which thisKeyMaterialFactory
canKeyMaterialFactory.materialize()
KeyMaterial
instances. Can only be called once.- Overrides:
contextualize
in classKeyMaterialFactory
- Parameters:
context
- theKeyMaterialContext
.- Returns:
- must return
this
(which is only returned to simplify use via method chaining)
-
materialize
Description copied from class:KeyMaterialFactory
Builds the key material environment variables needed to be passed when docker runs, to accessDockerServerCredentials
that this object was created from.When you are done using the credentials, call
KeyMaterial.close()
to allow sensitive information to be removed from the disk.- Specified by:
materialize
in classKeyMaterialFactory
- Throws:
IOException
InterruptedException
-