Package org.jasig.portal.logging

Examples of org.jasig.portal.logging.AppendableLogger


        EXPORT,
        DELETE
    }
   
    public static void format(IPortalDataHandlerService dataHandlerService, Logger l) {
        final Formatter f = new Formatter(new AppendableLogger(l, LogLevel.INFO));
       
        final Map<String, Set<Operations>> portalDataTypes = new TreeMap<String, Set<Operations>>();
       
        final Iterable<IPortalDataType> exportPortalDataTypes = dataHandlerService.getExportPortalDataTypes();
        addDataTypes(portalDataTypes, exportPortalDataTypes, Operations.EXPORT);
View Full Code Here


       
        tableFormatter.format(f);
    }
   
    public static void format(Iterable<? extends IPortalData> data, Logger l) {
        final Formatter f = new Formatter(new AppendableLogger(l, LogLevel.INFO));
       
        final TableFormatter tableFormatter = new TableFormatter(
                new TableEntry<String>("sysid", "-", "s"),
                new TableEntry<String>("Description", "-", "s"));
       
View Full Code Here

TOP

Related Classes of org.jasig.portal.logging.AppendableLogger

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.