import nl.iobyte.parkplus.api.client.ClientConnection;
import nl.iobyte.parkplus.api.waypoint.enums.WayPointType;
import nl.iobyte.parkplus.api.waypoint.interfaces.IWayPointHandler;
import nl.iobyte.parkplus.api.waypoint.objects.RayData;
import nl.iobyte.parkplus.api.waypoint.objects.WayPoint;
public class CustomWayPointHandler implements IWayPointHandler {
public WayPointType getType() {
return WayPointType.NO_UPDATE; // or UPDATE if the values change
public String getTitle(WayPoint point) {
return "Get the title here";
public String getDescription(WayPoint point, RayData data, ClientConnection client) {
return "Get the desciption here";
public String getCover(WayPoint point) {
return "http://example.com/cover.png";