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

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

package com.geotab.model.entity.source;

import lombok.Getter;
import lombok.Setter;

/**
 * Specifies that the engine data originated from a J1939 engine computer.
 */
@Getter @Setter
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