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

org.apache.logging.log4j.core.jackson.ExtendedStackTraceElementMixIn Maven / Gradle / Ivy

There is a newer version: 3.0.0-beta2
Show newest version
/*
 * Licensed to the Apache Software Foundation (ASF) under one or more
 * contributor license agreements.  See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The ASF licenses this file to you 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.apache.logging.log4j.core.jackson;

import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty;
import java.io.Serializable;
import org.apache.logging.log4j.core.impl.ExtendedClassInfo;
import org.apache.logging.log4j.core.impl.ExtendedStackTraceElement;

/**
 * Mix-in for {@link ExtendedStackTraceElement}.
 */
@JsonPropertyOrder({
    // @formatter:off
    ExtendedStackTraceElementMixIn.ATTR_CLASS,
    ExtendedStackTraceElementMixIn.ATTR_METHOD,
    ExtendedStackTraceElementMixIn.ATTR_FILE,
    ExtendedStackTraceElementMixIn.ATTR_LINE,
    ExtendedStackTraceElementMixIn.ATTR_EXACT,
    ExtendedStackTraceElementMixIn.ATTR_LOCATION,
    ExtendedStackTraceElementMixIn.ATTR_VERSION
    // @formatter:on
})
abstract class ExtendedStackTraceElementMixIn implements Serializable {

    protected static final String ATTR_CLASS_LOADER_NAME = StackTraceElementConstants.ATTR_CLASS_LOADER_NAME;
    protected static final String ATTR_MODULE = StackTraceElementConstants.ATTR_MODULE;
    protected static final String ATTR_MODULE_VERSION = StackTraceElementConstants.ATTR_MODULE_VERSION;
    protected static final String ATTR_CLASS = StackTraceElementConstants.ATTR_CLASS;
    protected static final String ATTR_METHOD = StackTraceElementConstants.ATTR_METHOD;
    protected static final String ATTR_FILE = StackTraceElementConstants.ATTR_FILE;
    protected static final String ATTR_LINE = StackTraceElementConstants.ATTR_LINE;
    protected static final String ATTR_EXACT = "exact";
    protected static final String ATTR_LOCATION = "location";
    protected static final String ATTR_VERSION = "version";
    private static final long serialVersionUID = 1L;

    @JsonCreator
    public ExtendedStackTraceElementMixIn(
            // @formatter:off
            @JsonProperty(ATTR_CLASS) final String declaringClass,
            @JsonProperty(ATTR_METHOD) final String methodName,
            @JsonProperty(ATTR_FILE) final String fileName,
            @JsonProperty(ATTR_LINE) final int lineNumber,
            @JsonProperty(ATTR_EXACT) final boolean exact,
            @JsonProperty(ATTR_LOCATION) final String location,
            @JsonProperty(ATTR_VERSION) final String version
            // @formatter:on
            ) {
        // empty
    }

    @JsonProperty(ATTR_CLASS)
    @JacksonXmlProperty(localName = ATTR_CLASS, isAttribute = true)
    public abstract String getClassName();

    @JsonProperty(ATTR_EXACT)
    @JacksonXmlProperty(localName = ATTR_EXACT, isAttribute = true)
    public abstract boolean getExact();

    @JsonIgnore
    public abstract ExtendedClassInfo getExtraClassInfo();

    @JsonProperty(ATTR_FILE)
    @JacksonXmlProperty(localName = ATTR_FILE, isAttribute = true)
    public abstract String getFileName();

    @JsonProperty(ATTR_LINE)
    @JacksonXmlProperty(localName = ATTR_LINE, isAttribute = true)
    public abstract int getLineNumber();

    @JsonProperty(ATTR_LOCATION)
    @JacksonXmlProperty(localName = ATTR_LOCATION, isAttribute = true)
    public abstract String getLocation();

    @JsonProperty(ATTR_METHOD)
    @JacksonXmlProperty(localName = ATTR_METHOD, isAttribute = true)
    public abstract String getMethodName();

    @JsonIgnore
    abstract StackTraceElement getStackTraceElement();

    @JsonProperty(ATTR_VERSION)
    @JacksonXmlProperty(localName = ATTR_VERSION, isAttribute = true)
    public abstract String getVersion();

    @JsonIgnore
    public abstract boolean isNativeMethod();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy