summaryrefslogtreecommitdiff
path: root/src/main/java/com/c2kernel/process/auth/ProxyLogin.java
blob: 94416cfe467ad3c226b6658f6465668471134d72 (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 ProxyLogin {

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