org.jlot.api.JlotApiUrls Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jlot-api Show documentation
Show all versions of jlot-api Show documentation
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.
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