com.belladati.sdk.impl.DashboardImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sdk-android Show documentation
Show all versions of sdk-android Show documentation
The BellaDati SDK allows accessing a BellaDati server from 3rd-party applications using Java. This project contains the implementation for Android.
package com.belladati.sdk.impl;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.ArrayList;
import java.util.Collections;
import java.util.Date;
import java.util.List;
import com.belladati.sdk.dashboard.Dashboard;
import com.belladati.sdk.dashboard.Dashlet;
import com.belladati.sdk.impl.DashletImpl.DashletException;
import com.fasterxml.jackson.databind.JsonNode;
import com.fasterxml.jackson.databind.node.ArrayNode;
class DashboardImpl implements Dashboard {
private final BellaDatiServiceImpl service;
private final String id;
private final String name;
private final Date lastChange;
private final List dashlets;
DashboardImpl(BellaDatiServiceImpl service, JsonNode json) {
this.service = service;
this.id = json.get("id").asText();
this.name = json.get("name").asText();
if (json.hasNonNull("lastChange")) {
SimpleDateFormat format = new SimpleDateFormat(BellaDatiServiceImpl.DATE_TIME_FORMAT);
Date lastChange;
try {
lastChange = format.parse(json.get("lastChange").asText());
} catch (ParseException e) {
lastChange = null;
}
this.lastChange = lastChange;
} else {
this.lastChange = null;
}
List dashlets = new ArrayList();
if (json.hasNonNull("dashlets") && json.get("dashlets") instanceof ArrayNode) {
for (JsonNode view : (ArrayNode) json.get("dashlets")) {
try {
DashletImpl viewInfo = new DashletImpl(this.service, view);
dashlets.add(viewInfo);
} catch (DashletException e) {
// nothing to do, just ignore the view
}
}
}
this.dashlets = Collections.unmodifiableList(dashlets);
}
@Override
public String getId() {
return id;
}
@Override
public String getName() {
return name;
}
@Override
public Date getLastChange() {
return lastChange != null ? (Date) lastChange.clone() : null;
}
@Override
public List getDashlets() {
return dashlets;
}
@Override
public String toString() {
return name;
}
@Override
public boolean equals(Object obj) {
if (obj instanceof DashboardImpl) {
return id.equals(((DashboardImpl) obj).id);
}
return false;
}
@Override
public int hashCode() {
return id.hashCode();
}
}