Settings.java :  » IntelliJ » ibatis-plugin » org » intellij » ibatis » dom » configuration » Java Open Source

Java Open Source » IntelliJ » ibatis plugin 
ibatis plugin » org » intellij » ibatis » dom » configuration » Settings.java
package org.intellij.ibatis.dom.configuration;

import com.intellij.javaee.model.xml.CommonDomModelElement;
import com.intellij.util.xml.GenericAttributeValue;
import com.intellij.util.xml.Attribute;

/**
 * properties element in iBATIS configuration xml file
 */
public interface Settings extends CommonDomModelElement {

    public GenericAttributeValue<String> getCacheModelsEnabled();

    public GenericAttributeValue<String> getEnhancementEnabled();

    public GenericAttributeValue<String> getLazyLoadingEnabled();

    public GenericAttributeValue<Integer> getMaxRequests();

    public GenericAttributeValue<Integer> getMaxSessions();

    public GenericAttributeValue<Integer> getMaxTransactions();

    @Attribute("useStatementNamespaces")
    public GenericAttributeValue<String> getUseStatementNamespaces();
    
    public GenericAttributeValue<Integer> getDefaultStatementTimeout();

    public GenericAttributeValue<Integer> getStatementCachingEnabled();

    public GenericAttributeValue<String> getClassInfoCacheEnabledd();
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.