com.route4me.sdk.services.telematics.TelematicsVendorComparison Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of route4me-java-sdk Show documentation
Show all versions of route4me-java-sdk Show documentation
>This SDK makes it easier for you use the Route4Me API, which creates optimally sequenced driving routes for many drivers.
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package com.route4me.sdk.services.telematics;
/**
*
* @author Route4Me
*/
public class TelematicsVendorComparison {
private String name;
private String id;
private String features;
@Override
public String toString() {
return "ID=" + this.id + " Name=" + this.name + " Features=" + this.features;
}
/**
* @return the name
*/
public String getName() {
return name;
}
/**
* @param name the name to set
*/
public void setName(String name) {
this.name = name;
}
/**
* @return the id
*/
public String getId() {
return id;
}
/**
* @param id the id to set
*/
public void setId(String id) {
this.id = id;
}
/**
* @return the features
*/
public String getFeatures() {
return features;
}
/**
* @param features the features to set
*/
public void setFeatures(String features) {
this.features = features;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy