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