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

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

package com.geotab.model.entity.source;

import lombok.Getter;
import lombok.Setter;

/**
 * Specifies that the engine data originated from a third-party device for an obsolete GUID.
 */
@Getter @Setter
public final class SourceThirdPartyObsolete extends Source {

  private static class InstanceHolder {

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

  public static final String SOURCE_THIRD_PARTY_OBSOLETE_ID = "SourceThirdPartyObsoleteId";

  private SourceThirdPartyObsolete() {
    super(SOURCE_THIRD_PARTY_OBSOLETE_ID, "**ThirdParty Obsolete");
  }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy