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

com.route4me.sdk.services.telematics.TelematicsVendorComparison Maven / Gradle / Ivy

Go to download

>This SDK makes it easier for you use the Route4Me API, which creates optimally sequenced driving routes for many drivers.

There is a newer version: 1.15.0
Show newest version
/*
 * 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