/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

package com.dhaval.appstats.model;

import java.io.Serializable;

/**
 *
 * @author dhaval
 */
public class Identity implements Serializable{

    private String id;

    public Identity(String id) {
        this.id = id;
    }

    public Identity() {
    }


    public String getId() {
        return id;
    }

    @Override
    public String toString() {
        return "identity: {id: " + id + "}";
    }

    
}
