CASA/c_adlib/IDataEngine.cs
smanojna f610a50037 - Added support for ADD/MODIFY/DELETE functionalities for Keyring and
Kwallet stores in A-Dlib.
.....................................................................
2006-01-06 11:57:25 +00:00

34 lines
570 B
C#

using System;
using System.Collections;
using System.Xml;
using System.Threading;
namespace Novell.CASA.DataEngines
{
/*
* Defines the interfaces to be implemenetd by all Data Engines.
*/
public interface DataEngine
{
XmlNode Aggregate();
int GetSecret(XmlNode secret);
int SetSecret(XmlNode secret, int opnType);
int SetSecret(XmlNode secret);
int Remove(XmlNode secret);
}
}