Class ImageURNFactory
java.lang.Object
com.iizix.urn.image.ImageURNFactory
- All Implemented Interfaces:
IURNProvider
Image provider for IIZI URN's.
Image URN's are encoded in IIZI as:
urn:iz-img:SVG_ENCODED_DATA?=size:WIDTHxHEIGHT
The "?=size:WIDTHxHEIGHT" specifies that the SVG should be scaled in size of logical pixel to WIDTH and HEIGHT.
- Author:
- Christopher Mindus
Method Summary
Modifier and TypeMethodDescriptionstatic ImageURNFactoryReturns the singleton instance of the image URN factory.getNID()Gets the Naming IDentifier of the provider.Gets the location or locations supported by the provider.Parses the URN after the NID specification, i.e.Methods inherited from class Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface IURNProvider
paramString0
Method Details
getInstance
Returns the singleton instance of the image URN factory.- Returns:
- The image URN factory instance.
getNID
Gets the Naming IDentifier of the provider.- Specified by:
getNIDin interfaceIURNProvider- Returns:
- The
NID.IMAGE.
getResourceTypes
Gets the location or locations supported by the provider.- Specified by:
getResourceTypesin interfaceIURNProvider- Returns:
- The supported locations: ALL.
parse
public URN parse(String urnString, String nss, String req, String query, String fragment) throws URNException Parses the URN after the NID specification, i.e. after "urn:NID:".- Specified by:
parsein interfaceIURNProvider- Parameters:
urnString- The full unparsed original URN string.nss- The NSS part of the string (before request/query/fragment).req- The decoded request String (without "?+"),nullfor none.query- The decoded query String (without "?="),nullfor none.fragment- The decoded fragment,nullfor none.- Returns:
- The URN instance.
- Throws:
URNException- For URN exceptions.