com.geotab.model.entity.source.SourceThirdParty 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.
*/
@Getter @Setter
public final class SourceThirdParty extends Source {
private static class InstanceHolder {
private static final SourceThirdParty INSTANCE = new SourceThirdParty();
}
public static final String SOURCE_THIRD_PARTY_ID = "SourceThirdPartyId";
private SourceThirdParty() {
super(SOURCE_THIRD_PARTY_ID, "**ThirdParty");
}
public static SourceThirdParty getInstance() {
return InstanceHolder.INSTANCE;
}
}