erland.util
Interface ObjectStorageInterface

All Known Implementing Classes:
ObjectStorageMap, ObjectStorageParameterStorage

public interface ObjectStorageInterface

Get, set or delete parameters from some storage

Author:
Erland Isaksson

Method Summary
 void delete(String name)
          Delete a object
 Object get(String name)
          Get a object
 void set(String name, Object value)
          Set a object
 

Method Detail

get

Object get(String name)
Get a object

Parameters:
name - The name of the bject
Returns:
The object, will be null if the parameter does not exist

set

void set(String name,
         Object value)
Set a object

Parameters:
name - The name of the object
value - The object

delete

void delete(String name)
Delete a object

Parameters:
name - The name of the object


Copyright © 2003-2005 Erland Isaksson. All Rights Reserved.