Uses of Interface
org.springframework.boot.buildpack.platform.io.Owner
Packages that use Owner
Package
Description
Central API for performing a buildpack build.
IO classes and utilities.
-
Uses of Owner in org.springframework.boot.buildpack.platform.build
Methods in org.springframework.boot.buildpack.platform.build with parameters of type OwnerModifier and TypeMethodDescriptionBuildRequest.getApplicationContent
(Owner owner) Return aTarArchive
containing the application content that the buildpack should package.Method parameters in org.springframework.boot.buildpack.platform.build with type arguments of type OwnerModifier and TypeMethodDescriptionstatic BuildRequest
BuildRequest.of
(ImageReference name, Function<Owner, TarArchive> applicationContent) Factory method to create a newBuildRequest
with specific content. -
Uses of Owner in org.springframework.boot.buildpack.platform.io
Fields in org.springframework.boot.buildpack.platform.io declared as OwnerMethods in org.springframework.boot.buildpack.platform.io that return OwnerModifier and TypeMethodDescriptionstatic Owner
Owner.of
(long uid, long gid) Factory method to create a newOwner
with specified user/group identifier.Methods in org.springframework.boot.buildpack.platform.io with parameters of type OwnerModifier and TypeMethodDescriptiondefault void
Add a directory to the content.void
Add a directory to the content.void
Write a file to the content.default void
Write a file to the content.static TarArchive
Factory method to adapt a ZIP file toTarArchive
.Constructors in org.springframework.boot.buildpack.platform.io with parameters of type OwnerModifierConstructorDescriptionZipFileTarArchive
(File zip, Owner owner) Creates an archive from the contents of the givenzip
.