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

it.thomasjohansen.launcher.web.ApplicationDescriptor Maven / Gradle / Ivy

package it.thomasjohansen.launcher.web;

import java.lang.String; /**
 * Describe a web application by its context path and location.
 * @author [email protected]
 */
public class ApplicationDescriptor {

    private String contextPath;
    private String location;

    public ApplicationDescriptor(String contextPath, String location) {
        this.contextPath = contextPath;
        this.location = location;
    }

    public String getContextPath() {
        return contextPath;
    }

    public String getLocation() {
        return location;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy