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

io.imunity.upman.rest.ProjectPathProvider Maven / Gradle / Ivy

There is a newer version: 4.0.2
Show newest version
package io.imunity.upman.rest;

class ProjectPathProvider
{
	static String getProjectPath(String projectId, String rootGroup)
	{
		if (projectId.contains("/"))
			throw new IllegalArgumentException("Project Id cannot start form /");
		return (rootGroup.equals("/") ? "" : rootGroup) + "/" + projectId;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy