01: /**
02: * SSOIdentityManager.java
03: *
04: * This file was auto-generated from WSDL
05: * by the Apache Axis 1.2.1 Jul 21, 2005 (10:26:06 GMT-03:00) WSDL2Java emitter.
06: */package org.josso.gateway.identity.service.ws.impl;
07:
08: public interface SSOIdentityManager extends java.rmi.Remote {
09: public org.josso.gateway.identity.service.ws.impl.SSOUser findUser(
10: java.lang.String in0)
11: throws java.rmi.RemoteException,
12: org.josso.gateway.identity.service.ws.impl.SSOIdentityException,
13: org.josso.gateway.identity.service.ws.impl.NoSuchUserException;
14:
15: public org.josso.gateway.identity.service.ws.impl.SSOUser findUserInSession(
16: java.lang.String in0)
17: throws java.rmi.RemoteException,
18: org.josso.gateway.identity.service.ws.impl.SSOIdentityException,
19: org.josso.gateway.identity.service.ws.impl.NoSuchUserException;
20:
21: public org.josso.gateway.identity.service.ws.impl.SSORole[] findRolesByUsername(
22: java.lang.String in0)
23: throws java.rmi.RemoteException,
24: org.josso.gateway.identity.service.ws.impl.SSOIdentityException;
25:
26: public void userExists(java.lang.String in0)
27: throws java.rmi.RemoteException,
28: org.josso.gateway.identity.service.ws.impl.SSOIdentityException,
29: org.josso.gateway.identity.service.ws.impl.NoSuchUserException;
30:
31: public void initialize() throws java.rmi.RemoteException;
32: }
|