View Javadoc
1   package gov.nist.secauto.oscal.lib.model;
2   
3   import gov.nist.secauto.metaschema.binding.model.annotations.MetaschemaAssembly;
4   import java.lang.Override;
5   import java.lang.String;
6   import org.apache.commons.lang3.builder.MultilineRecursiveToStringStyle;
7   import org.apache.commons.lang3.builder.ReflectionToStringBuilder;
8   
9   /**
10   * Include all controls from the imported catalog or profile resources.
11   */
12  @MetaschemaAssembly(
13      formalName = "Include All",
14      description = "Include all controls from the imported catalog or profile resources.",
15      name = "include-all",
16      metaschema = OscalControlCommonMetaschema.class,
17      remarks = "This element provides an alternative to calling controls individually from a catalog."
18  )
19  public class IncludeAll {
20    public IncludeAll() {
21    }
22  
23    @Override
24    public String toString() {
25      return new ReflectionToStringBuilder(this, MultilineRecursiveToStringStyle.MULTI_LINE_STYLE).toString();
26    }
27  }