1   /*
2    * SPDX-FileCopyrightText: none
3    * SPDX-License-Identifier: CC0-1.0
4    */
5   
6   package dev.metaschema.oscal.lib.model.control;
7   
8   import java.util.List;
9   
10  public interface IControlSelection {
11  
12    String getWithChildControls();
13  
14    List<String> getWithIds();
15  
16    List<? extends IControlMatching> getMatching();
17  
18  }