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 StringcreateURL(ContentContext ctx, MenuElement page)create url to a page.StringcreateURLKey(String url)transform url to a unic string represent information (sp. : without extension).StringgetFormat(ContentContext ctx, String url)get the format of url (html, png, pdf...)
-
-
-
Method Detail
-
createURLKey
public String createURLKey(String url)
Description copied from interface:IURLFactorytransform url to a unic string represent information (sp. : without extension).- Specified by:
createURLKeyin interfaceIURLFactory- Returns:
-
createURL
public String createURL(ContentContext ctx, MenuElement page) throws Exception
Description copied from interface:IURLFactorycreate url to a page.- Specified by:
createURLin 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:IURLFactoryget the format of url (html, png, pdf...)- Specified by:
getFormatin interfaceIURLFactoryurl- a url- Returns:
- a content format (html, png, pdf...)
-
-