All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.seata.spring.annotation.AspectTransactional Maven / Gradle / Ivy

There is a newer version: 2.0.0
Show newest version
/*
 *  Copyright 1999-2019 Seata.io Group.
 *
 *  Licensed under the Apache License, Version 2.0 (the "License");
 *  you may not use this file except in compliance with the License.
 *  You may obtain a copy of the License at
 *
 *       http://www.apache.org/licenses/LICENSE-2.0
 *
 *  Unless required by applicable law or agreed to in writing, software
 *  distributed under the License is distributed on an "AS IS" BASIS,
 *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 *  See the License for the specific language governing permissions and
 *  limitations under the License.
 */
package io.seata.spring.annotation;

import io.seata.common.DefaultValues;
import io.seata.common.LockStrategyMode;
import io.seata.common.util.StringUtils;
import io.seata.tm.api.transaction.Propagation;

/**
 * @author funkye
 */
public class AspectTransactional {
    
    /**
     * Global transaction timeoutMills in MILLISECONDS.
     */
    private int timeoutMills = DefaultValues.DEFAULT_GLOBAL_TRANSACTION_TIMEOUT;

    /**
     * Given name of the global transaction instance.
     */
    private String name = "";

    /**
     * roll back for the Class
     */
    private Class[] rollbackFor = new Class[] {};

    /**
     * roll back for the class name
     */
    private String[] rollbackForClassName = {};

    /**
     * not roll back for the Class
     */
    private Class[] noRollbackFor = new Class[] {};

    /**
     * not roll back for the class name
     */
    private String[] noRollbackForClassName = {};

    /**
     * the propagation of the global transaction
     */
    private Propagation propagation = Propagation.REQUIRED;

    /**
     * customized global lock retry interval(unit: ms)
     * you may use this to override global config of "client.rm.lock.retryInterval"
     * note: 0 or negative number will take no effect(which mean fall back to global config)
     */
    int lockRetryInterval = 0;

    /**
     * customized global lock retry times
     * you may use this to override global config of "client.rm.lock.retryTimes"
     * note: negative number will take no effect(which mean fall back to global config)
     */
    int lockRetryTimes = -1;

    /**
     * lock strategy mode
     */
    LockStrategyMode lockStrategyMode;

    public AspectTransactional() {}

    public AspectTransactional(int timeoutMills, String name, Class[] rollbackFor,
        String[] rollbackForClassName, Class[] noRollbackFor, String[] noRollbackForClassName,
        Propagation propagation, int lockRetryInterval, int lockRetryTimes, LockStrategyMode lockStrategyMode) {
        this.timeoutMills = timeoutMills;
        this.name = name;
        this.rollbackFor = rollbackFor;
        this.rollbackForClassName = rollbackForClassName;
        this.noRollbackFor = noRollbackFor;
        this.noRollbackForClassName = noRollbackForClassName;
        this.propagation = propagation;
        this.lockRetryInterval = lockRetryInterval;
        this.lockRetryTimes = lockRetryTimes;
        this.lockStrategyMode = lockStrategyMode;
    }

    public int getTimeoutMills() {
        return timeoutMills;
    }

    public void setTimeoutMills(int timeoutMills) {
        this.timeoutMills = timeoutMills;
    }

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public Class[] getRollbackFor() {
        return rollbackFor;
    }

    public void setRollbackFor(Class[] rollbackFor) {
        this.rollbackFor = rollbackFor;
    }

    public String[] getRollbackForClassName() {
        return rollbackForClassName;
    }

    public void setRollbackForClassName(String[] rollbackForClassName) {
        this.rollbackForClassName = rollbackForClassName;
    }

    public Class[] getNoRollbackFor() {
        return noRollbackFor;
    }

    public void setNoRollbackFor(Class[] noRollbackFor) {
        this.noRollbackFor = noRollbackFor;
    }

    public String[] getNoRollbackForClassName() {
        return noRollbackForClassName;
    }

    public void setNoRollbackForClassName(String[] noRollbackForClassName) {
        this.noRollbackForClassName = noRollbackForClassName;
    }

    public Propagation getPropagation() {
        return propagation;
    }

    public void setPropagation(Propagation propagation) {
        this.propagation = propagation;
    }

    public int getLockRetryInterval() {
        return lockRetryInterval;
    }

    public void setLockRetryInterval(int lockRetryInterval) {
        this.lockRetryInterval = lockRetryInterval;
    }

    public int getLockRetryTimes() {
        return lockRetryTimes;
    }

    public void setLockRetryTimes(int lockRetryTimes) {
        this.lockRetryTimes = lockRetryTimes;
    }

    public LockStrategyMode getLockStrategyMode() {
        return lockStrategyMode;
    }

    public void setLockStrategyMode(LockStrategyMode lockStrategyMode) {
        this.lockStrategyMode = lockStrategyMode;
    }

    @Override
    public String toString() {
        return StringUtils.toString(this);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy