Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
53458ce
- Add Rest API Client implementation.
AlejandroP Jul 22, 2022
fe2cd7e
- Eliminate debug/trace messages.
AlejandroP Jul 25, 2022
e3b2f74
- Add remote object property management for APIObject calls
AlejandroP Aug 17, 2022
68b6912
- Added properties to handle errors.
AlejandroP Aug 18, 2022
57df317
Merge branch 'master' into api_client
AlejandroP Aug 19, 2022
34a2799
- Add method for file upload in Rest API Client
AlejandroP Aug 31, 2022
cb03128
- Fix for datetime format with milliseconds , the pattern was wrong
AlejandroP Sep 2, 2022
9439304
Merge branch 'master' into api_client
AlejandroP Sep 5, 2022
2a1c407
-Added methods for BC objects and Decimal values in GXRestAPI
AlejandroP Sep 6, 2022
4c5c9f1
- Fixed type error in GetBodySdt methods names
AlejandroP Sep 6, 2022
eef308c
- Added Body Method for special objects in GXRestAPIClient
AlejandroP Sep 7, 2022
37f9d00
- Fix format for datetime with milliseconds
AlejandroP Sep 7, 2022
31a3a3f
Merge branch 'api_client' of https://github.com/genexuslabs/JavaClass…
AlejandroP Sep 7, 2022
4e179fe
- Add geography type routines for RestAPI calls
AlejandroP Sep 8, 2022
6d7ab06
- Fix for SDT o BC input vars in REST GET (APi Object)
AlejandroP Sep 8, 2022
835ffce
- Escape String and geography types in GET and DELETE Rest Services (…
AlejandroP Sep 9, 2022
67d161d
Merge branch 'master' into api_client
AlejandroP Sep 13, 2022
845b873
- Remove IGeoJson interface and unify object parse routines.
AlejandroP Sep 15, 2022
8c0bcbd
Merge branch 'api_client' of https://github.com/genexuslabs/JavaClass…
AlejandroP Sep 15, 2022
ad40ae8
- Fix code imports.
AlejandroP Sep 16, 2022
01ffc44
Merge branch 'master' into api_client
AlejandroP Sep 16, 2022
86cffe4
Merge branch 'master' into api_client
AlejandroP Sep 28, 2022
6ec8f18
Merge branch 'master' into api_client
AlejandroP Nov 1, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions android/src/main/java/com/genexus/GXGeospatial.java
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,8 @@
//import org.noggit.JSONParser.*;
import org.simpleframework.xml.Root;
import org.simpleframework.xml.Text;

import com.genexus.internet.IGxJSONSerializable;


@Root
public final class GXGeospatial implements java.io.Serializable, IGxJSONSerializable{

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
package com.genexus.properties;

import com.genexus.internet.Location;

public class GXObjectProperties
{
private Location location = null;
private String errorMessage = "";
private int errorCode = 0;
private int statusCode = 0;

public Location getLocation()
{
return location;
}
public void setLocation(Location value)
{
location = value;
}

public int getErrorCode()
{
return errorCode;
}
public void setErrorCode(int value)
{
errorCode = value;
}

public int getStatusCode()
{
return statusCode;
}
public void setStatusCode(int value)
{
statusCode = value;
}

public String getErrorMessage()
{
return errorMessage;
}
public void setErrorMessage(String value)
{
errorMessage = value;
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
package com.genexus.properties;

import java.util.HashMap;

public class GXObjectsConfiguration {

private HashMap<String, GXObjectProperties> properties = new HashMap<String, GXObjectProperties>();

public GXObjectProperties propertiesFor(String objName)
{
if (!properties.containsKey(objName))
properties.put(objName, new GXObjectProperties());
return properties.get(objName);
}
}
1 change: 0 additions & 1 deletion gxgeospatial/src/main/java/com/genexus/GXGeospatial.java
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
import com.genexus.internet.IGxJSONSerializable;
import org.simpleframework.xml.*;
import org.noggit.JSONParser.*;

import org.locationtech.spatial4j.context.SpatialContext;
import org.locationtech.spatial4j.context.SpatialContextFactory;
import org.locationtech.spatial4j.context.jts.JtsSpatialContextFactory;
Expand Down
Binary file modified java/sample.db
Binary file not shown.
Loading