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

com.geotab.model.entity.source.SourceJ1708 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 J1708 engine computer.
 */
@Getter
@Setter
@ToString(callSuper = true)
@EqualsAndHashCode(callSuper = true)
public final class SourceJ1708 extends Source {

  private static class InstanceHolder {

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

  public static final String SOURCE_J1708_ID = "SourceJ1708Id";

  private SourceJ1708() {
    super(SOURCE_J1708_ID, "**J1708");
  }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy