com.geotab.model.entity.source.SourceSystem Maven / Gradle / Ivy
package com.geotab.model.entity.source;
import lombok.Getter;
import lombok.Setter;
/**
* Specifies that the engine data originated from the MyGeotab system.
*/
@Getter @Setter
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;
}
}