summaryrefslogtreecommitdiff
path: root/src/main/java/com/c2kernel/process/auth/Authenticator.java
blob: ae184744db561de548d0a8e708949246219e22d8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
package com.c2kernel.process.auth;

import java.util.Properties;

import com.c2kernel.entity.proxy.AgentProxy;

public interface Authenticator {

	public void initialize(Properties props) throws Exception;
	public AgentProxy authenticate(String resource) throws Exception;
	
}