001    /*
002     * Licensed to the Apache Software Foundation (ASF) under one
003     * or more contributor license agreements.  See the NOTICE file
004     * distributed with this work for additional information
005     * regarding copyright ownership.  The ASF licenses this file
006     * to you under the Apache License, Version 2.0 (the
007     * "License"); you may not use this file except in compliance
008     * with the License.  You may obtain a copy of the License at
009     *
010     *  http://www.apache.org/licenses/LICENSE-2.0
011     *
012     * Unless required by applicable law or agreed to in writing,
013     * software distributed under the License is distributed on an
014     * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
015     * KIND, either express or implied.  See the License for the
016     * specific language governing permissions and limitations
017     * under the License.
018     */
019    package org.apache.directory.server.core.annotations;
020    
021    import java.lang.annotation.ElementType;
022    import java.lang.annotation.Retention;
023    import java.lang.annotation.RetentionPolicy;
024    import java.lang.annotation.Target;
025    
026    import org.apache.directory.server.core.factory.DefaultDirectoryServiceFactory;
027    
028    /**
029     * An anntation for the DirectoryService builder
030     *
031     * @author <a href="mailto:dev@directory.apache.org">Apache Directory Project</a>
032     * @version $Rev$, $Date$
033     */
034    @Retention(RetentionPolicy.RUNTIME)
035    @Target( {ElementType.METHOD, ElementType.TYPE } )
036    public @interface CreateDS
037    {
038        /** The Factory to use to create a DirectoryService */
039        Class<?> factory() default DefaultDirectoryServiceFactory.class;
040        
041        /** The DS name */
042        String name() default "defaultDS";
043        
044        /** flag to enable/disable access control, default is false */
045        boolean enableAccessControl() default false;
046        
047        /** flag to enable/disable anonymous access, default is false */
048        boolean allowAnonAccess() default false;
049        
050        /** flag to enable/disable changelog, default is true */
051        boolean enableChangeLog() default true;
052        
053        /** The list of partitions to create */
054        CreatePartition[] partitions() default {};
055        
056        /** additional interceptors */
057        Class<?>[] additionalInterceptors() default {};
058    }