Interface UniqueIdService
- All Known Implementing Classes:
TurbineUniqueIdService
This service provides unique identifiers for the instance of Turbine, and for objects it creates.
- Version:
- $Id$
- Author:
- Rafal Krzewski
-
Field Summary
Fields -
Method Summary
Modifier and TypeMethodDescriptionReturns an identifier of this Turbine instance that is unique both on the server and worldwide.Returns a unique identifier that looks like random data.Returns an identifier that is unique within this Turbine instance, but does not have random-like appearance.Methods inherited from interface org.apache.turbine.services.Initable
getInit, init, init, setInitableBroker, shutdown
Methods inherited from interface org.apache.turbine.services.Service
getConfiguration, getName, getProperties, setName, setServiceBroker
-
Field Details
-
SERVICE_NAME
The service name- See Also:
-
-
Method Details
-
getInstanceId
Returns an identifier of this Turbine instance that is unique both on the server and worldwide.
- Returns:
- A String with the instance identifier.
-
getUniqueId
Returns an identifier that is unique within this Turbine instance, but does not have random-like appearance.
This method is intended to work fast; it can be used for creating names of temporary files.
- Returns:
- A String with the non-random looking instance identifier.
-
getPseudorandomId
Returns a unique identifier that looks like random data.
This method provides identifiers in a way that makes it hard to guess or count, but still ensures their uniqueness within this instance of Turbine. It can be used for generating cookies or other data that travels back and forth between server and browser, and is potentially security sensitive.
- Returns:
- A String with the random looking instance identifier.
-