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

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

  private static class InstanceHolder {

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

  public static final String SOURCE_SYSTEM_ID = "SourceSystemId";

  private SourceSystem() {
    super(SOURCE_SYSTEM_ID, "**System");
  }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy