1   /*
2    * SPDX-FileCopyrightText: none
3    * SPDX-License-Identifier: CC0-1.0
4    */
5   
6   package gov.nist.secauto.oscal.lib.model.control.profile;
7   
8   import gov.nist.secauto.oscal.lib.model.Matching;
9   
10  import java.util.List;
11  
12  public interface IProfileSelectControlById {
13  
14    String getWithChildControls();
15  
16    List<String> getWithIds();
17  
18    List<Matching> getMatching();
19  
20  }