dps.webapplication.application.providers.Forward Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dps.webapplication Show documentation
Show all versions of dps.webapplication Show documentation
Common classes for webapplications
package dps.webapplication.application.providers;
public class Forward {
String to;
public Forward(String to) {
this.to = to;
}
public String getTo()
{
return to;
}
}