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

io.logspace.jvm.agent.api.event.EventBuilderData Maven / Gradle / Ivy

The newest version!
/**
 * Logspace
 * Copyright (c) 2015 Indoqa Software Design und Beratung GmbH. All rights reserved.
 * This program and the accompanying materials are made available under the terms of
 * the Eclipse Public License Version 1.0, which accompanies this distribution and
 * is available at http://www.eclipse.org/legal/epl-v10.html.
 */
package io.logspace.jvm.agent.api.event;

/**
 * Contains the basic information required for creating a new {@link AbstractEventBuilder Event Builder}.
 */
public class EventBuilderData {

    /**
     * The ID of the {@link io.logspace.jvm.agent.api.Agent Agent} the Event Builder belongs to.
     */
    private final String agentId;

    /**
     * The system of the {@link io.logspace.jvm.agent.api.Agent Agent} the Event Builder belongs to.
     */
    private final String system;

    /**
     * The optional marker.
     */
    private final String marker;

    public EventBuilderData(String agentId, String system, String marker) {
        super();

        this.agentId = agentId;
        this.system = system;
        this.marker = marker;
    }

    public String getAgentId() {
        return this.agentId;
    }

    public String getMarker() {
        return this.marker;
    }

    public String getSystem() {
        return this.system;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy