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 aTarArchivecontaining 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 BuildRequestBuildRequest.of(ImageReference name, Function<Owner, TarArchive> applicationContent) Factory method to create a newBuildRequestwith 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 OwnerOwner.of(long uid, long gid) Factory method to create a newOwnerwith specified user/group identifier.Methods in org.springframework.boot.buildpack.platform.io with parameters of type OwnerModifier and TypeMethodDescriptiondefault voidAdd a directory to the content.voidAdd a directory to the content.voidWrite a file to the content.default voidWrite a file to the content.static TarArchiveFactory 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.