Interface LinkBuilder
-
- All Known Subinterfaces:
OptionsBuilder
- All Known Implementing Classes:
WeblinkHandler
public interface LinkBuilderThe Interface LinkBuilder. Builds the weblink URL with all parameters set in the fluent builder API.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidcopy(java.lang.String baseURL)Copy.voidopen(java.lang.String baseURL)Open.java.lang.StringtoLink(java.lang.String baseURL)To link.
-
-
-
Method Detail
-
toLink
java.lang.String toLink(java.lang.String baseURL) throws com.saperion.util.LinkCreationExceptionTo link. Builds the weblink url with given baseURL.- Parameters:
baseURL- the base url- Returns:
- the string
- Throws:
com.saperion.util.LinkCreationException- the link creation exception
-
open
void open(java.lang.String baseURL)
Open.- Parameters:
baseURL- the base url
-
copy
void copy(java.lang.String baseURL)
Copy.- Parameters:
baseURL- the base url
-
-