![JAR search and dependency download from the Maven repository](/logo.png)
org.kie.uberfire.plugin.backend.MediaServletURI Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kie-uberfire-runtime-plugins-backend Show documentation
Show all versions of kie-uberfire-runtime-plugins-backend Show documentation
KIE Uberfire Runtime PlugIns Backend
package org.kie.uberfire.plugin.backend;
import static org.uberfire.commons.validation.PortablePreconditions.*;
public class MediaServletURI {
private String uri;
public MediaServletURI() {
}
public MediaServletURI( final String uri ) {
setURI( uri );
}
public String getURI() {
return uri;
}
public void setURI( final String uri ) {
this.uri = checkNotEmpty( "uri", uri );
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy