001/*
002 * SPDX-FileCopyrightText: none
003 * SPDX-License-Identifier: CC0-1.0
004 */
005
006package gov.nist.secauto.oscal.lib.model.control.profile;
007
008import gov.nist.secauto.oscal.lib.model.Matching;
009
010import java.util.List;
011
012public interface IProfileSelectControlById {
013
014  String getWithChildControls();
015
016  List<String> getWithIds();
017
018  List<Matching> getMatching();
019
020}