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

com.geotab.model.entity.source.SourceJ1939 Maven / Gradle / Ivy

/*
 *
 * 2020 Copyright (C) Geotab Inc. All rights reserved.
 */

package com.geotab.model.entity.source;

import lombok.EqualsAndHashCode;
import lombok.Getter;
import lombok.Setter;
import lombok.ToString;

/**
 * Specifies that the engine data originated from a J1939 engine computer.
 */
@Getter
@Setter
@ToString(callSuper = true)
@EqualsAndHashCode(callSuper = true)
public final class SourceJ1939 extends Source {

  private static class InstanceHolder {

    private static final SourceJ1939 INSTANCE = new SourceJ1939();
  }

  public static final String SOURCE_J1939_ID = "SourceJ1939Id";

  private SourceJ1939() {
    super(SOURCE_J1939_ID, "**J1939");
  }

  public static SourceJ1939 getInstance() {
    return InstanceHolder.INSTANCE;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy