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

com.newrelic.agent.bridge.datastore.OperationAndTableName Maven / Gradle / Ivy

The newest version!
package com.newrelic.agent.bridge.datastore;

public class OperationAndTableName {
    private final String operation;
    private final String tableName;

    public OperationAndTableName(String operation, String tableName) {
        this.operation = operation;
        this.tableName = tableName;
    }

    public String getOperation() {
        return operation;
    }

    public String getTableName() {
        return tableName;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy