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

com.fluxtion.server.lib.pnl.refdata.Instrument Maven / Gradle / Ivy

There is a newer version: 0.1.36
Show newest version
/*
 * SPDX-FileCopyrightText: © 2025 Gregory Higgins 
 * SPDX-License-Identifier: AGPL-3.0-only
 */

package com.fluxtion.server.lib.pnl.refdata;

import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
import lombok.experimental.Accessors;

@Data
@Accessors(fluent = true)
@AllArgsConstructor
@NoArgsConstructor
public final class Instrument {

    public static final Instrument INSTRUMENT_GBP = new Instrument("GBP");
    public static final Instrument INSTRUMENT_USD = new Instrument("USD");
    public static final Instrument INSTRUMENT_USDT = new Instrument("USDT");
    private String instrumentName;

    public String getInstrumentName() {
        return instrumentName;
    }

    public void setInstrumentName(String instrumentName) {
        this.instrumentName = instrumentName;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy