Package io.grafeas.v1

Interface CompletenessOrBuilder

  • All Superinterfaces:
    com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder
    All Known Implementing Classes:
    Completeness, Completeness.Builder

    public interface CompletenessOrBuilder
    extends com.google.protobuf.MessageOrBuilder
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      boolean getArguments()
      If true, the builder claims that recipe.arguments is complete, meaning that all external inputs are properly captured in the recipe.
      boolean getEnvironment()
      If true, the builder claims that recipe.environment is claimed to be complete.
      boolean getMaterials()
      If true, the builder claims that materials are complete, usually through some controls to prevent network access.
      • Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

        isInitialized
      • Methods inherited from interface com.google.protobuf.MessageOrBuilder

        findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
    • Method Detail

      • getArguments

        boolean getArguments()
         If true, the builder claims that recipe.arguments is complete, meaning that
         all external inputs are properly captured in the recipe.
         
        bool arguments = 1;
        Returns:
        The arguments.
      • getEnvironment

        boolean getEnvironment()
         If true, the builder claims that recipe.environment is claimed to be
         complete.
         
        bool environment = 2;
        Returns:
        The environment.
      • getMaterials

        boolean getMaterials()
         If true, the builder claims that materials are complete, usually through
         some controls to prevent network access. Sometimes called "hermetic".
         
        bool materials = 3;
        Returns:
        The materials.