Class ResourceServiceImpl
- java.lang.Object
-
- org.onebusaway.presentation.impl.resources.ResourceServiceImpl
-
- All Implemented Interfaces:
ResourceService
@Component public class ResourceServiceImpl extends Object implements ResourceService
-
-
Field Summary
Fields Modifier and Type Field Description static StringDEBUG_PROPERTY
-
Constructor Summary
Constructors Constructor Description ResourceServiceImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetExternalUrlForResource(String resourcePath, Locale locale)ResourceServiceInterfaceStringgetExternalUrlForResources(String resourceId, List<String> resourcePaths, Locale locale)StringgetExternalUrlForResources(List<String> resourcePaths, Locale locale)ResourcegetLocalResourceForExternalId(String externalId, Locale locale)voidsetPattern(String pattern)voidsetPrefix(String prefix)voidsetServletContext(javax.servlet.ServletContext servletContext)voidsetup()
-
-
-
Field Detail
-
DEBUG_PROPERTY
public static final String DEBUG_PROPERTY
-
-
Method Detail
-
setPrefix
public void setPrefix(String prefix)
-
setPattern
public void setPattern(String pattern)
-
setServletContext
@Autowired public void setServletContext(javax.servlet.ServletContext servletContext)
-
setup
@PostConstruct public void setup()
-
getExternalUrlForResource
public String getExternalUrlForResource(String resourcePath, Locale locale)
ResourceServiceInterface- Specified by:
getExternalUrlForResourcein interfaceResourceService
-
getExternalUrlForResources
public String getExternalUrlForResources(List<String> resourcePaths, Locale locale)
- Specified by:
getExternalUrlForResourcesin interfaceResourceService
-
getExternalUrlForResources
public String getExternalUrlForResources(String resourceId, List<String> resourcePaths, Locale locale)
- Specified by:
getExternalUrlForResourcesin interfaceResourceService
-
getLocalResourceForExternalId
public Resource getLocalResourceForExternalId(String externalId, Locale locale)
- Specified by:
getLocalResourceForExternalIdin interfaceResourceService
-
-