Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 | 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x | // Copyright (c) ZeroC, Inc. // slice2js version 3.8.0-alpha.0 // <auto-generated>Generated from Slice file 'UserAccountMapper.ice'.</auto-generated> /* eslint-disable */ /* jshint ignore: start */ import * as Ice_DefaultSliceLoader from "../Ice/DefaultSliceLoader.js"; import * as Ice_Object from "../Ice/Object.js"; import * as Ice_ObjectPrx from "../Ice/ObjectPrx.js"; import * as Ice_Operation from "../Ice/Operation.js"; import * as Ice_StreamHelpers from "../Ice/StreamHelpers.js"; import * as Ice_TypeRegistry from "../Ice/TypeRegistry.js"; import * as Ice_UserException from "../Ice/UserException.js"; import * as Ice_Value from "../Ice/Value.js"; const Ice = { ...Ice_DefaultSliceLoader, ...Ice_Object, ...Ice_ObjectPrx, ...Ice_Operation, ...Ice_StreamHelpers, ...Ice_TypeRegistry, ...Ice_UserException, ...Ice_Value, }; export const IceGrid = {}; /** * The exception that is thrown when a user account for a given session identifier can't be found. */ IceGrid.UserAccountNotFoundException = class extends Ice.UserException { static get _parent() { return Ice.UserException; } static get _ice_id() { return "::IceGrid::UserAccountNotFoundException"; } _mostDerivedType() { return IceGrid.UserAccountNotFoundException; } }; Ice.defineClass(IceGrid.UserAccountNotFoundException, "::IceGrid::UserAccountNotFoundException"); const iceC_IceGrid_UserAccountMapper_ids = [ "::Ice::Object", "::IceGrid::UserAccountMapper" ]; /** * Maps user strings in server descriptors to actual user account names. You can configure the user account mapper * of an IceGrid node with the property `IceGrid.Node.UserAccountMapper`. */ IceGrid.UserAccountMapper = class extends Ice.Object {}; /** * Maps user strings in server descriptors to actual user account names. You can configure the user account mapper * of an IceGrid node with the property `IceGrid.Node.UserAccountMapper`. */ IceGrid.UserAccountMapperPrx = class extends Ice.ObjectPrx {}; Ice.TypeRegistry.declareProxyType("IceGrid.UserAccountMapperPrx", IceGrid.UserAccountMapperPrx); Ice.defineOperations( IceGrid.UserAccountMapper, IceGrid.UserAccountMapperPrx, iceC_IceGrid_UserAccountMapper_ids, "::IceGrid::UserAccountMapper", { "getUserAccount": [, 0, , [7], [[7]], , [ IceGrid.UserAccountNotFoundException ], , ] }); |