001/* 002 * SPDX-FileCopyrightText: none 003 * SPDX-License-Identifier: CC0-1.0 004 */ 005 006package dev.metaschema.oscal.lib.model.control; 007 008import java.util.List; 009 010public interface IControlSelection { 011 012 String getWithChildControls(); 013 014 List<String> getWithIds(); 015 016 List<? extends IControlMatching> getMatching(); 017 018}