com.arjuna.common.util.propertyservice.plugins
Interface PropertyManagerIOPlugin


public interface PropertyManagerIOPlugin


Method Summary
 void load(java.lang.String uri, PropertyManagerPluginInterface pcm, boolean verbose)
          This method loads the properties stored at the given uri.
 void save(java.lang.String uri, PropertyManagerPluginInterface pcm)
          This method saves the properties to the given uri.
 

Method Detail

load

void load(java.lang.String uri,
          PropertyManagerPluginInterface pcm,
          boolean verbose)
          throws LoadPropertiesException,
                 java.io.IOException
This method loads the properties stored at the given uri. The plugin uses the PropertyManagerPluginInterface to put the properties into the property manager.

Parameters:
uri -
pcm -
verbose -
Throws:
java.io.IOException
LoadPropertiesException

save

void save(java.lang.String uri,
          PropertyManagerPluginInterface pcm)
          throws SavePropertiesException,
                 java.io.IOException
This method saves the properties to the given uri. The plugin uses the PropertyManagerPluginInterface to read the properties from the property manager.

Parameters:
uri -
pcm -
Throws:
SavePropertiesException
java.io.IOException