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

com.ocadotechnology.newrelic.apiclient.internal.DefaultKeyTransactionsApi Maven / Gradle / Ivy

Go to download

NewRelic Alerts Configurator can be used to configure NewRelic alerts for your application. Instead of defining alerts through UI you can define them in code. It allows you to automatize alerts configuration, easily recover them in case of wipe out and have full history of changes in your version control system.

There is a newer version: 5.0.1
Show newest version
package com.ocadotechnology.newrelic.apiclient.internal;

import com.ocadotechnology.newrelic.apiclient.KeyTransactionsApi;
import com.ocadotechnology.newrelic.apiclient.internal.client.NewRelicClient;
import com.ocadotechnology.newrelic.apiclient.internal.model.KeyTransactionList;
import com.ocadotechnology.newrelic.apiclient.internal.model.KeyTransactionWrapper;
import com.ocadotechnology.newrelic.apiclient.model.transactions.KeyTransaction;
import org.glassfish.jersey.uri.UriComponent;

import java.util.Optional;

import static javax.ws.rs.core.MediaType.APPLICATION_JSON_TYPE;
import static org.glassfish.jersey.uri.UriComponent.Type.QUERY_PARAM_SPACE_ENCODED;

class DefaultKeyTransactionsApi extends ApiBase implements KeyTransactionsApi {

    private static final String KEY_TRANSACTIONS_URL = "/v2/key_transactions.json";
    private static final String KEY_TRANSACTION_URL = "/v2/key_transactions/{key_transaction_id}.json";

    DefaultKeyTransactionsApi(NewRelicClient client) {
        super(client);
    }

    @Override
    public Optional getByName(String keyTransactionName) {
        String keyTransactionNameEncoded = UriComponent.encode(keyTransactionName, QUERY_PARAM_SPACE_ENCODED);
        return client
                .target(KEY_TRANSACTIONS_URL)
                .queryParam("filter[name]", keyTransactionNameEncoded)
                .request(APPLICATION_JSON_TYPE)
                .get(KeyTransactionList.class)
                .getSingle();
    }

    @Override
    public KeyTransaction getById(int keyTransactionId) {
        return client
                .target(KEY_TRANSACTION_URL)
                .resolveTemplate("key_transaction_id", keyTransactionId)
                .request(APPLICATION_JSON_TYPE)
                .get(KeyTransactionWrapper.class)
                .getKeyTransaction();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy