001/*
002 * Copyright (c) 2006-2011 Nuxeo SA (http://nuxeo.com/) and others.
003 *
004 * All rights reserved. This program and the accompanying materials
005 * are made available under the terms of the Eclipse Public License v1.0
006 * which accompanies this distribution, and is available at
007 * http://www.eclipse.org/legal/epl-v10.html
008 *
009 * Contributors:
010 *     Stephane Lacoin
011 */
012package org.nuxeo.ecm.core.test.annotations;
013
014import java.lang.annotation.ElementType;
015import java.lang.annotation.Inherited;
016import java.lang.annotation.Retention;
017import java.lang.annotation.RetentionPolicy;
018import java.lang.annotation.Target;
019
020@Inherited
021@Retention(RetentionPolicy.RUNTIME)
022@Target({ ElementType.TYPE, ElementType.METHOD })
023public @interface TransactionalConfig {
024
025    boolean autoStart() default true;
026}