Statistics
| Revision:

gvsig-projects-pool / org.gvsig.online / trunk / org.gvsig.online / org.gvsig.online.swing / org.gvsig.online.swing.impl / src / main / java / org / gvsig / online / swing / impl / authentication / online / UserIdentificationOnlineConfig.java @ 9513

History | View | Annotate | Download (1015 Bytes)

1
/*
2
 * To change this license header, choose License Headers in Project Properties.
3
 * To change this template file, choose Tools | Templates
4
 * and open the template in the editor.
5
 */
6
package org.gvsig.online.swing.impl.authentication.online;
7

    
8
import org.gvsig.online.lib.api.OnlineUserIdentificationRequester;
9
import org.gvsig.online.lib.api.OnlineUserIdentificationRequester.OnlineUserIdentificationRequesterConfig;
10
import org.gvsig.online.lib.spi.AbstractOnlineUserIdentificationRequesterConfig;
11

    
12
/**
13
 *
14
 * @author jjdelcerro
15
 */
16
public class UserIdentificationOnlineConfig 
17
        extends AbstractOnlineUserIdentificationRequesterConfig
18
        implements OnlineUserIdentificationRequesterConfig 
19
    {
20
    
21
    public UserIdentificationOnlineConfig(UserIdentificationOnlineFactory factory, String siteURL) {
22
        super(factory,siteURL);
23
    }
24
    
25
    @Override
26
    public OnlineUserIdentificationRequester createUserIdentificationRequester() {
27
        return new UserIdentificationOnline(this);
28
    }
29

    
30
}