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

ldes.client.startingtreenode.domain.valueobjects.StartingTreeNode Maven / Gradle / Ivy

The newest version!
package ldes.client.startingtreenode.domain.valueobjects;

/**
 * Contains the rootNode endpoint information to start the client.
 */
public class StartingTreeNode {
	private final String url;

	public StartingTreeNode(String url) {
		this.url = url;
	}

	public String getUrl() {
		return url;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy