com.ecyrd.jspwiki
Interface WikiProvider

All Known Subinterfaces:
WikiAttachmentProvider, WikiPageProvider
All Known Implementing Classes:
BasicAttachmentProvider, CachingProvider, FileSystemProvider

public interface WikiProvider

A generic Wiki provider for all sorts of things that the Wiki can store.

Since:
2.0
Author:
Janne Jalkanen

Field Summary
static int LATEST_VERSION
          Passing this to any method should get the latest version
 
Method Summary
 java.lang.String getProviderInfo()
          Return a valid HTML string for information.
 void initialize(java.util.Properties properties)
          Initializes the page provider.
 

Field Detail

LATEST_VERSION

public static final int LATEST_VERSION
Passing this to any method should get the latest version

See Also:
Constant Field Values
Method Detail

initialize

public void initialize(java.util.Properties properties)
                throws NoRequiredPropertyException,
                       java.io.IOException
Initializes the page provider.

NoRequiredPropertyException
java.io.IOException

getProviderInfo

public java.lang.String getProviderInfo()
Return a valid HTML string for information. May be anything.

Since:
1.6.4