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

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

package com.geotab.model.entity.source;

import lombok.Getter;
import lombok.Setter;

/**
 * Specifies that the engine data originated from proprietary sources.
 */
@Getter @Setter
public final class SourceGmcccObsolete extends Source {

  private static class InstanceHolder {

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

  public static final String SOURCE_GMCCC_OBSOLETE_ID = "SourceGmcccObsoleteId";

  private SourceGmcccObsolete() {
    super(SOURCE_GMCCC_OBSOLETE_ID, "**Gmccc Obsolete");
  }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy