blob: 33701168a3488e41a00e3ef6cb468c066c0a0cb9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
package com.p4square.grow.frontend;
import org.restlet.security.Verifier;
/**
* An IntegrationDriver is used to create implementations of various objects
* used to integration Grow with a particular Church Management System.
*/
public interface IntegrationDriver {
/**
* Create a new Restlet Verifier to authenticate users when they login to the site.
*
* @return A Verifier.
*/
Verifier newUserAuthenticationVerifier();
}
|