StackTraceItem.java
/*
* Copyright 2018-2020 the original author or authors.
*
* 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 org.bremersee.exception.model;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonInclude.Include;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty;
import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlRootElement;
import io.swagger.v3.oas.annotations.media.Schema;
import java.io.Serializable;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
import lombok.Builder;
import lombok.EqualsAndHashCode;
import lombok.NoArgsConstructor;
import lombok.ToString;
import org.springframework.validation.annotation.Validated;
/**
* A stack trace element of an exception.
*
* @author Christian Bremer
*/
@Schema(description = "A stack trace element of an exception.")
@Validated
@JacksonXmlRootElement(localName = "StackTraceItem")
@XmlRootElement(name = "StackTraceItem")
@XmlType(name = "stackTraceItemType")
@XmlAccessorType(XmlAccessType.FIELD)
@JsonIgnoreProperties(ignoreUnknown = true)
@JsonInclude(Include.NON_EMPTY)
@EqualsAndHashCode
@ToString
@NoArgsConstructor
public class StackTraceItem implements Serializable {
private static final long serialVersionUID = 1L;
@JsonProperty("declaringClass")
@JacksonXmlProperty(localName = "declaringClass")
private String declaringClass = null;
@JsonProperty("methodName")
@JacksonXmlProperty(localName = "methodName")
private String methodName = null;
@JsonProperty("fileName")
@JacksonXmlProperty(localName = "fileName")
private String fileName = null;
@JsonProperty("lineNumber")
@JacksonXmlProperty(localName = "lineNumber")
private Integer lineNumber = null;
/**
* Instantiates a new stack trace item.
*
* @param declaringClass the declaring class
* @param methodName the method name
* @param fileName the file name
* @param lineNumber the line number
*/
@Builder(toBuilder = true)
@SuppressWarnings("unused")
public StackTraceItem(
String declaringClass,
String methodName,
String fileName,
Integer lineNumber) {
this.declaringClass = declaringClass;
this.methodName = methodName;
this.fileName = fileName;
this.lineNumber = lineNumber;
}
/**
* The declaring class.
*
* @return declaringClass declaring class
*/
@Schema(description = "The declaring class.")
public String getDeclaringClass() {
return declaringClass;
}
/**
* Sets declaring class.
*
* @param declaringClass the declaring class
*/
public void setDeclaringClass(String declaringClass) {
this.declaringClass = declaringClass;
}
/**
* The method name.
*
* @return methodName method name
*/
@Schema(description = "The method name.")
public String getMethodName() {
return methodName;
}
/**
* Sets method name.
*
* @param methodName the method name
*/
public void setMethodName(String methodName) {
this.methodName = methodName;
}
/**
* The file name.
*
* @return fileName file name
*/
@Schema(description = "The file name.")
public String getFileName() {
return fileName;
}
/**
* Sets file name.
*
* @param fileName the file name
*/
public void setFileName(String fileName) {
this.fileName = fileName;
}
/**
* The line number.
*
* @return lineNumber line number
*/
@Schema(description = "The line number.")
public Integer getLineNumber() {
return lineNumber;
}
/**
* Sets line number.
*
* @param lineNumber the line number
*/
public void setLineNumber(Integer lineNumber) {
this.lineNumber = lineNumber;
}
}