Package org.apache.directory.server.core.changelog

Examples of org.apache.directory.server.core.changelog.ChangeLog


        if ( ( changeLogBean == null ) || changeLogBean.isDisabled() )
        {
            return null;
        }
       
        ChangeLog changeLog = new DefaultChangeLog();
       
        changeLog.setEnabled( changeLogBean.isEnabled() );
        changeLog.setExposed( changeLogBean.isChangeLogExposed() );

        return changeLog;
    }
View Full Code Here


       
        // AllowAnonymousAccess
        directoryService.setAllowAnonymousAccess( directoryServiceBean.isDsAllowAnonymousAccess() );
       
        // ChangeLog
        ChangeLog cl = createChangeLog( directoryServiceBean.getChangeLog() );
        if ( cl != null )
        {
            directoryService.setChangeLog( cl );
        }
       
View Full Code Here

TOP

Related Classes of org.apache.directory.server.core.changelog.ChangeLog

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.