com.geotab.model.entity.source.SourceSystemObsolete 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 from an obsolete GUID.
*/
@Getter @Setter
public final class SourceSystemObsolete extends Source {
private static class InstanceHolder {
private static final SourceSystemObsolete INSTANCE = new SourceSystemObsolete();
}
public static final String SOURCE_SYSTEM_OBSOLETE_ID = "SourceSystemObsoleteId";
private SourceSystemObsolete() {
super(SOURCE_SYSTEM_OBSOLETE_ID, "**System Obsolete");
}
public static SourceSystemObsolete getInstance() {
return InstanceHolder.INSTANCE;
}
}