Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public class RedirectTo extends StrictResponseFunction {
new FunctionSignature(
new QName("redirect-to", ResponseModule.NAMESPACE_URI, ResponseModule.PREFIX),
"Sends a HTTP redirect response (302) to the client.",
new SequenceType[] { new FunctionParameterSequenceType("uri", Type.ANY_URI, Cardinality.EXACTLY_ONE, "The URI to redirect the client to") },
new SequenceType[] { new FunctionParameterSequenceType("uri", Type.STRING, Cardinality.EXACTLY_ONE, "The URI to redirect the client to") },
new SequenceType(Type.EMPTY, Cardinality.EMPTY_SEQUENCE));

public RedirectTo(final XQueryContext context)
Expand Down