Interface RouteRegister
-
- All Superinterfaces:
Iterable<Map.Entry<RouteInfoKey,CompileContext>>
public interface RouteRegister extends Iterable<Map.Entry<RouteInfoKey,CompileContext>>
Реестр URL адресов метаданных
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidaddRoute(String urlPattern, CompileContext<? extends Compiled,?> context)Регистрация URL адреса метаданнойvoidclear(String startPattern)Удаление информации об адресах метаданных, начинающихся с определенного URL.-
Methods inherited from interface java.lang.Iterable
forEach, iterator, spliterator
-
-
-
-
Method Detail
-
addRoute
void addRoute(String urlPattern, CompileContext<? extends Compiled,?> context)
Регистрация URL адреса метаданной- Parameters:
urlPattern- шаблон URl адреса метаданнойcontext- контекст сборки метаданной
-
clear
void clear(String startPattern)
Удаление информации об адресах метаданных, начинающихся с определенного URL.- Parameters:
startPattern- URL начального адреса
-
-