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

net.guerlab.web.result.ApplicationStackTrace Maven / Gradle / Ivy

Go to download

net.guerlab.web is a suite of spring web expanded libraries that include utility classes and much much more.

The newest version!
package net.guerlab.web.result;

import java.util.List;

/**
 * 应用堆栈跟踪
 *
 * @author guer
 */
public class ApplicationStackTrace {

    /**
     * 应用名称
     */
    private String applicationName;

    /**
     * 堆栈跟踪
     */
    private List stackTrace;

    /**
     * 获取应用名称
     *
     * @return 应用名称
     */
    public String getApplicationName() {
        return applicationName;
    }

    /**
     * 设置应用名称
     *
     * @param applicationName
     *         应用名称
     */
    public void setApplicationName(String applicationName) {
        this.applicationName = applicationName;
    }

    /**
     * 获取堆栈跟踪
     *
     * @return 堆栈跟踪
     */
    public List getStackTrace() {
        return stackTrace;
    }

    /**
     * 设置堆栈跟踪
     *
     * @param stackTrace
     *         堆栈跟踪
     */
    public void setStackTrace(List stackTrace) {
        this.stackTrace = stackTrace;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy