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

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

package com.geotab.model.entity.source;

import lombok.Getter;
import lombok.Setter;

/**
 * Specifies that the engine data originated from WWH enhanced type for an obsolete GUID.
 */
@Getter @Setter
public final class SourceObdSaObsolete extends Source {

  private static class InstanceHolder {

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

  public static final String SOURCE_OBD_SA_OBSOLETE_ID = "SourceObdSaObsoleteId";

  private SourceObdSaObsolete() {
    super(SOURCE_OBD_SA_OBSOLETE_ID, "**Obd Sa Obsolete");
  }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy