001/* 002 * SPDX-FileCopyrightText: none 003 * SPDX-License-Identifier: CC0-1.0 004 */ 005 006package dev.metaschema.oscal.lib.model.control; 007 008@SuppressWarnings("PMD.ImplicitFunctionalInterface") 009public interface IControlMatching { 010 011 String getPattern(); 012 013}