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

com.newrelic.agent.security.intcodeagent.models.javaagent.RCIElement Maven / Gradle / Ivy

package com.newrelic.agent.security.intcodeagent.models.javaagent;

import com.newrelic.agent.security.intcodeagent.websocket.JsonConverter;

public class RCIElement {

    private String className;

    private String methodName;

    public RCIElement() {
    }

    public RCIElement(String className, String methodName) {
        this.className = className;
        this.methodName = methodName;
    }

    /**
     * @return the className
     */
    public String getClassName() {
        return className;
    }

    /**
     * @param className the className to set
     */
    public void setClassName(String className) {
        this.className = className;
    }

    /**
     * @return the methodName
     */
    public String getMethodName() {
        return methodName;
    }

    /**
     * @param methodName the methodName to set
     */
    public void setMethodName(String methodName) {
        this.methodName = methodName;
    }

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy