Package gov.nist.scap.xccdf

Examples of gov.nist.scap.xccdf.ProfileNotFoundException


            /*
             * 2 - Apply a Profile (if any)
             */
            Profile profile = lookupProfile(id);
            if (profile == null) {
                throw(new ProfileNotFoundException(id));
            }

            log.info("Processing XCCDF document using profile: " + id);

            // Apply select selectors in document order
View Full Code Here

TOP

Related Classes of gov.nist.scap.xccdf.ProfileNotFoundException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.