// ********************************************************************** // // Copyright (c) 2003-2010 ZeroC, Inc. All rights reserved. // // This copy of Ice is licensed to you under the terms described in the // ICE_LICENSE file included in this distribution. // // ********************************************************************** // Ice version 3.4.1 package Glacier2; // <auto-generated> // // Generated from file `Session.ice' // // Warning: do not edit this file. // // </auto-generated> /** * The session manager for SSL authenticated users that is * responsible for managing {@link Session} objects. New session objects are * created by the {@link Router} object calling on an application-provided * session manager. If no session manager is provided by the * application, no client-visible sessions are passed to the client. * * @see Router * @see Session * **/ public abstract class _SSLSessionManagerDisp extends Ice.ObjectImpl implements SSLSessionManager { protected void ice_copyStateFrom(Ice.Object __obj) throws java.lang.CloneNotSupportedException { throw new java.lang.CloneNotSupportedException(); } public static final String[] __ids = { "::Glacier2::SSLSessionManager", "::Ice::Object" }; public boolean ice_isA(String s) { return java.util.Arrays.binarySearch(__ids, s) >= 0; } public boolean ice_isA(String s, Ice.Current __current) { return java.util.Arrays.binarySearch(__ids, s) >= 0; } public String[] ice_ids() { return __ids; } public String[] ice_ids(Ice.Current __current) { return __ids; } public String ice_id() { return __ids[0]; } public String ice_id(Ice.Current __current) { return __ids[0]; } public static String ice_staticId() { return __ids[0]; } /** * Create a new session. * * @param info The SSL info. * * @param control A proxy to the session control object. * * @return A proxy to the newly created session. * * @throws CannotCreateSessionException Raised if the session * cannot be created. * **/ public final SessionPrx create(SSLInfo info, SessionControlPrx control) throws CannotCreateSessionException { return create(info, control, null); } public static Ice.DispatchStatus ___create(SSLSessionManager __obj, IceInternal.Incoming __inS, Ice.Current __current) { __checkMode(Ice.OperationMode.Normal, __current.mode); IceInternal.BasicStream __is = __inS.is(); __is.startReadEncaps(); SSLInfo info; info = new SSLInfo(); info.__read(__is); SessionControlPrx control; control = SessionControlPrxHelper.__read(__is); __is.endReadEncaps(); IceInternal.BasicStream __os = __inS.os(); try { SessionPrx __ret = __obj.create(info, control, __current); SessionPrxHelper.__write(__os, __ret); return Ice.DispatchStatus.DispatchOK; } catch(CannotCreateSessionException ex) { __os.writeUserException(ex); return Ice.DispatchStatus.DispatchUserException; } } private final static String[] __all = { "create", "ice_id", "ice_ids", "ice_isA", "ice_ping" }; public Ice.DispatchStatus __dispatch(IceInternal.Incoming in, Ice.Current __current) { int pos = java.util.Arrays.binarySearch(__all, __current.operation); if(pos < 0) { throw new Ice.OperationNotExistException(__current.id, __current.facet, __current.operation); } switch(pos) { case 0: { return ___create(this, in, __current); } case 1: { return ___ice_id(this, in, __current); } case 2: { return ___ice_ids(this, in, __current); } case 3: { return ___ice_isA(this, in, __current); } case 4: { return ___ice_ping(this, in, __current); } } assert(false); throw new Ice.OperationNotExistException(__current.id, __current.facet, __current.operation); } public void __write(IceInternal.BasicStream __os) { __os.writeTypeId(ice_staticId()); __os.startWriteSlice(); __os.endWriteSlice(); super.__write(__os); } public void __read(IceInternal.BasicStream __is, boolean __rid) { if(__rid) { __is.readTypeId(); } __is.startReadSlice(); __is.endReadSlice(); super.__read(__is, true); } public void __write(Ice.OutputStream __outS) { Ice.MarshalException ex = new Ice.MarshalException(); ex.reason = "type Glacier2::SSLSessionManager was not generated with stream support"; throw ex; } public void __read(Ice.InputStream __inS, boolean __rid) { Ice.MarshalException ex = new Ice.MarshalException(); ex.reason = "type Glacier2::SSLSessionManager was not generated with stream support"; throw ex; } }