All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jlot.api.JlotApiUrls Maven / Gradle / Ivy

Go to download

This project is just a container for some resources needed by jlot-client and jlot-web, so both projects can access Api URLs. This way jlot-client does not need to depend on jlot-web.

There is a newer version: 1.2
Show newest version
package org.jlot.api;

public class JlotApiUrls
{
	public static final String	REGISTER		= "/register";
	public static final String	USERS			= "/users";
	public static final String	PROJECTS		= "/projects";
	public static final String	PROJECT			= PROJECTS + "/{projectName}";
	public static final String	STATS			= PROJECTS + "/{projectName}/stats";
	public static final String	RESOURCES		= PROJECT + "/versions/{versionName}/resources";
	public static final String	RESOURCE		= PROJECT + "/resources/{resourceId}";
	public static final String	LOCALIZATIONS	= PROJECT + "/localizations";
	public static final String	PUSH			= PROJECT + "/versions/{versionName}/push";
	public static final String	PULL			= PROJECT + "/versions/{versionName}/pull";
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy