Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 968 Bytes

File metadata and controls

29 lines (21 loc) · 968 Bytes

org.lappsgrid.core

Build Status

Master Status Develop Status

Maven Central

Currently the core module only provides the DataFactory class that is used to create the JSON representations of common LAPPS objects.

    String json = DataFactory.error("Fatal error encountered.");
    ...
    DataSource source = ...
    String json = source.execute(DataFactory.get(documentId));

Maven

<dependency>
	<groupId>org.lappsgrid</groupId>
	<artifactId>core</artifactId>
	<version>2.0.3</version>
</dependency>