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 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 | 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 1x 1x 1x 41x 41x 1x 1x 41x 41x 1x 1x 41x 41x 1x 1x 41x 41x 41x 41x 1x 1x 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 'PermissionsVerifier.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, }; import { Glacier2 as Glacier2___SSLInfo, } from "./SSLInfo.js" const Glacier2 = { ...Glacier2___SSLInfo, }; export { Glacier2 }; /** * The exception that is thrown when a client is not allowed to create a session. */ Glacier2.PermissionDeniedException = class extends Ice.UserException { constructor(reason = "") { super(); this.reason = reason; } static get _parent() { return Ice.UserException; } static get _ice_id() { return "::Glacier2::PermissionDeniedException"; } _mostDerivedType() { return Glacier2.PermissionDeniedException; } _writeMemberImpl(ostr) { ostr.writeString(this.reason); } _readMemberImpl(istr) { this.reason = istr.readString(); } }; Ice.defineClass(Glacier2.PermissionDeniedException, "::Glacier2::PermissionDeniedException"); const iceC_Glacier2_PermissionsVerifier_ids = [ "::Glacier2::PermissionsVerifier", "::Ice::Object" ]; /** * Represents an object that checks user permissions. The Glacier2 router and other services use a * {@link Glacier2.PermissionsVerifierPrx} proxy when the user is authenticated using a user ID and password. */ Glacier2.PermissionsVerifier = class extends Ice.Object {}; /** * Represents an object that checks user permissions. The Glacier2 router and other services use a * {@link Glacier2.PermissionsVerifierPrx} proxy when the user is authenticated using a user ID and password. */ Glacier2.PermissionsVerifierPrx = class extends Ice.ObjectPrx {}; Ice.TypeRegistry.declareProxyType("Glacier2.PermissionsVerifierPrx", Glacier2.PermissionsVerifierPrx); Ice.defineOperations( Glacier2.PermissionsVerifier, Glacier2.PermissionsVerifierPrx, iceC_Glacier2_PermissionsVerifier_ids, "::Glacier2::PermissionsVerifier", { "checkPermissions": [, 2, , [1], [[7], [7]], [[7]], [ Glacier2.PermissionDeniedException ], , ] }); const iceC_Glacier2_SSLPermissionsVerifier_ids = [ "::Glacier2::SSLPermissionsVerifier", "::Ice::Object" ]; /** * Represents an object that checks user permissions. The Glacier2 router and other services use an * {@link Glacier2.SSLPermissionsVerifierPrx} proxy when the user is authenticated through an SSL certificate. */ Glacier2.SSLPermissionsVerifier = class extends Ice.Object {}; /** * Represents an object that checks user permissions. The Glacier2 router and other services use an * {@link Glacier2.SSLPermissionsVerifierPrx} proxy when the user is authenticated through an SSL certificate. */ Glacier2.SSLPermissionsVerifierPrx = class extends Ice.ObjectPrx {}; Ice.TypeRegistry.declareProxyType("Glacier2.SSLPermissionsVerifierPrx", Glacier2.SSLPermissionsVerifierPrx); Ice.defineOperations( Glacier2.SSLPermissionsVerifier, Glacier2.SSLPermissionsVerifierPrx, iceC_Glacier2_SSLPermissionsVerifier_ids, "::Glacier2::SSLPermissionsVerifier", { "authorize": [, 2, , [1], [[Glacier2.SSLInfo]], [[7]], [ Glacier2.PermissionDeniedException ], , ] }); |