Package com.tccc.kos.commons.manifest
Interface ManifestSection
public interface ManifestSection
Section within a node manifest. A section is a named collection
of kabs. Developers can use sections to collect related kabs
together. The name of the section can be used semantically to
imply meaning to the kabs in the section, such as that the
section contains a user interface or brandset.
- Version:
- 2022-10-15
-
Method Summary
Modifier and TypeMethodDescriptionCollection<? extends ManifestArtifact>
Return the artifacts in the section.getName()
Return the name of the section.
-
Method Details
-
getName
String getName()Return the name of the section. -
getArtifacts
Collection<? extends ManifestArtifact> getArtifacts()Return the artifacts in the section.
-