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

com.softicar.platform.common.io.resource.IResourceUrl Maven / Gradle / Ivy

Go to download

The SoftiCAR Platform is a lightweight, Java-based library to create interactive business web applications.

There is a newer version: 50.0.0
Show newest version
package com.softicar.platform.common.io.resource;

/**
 * Instances of this interface describe the location of a resource.
 * 
 * @author Oliver Richers
 */
public interface IResourceUrl extends Comparable {

	/**
	 * Returns the textual representation of this resource URL.
	 * 
	 * @return the resource URL as a string
	 */
	@Override
	String toString();

	/**
	 * Compares the textual representation of this resource URL to the textual
	 * representation of the other resource.
	 * 
	 * @param other
	 *            the resource URL to compare this resource URL to
	 */
	@Override
	int compareTo(IResourceUrl other);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy