Skip to content

Instantly share code, notes, and snippets.

@ahodroj
Last active April 12, 2016 03:58
Show Gist options
  • Save ahodroj/047b6ad239151370de1ecd253c234420 to your computer and use it in GitHub Desktop.
Save ahodroj/047b6ad239151370de1ecd253c234420 to your computer and use it in GitHub Desktop.
import org.openspaces.spatial.shapes.Point;
public class GasStation {
private Point location;
@SpaceSpatialIndex
public Point getLocation() {
return location;
}
public void setLocation(Point location) {
this.location = location;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment