Package org.javlo.navigation
Class NoURLFactory
- java.lang.Object
-
- org.javlo.navigation.NoURLFactory
-
- All Implemented Interfaces:
IURLFactory
public class NoURLFactory extends Object implements IURLFactory
-
-
Constructor Summary
Constructors Constructor Description NoURLFactory()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
createURL(ContentContext ctx, MenuElement page)
create url to a page.String
createURLKey(String url)
transform url to a unic string represent information (sp. : without extension).String
getFormat(ContentContext ctx, String url)
get the format of url (html, png, pdf...)
-
-
-
Method Detail
-
createURLKey
public String createURLKey(String url)
Description copied from interface:IURLFactory
transform url to a unic string represent information (sp. : without extension).- Specified by:
createURLKey
in interfaceIURLFactory
- Returns:
-
createURL
public String createURL(ContentContext ctx, MenuElement page) throws Exception
Description copied from interface:IURLFactory
create url to a page.- Specified by:
createURL
in interfaceIURLFactory
- Parameters:
ctx
- content contextpage
- page in content- Returns:
- a URL
- Throws:
Exception
-
getFormat
public String getFormat(ContentContext ctx, String url)
Description copied from interface:IURLFactory
get the format of url (html, png, pdf...)- Specified by:
getFormat
in interfaceIURLFactory
url
- a url- Returns:
- a content format (html, png, pdf...)
-
-