package com.example.cosmosclient;
public class Component {
private String id;
public Component() {
}
public Component(String id) {
this.id = id;
}
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public boolean equals(Object other) {
if (!(other instanceof Component)) return false;
return id.equals(((Component)other).id);
}
}