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

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

package com.geotab.model.entity.source;

import lombok.Getter;
import lombok.Setter;

/**
 * Specifies that the engine data originated from a LEVC source.
 */
@Getter @Setter
public class SourceLevc extends Source {

  private static class InstanceHolder {

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

  public static final String SOURCE_LECV_ID = "SourceLevcId";

  private SourceLevc() {
    super(SOURCE_LECV_ID, "**Levc");
  }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy