CASA/c_adlib/IDataEngine.cs
2005-10-11 19:51:00 +00:00

32 lines
521 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 Remove(XmlNode secret);
}
}