repo_name
stringlengths
9
74
language
stringclasses
1 value
length_bytes
int64
11
9.34M
extension
stringclasses
2 values
content
stringlengths
11
9.34M
Louis-Aime/Milesian_calendar_Ada
Ada
2,674
adb
-- Body of package Scaliger ---------------------------------------------------------------------------- -- Copyright Miletus 2015 -- Permission is hereby granted, free of charge, to any person obtaining -- a copy of this software and associated documentation files (the -- "Software"), to deal in the Software without restriction, including -- without limitation the rights to use, copy, modify, merge, publish, -- distribute, sublicense, and/or sell copies of the Software, and to -- permit persons to whom the Software is furnished to do so, subject to -- the following conditions: -- 1. The above copyright notice and this permission notice shall be included -- in all copies or substantial portions of the Software. -- 2. Changes with respect to any former version shall be documented. -- -- The software is provided "as is", without warranty of any kind, -- express of implied, including but not limited to the warranties of -- merchantability, fitness for a particular purpose and noninfringement. -- In no event shall the authors of copyright holders be liable for any -- claim, damages or other liability, whether in an action of contract, -- tort or otherwise, arising from, out of or in connection with the software -- or the use or other dealings in the software. -- Inquiries: www.calendriermilesien.org ------------------------------------------------------------------------------- Package body Scaliger is function Fractionnal_day_of (My_duration : Historical_Duration) return Fractional_day_duration is begin return My_duration / 86400.0; end Fractionnal_day_of; function Convert_from_julian_day (Display : Fractional_day_duration) return Historical_Duration is -- The fractional part of the julian day is displayed as a decimal figure -- and is stored as an integer number of the "delta", -- delta being in negative power of 2, -- whereas the number of seconds in a day, 86400, is not a power of 2. -- Multiplying this figure by 86400 is multiplying the delta by the same. -- So we use floating number multiplication -- to convert the fractional part from (fractional) day to seconds Day : Integer := Integer (Display); -- extract integer part of Julian Day Time_in_day : Fractional_day_duration := Display - Fractional_day_duration (Day); -- in fixed-point day Pad : Float := Float (Time_in_day); Julian_hours : Historical_Duration := Historical_Duration (Pad * 86400.0); begin return Historical_Duration (Day * 86400) + Julian_hours; end Convert_from_julian_day; end Scaliger;
reznikmm/matreshka
Ada
3,643
ads
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Open Document Toolkit -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2013, Vadim Godunko <[email protected]> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ with XML.DOM.Attributes; package ODF.DOM.Attributes.FO.Border_Right is type ODF_FO_Border_Right is new XML.DOM.Attributes.DOM_Attribute with private; private type ODF_FO_Border_Right is new XML.DOM.Attributes.DOM_Attribute with null record; end ODF.DOM.Attributes.FO.Border_Right;
VitalijBondarenko/adanls
Ada
12,892
ads
------------------------------------------------------------------------------ -- -- -- Copyright (c) 2014-2022 Vitalii Bondarenko <[email protected]> -- -- -- ------------------------------------------------------------------------------ -- -- -- The MIT License (MIT) -- -- -- -- Permission is hereby granted, free of charge, to any person obtaining a -- -- copy of this software and associated documentation files (the -- -- "Software"), to deal in the Software without restriction, including -- -- without limitation the rights to use, copy, modify, merge, publish, -- -- distribute, sublicense, and/or sell copies of the Software, and to -- -- permit persons to whom the Software is furnished to do so, subject to -- -- the following conditions: -- -- -- -- The above copyright notice and this permission notice shall be included -- -- in all copies or substantial portions of the Software. -- -- -- -- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS -- -- OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -- -- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. -- -- IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY -- -- CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, -- -- TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE -- -- SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -- ------------------------------------------------------------------------------ -- The functions to access the information for the locale. with Ada.Strings.Unbounded; use Ada.Strings.Unbounded; with Interfaces.C; use Interfaces.C; with Interfaces.C.Strings; use Interfaces.C.Strings; package L10n.Localeinfo is -- The record whose components contain information about how numeric and -- monetary values should be formatted in the current locale. type Lconv_Record is record -- Numeric (non-monetary) information. --------------------------------------- Decimal_Point : Unbounded_String; -- The radix character used to format non-monetary quantities. Thousands_Sep : Unbounded_String; -- The character used to separate groups of digits before the -- decimal-point character in formatted non-monetary quantities. Grouping : Unbounded_String; -- A string whose elements taken as one-byte integer values indicate the -- size of each group of digits in formatted non-monetary quantities. -- Use either Thousands_Sep to separate the digit groups. -- Each element is the number of digits in each group; -- elements with higher indices are farther left. -- An element with value Interfaces.C.UCHAR_MAX means that no further -- grouping is done. -- An element with value 0 means that the previous element is used -- for all groups farther left. -- Monetary information. ------------------------- Int_Curr_Symbol : Unbounded_String; -- The international currency symbol applicable to the current locale. -- The first three characters contain the alphabetic international -- currency symbol in accordance with those specified in the -- ISO 4217:1995 standard. The fourth character (immediately preceding -- the null byte) is the character used to separate the international -- currency symbol from the monetary quantity. Currency_Symbol : Unbounded_String; -- The local currency symbol applicable to the current locale. Mon_Decimal_Point : Unbounded_String; -- The radix character used to format monetary quantities. Mon_Thousands_Sep : Unbounded_String; -- The separator for groups of digits before the decimal-point in -- formatted monetary quantities. Mon_Grouping : Unbounded_String; -- A string whose elements taken as one-byte integer values indicate the -- size of each group of digits in formatted monetary quantities. -- Use either Mon_Thousands_Sep to separate the digit groups. -- Each element is the number of digits in each group; -- elements with higher indices are farther left. -- An element with value Interfaces.C.UCHAR_MAX means that no further -- grouping is done. -- An element with value 0 means that the previous element is used -- for all groups farther left. Positive_Sign : Unbounded_String; -- The string used to indicate a non-negative valued formatted monetary -- quantity. Negative_Sign : Unbounded_String; -- The string used to indicate a negative valued formatted monetary -- quantity. Int_Frac_Digits : Natural; -- The number of fractional digits (those after the decimal-point) to be -- displayed in an internationally formatted monetary quantity. Frac_Digits : Natural; -- The number of fractional digits (those after the decimal-point) to be -- displayed in a formatted monetary quantity. P_Cs_Precedes : Natural; -- Set to 1 if the Currency_Symbol precedes the value for a non-negative -- formatted monetary quantity. -- Set to 0 if the symbol succeeds the value. P_Sep_By_Space : Natural; -- Set to a value indicating the separation of the Currency_Symbol, the -- sign string, and the value for a non-negative formatted monetary -- quantity. -- 0 No space separates the currency symbol and value. -- 1 If the currency symbol and sign string are adjacent, a space -- separates them from the value; otherwise, a space separates the -- currency symbol from the value. -- 2 If the currency symbol and sign string are adjacent, a space -- separates them; otherwise, a space separates the sign string from -- the value. N_Cs_Precedes : Natural; -- Set to 1 if the Currency_Symbol precedes the value for a negative -- formatted monetary quantity. Set to 0 if the symbol succeeds the -- value. N_Sep_By_Space : Natural; -- Set to a value indicating the separation of the Currency_Symbol, the -- sign string, and the value for a negative formatted monetary quantity. -- 0 No space separates the currency symbol and value. -- 1 If the currency symbol and sign string are adjacent, a space -- separates them from the value; otherwise, a space separates the -- currency symbol from the value. -- 2 If the currency symbol and sign string are adjacent, a space -- separates them; otherwise, a space separates the sign string from -- the value. P_Sign_Posn : Natural; -- Set to a value indicating the positioning of the Positive_Sign for a -- non-negative formatted monetary quantity. -- 0 Parentheses surround the quantity and Currency_Symbol. -- 1 The sign string precedes the quantity and Currency_Symbol. -- 2 The sign string follows the quantity and Currency_Symbol. -- 3 The sign string immediately precedes the Currency_Symbol. -- 4 The sign string immediately follows the Currency_Symbol. N_Sign_Posn : Natural; -- Set to a value indicating the positioning of the negative_sign for a -- negative formatted monetary quantity. -- 0 Parentheses surround the quantity and Currency_Symbol. -- 1 The sign string precedes the quantity and Currency_Symbol. -- 2 The sign string follows the quantity and Currency_Symbol. -- 3 The sign string immediately precedes the Currency_Symbol. -- 4 The sign string immediately follows the Currency_Symbol. -- Int_P_Cs_Precedes : Natural; -- Set to 1 or 0 if the Int_Curr_Symbol respectively precedes or -- succeeds the value for a non-negative internationally formatted -- monetary quantity. Int_P_Sep_By_Space : Natural; -- Set to a value indicating the separation of the Int_Curr_Symbol, the -- sign string, and the value for a negative internationally formatted -- monetary quantity. -- 0 No space separates the currency symbol and value. -- 1 If the currency symbol and sign string are adjacent, a space -- separates them from the value; otherwise, a space separates the -- currency symbol from the value. -- 2 If the currency symbol and sign string are adjacent, a space -- separates them; otherwise, a space separates the sign string from -- the value. Int_N_Cs_Precedes : Natural; -- Set to 1 or 0 if the Int_Curr_Symbol respectively precedes or -- succeeds the value for a negative internationally formatted monetary -- quantity. Int_N_Sep_By_Space : Natural; -- Set to a value indicating the separation of the Int_Curr_Symbol, the -- sign string, and the value for a negative internationally formatted -- monetary quantity. -- 0 No space separates the currency symbol and value. -- 1 If the currency symbol and sign string are adjacent, a space -- separates them from the value; otherwise, a space separates the -- currency symbol from the value. -- 2 If the currency symbol and sign string are adjacent, a space -- separates them; otherwise, a space separates the sign string from -- the value. Int_P_Sign_Posn : Natural; -- Set to a value indicating the positioning of the Positive_Sign for a -- non-negative internationally formatted monetary quantity. -- 0 Parentheses surround the quantity and Int_Curr_Symbol. -- 1 The sign string precedes the quantity and Int_Curr_Symbol. -- 2 The sign string follows the quantity and Int_Curr_Symbol. -- 3 The sign string immediately precedes the Int_Curr_Symbol. -- 4 The sign string immediately follows the Int_Curr_Symbol. Int_N_Sign_Posn : Natural; -- Set to a value indicating the positioning of the Negative_Sign for a -- negative internationally formatted monetary quantity. -- 0 Parentheses surround the quantity and Int_Curr_Symbol. -- 1 The sign string precedes the quantity and Int_Curr_Symbol. -- 2 The sign string follows the quantity and Int_Curr_Symbol. -- 3 The sign string immediately precedes the Int_Curr_Symbol. -- 4 The sign string immediately follows the Int_Curr_Symbol. end record; type Lconv_Access is access all Lconv_Record; function Localeconv return Lconv_Access; -- Returns a record whose components contain information about how numeric -- and monetary values should be formatted in the current locale. -- Localeinfo in C-types -- -- The record whose components contain information about how numeric and -- monetary values should be formatted in the current locale. type C_Lconv_Record is record Decimal_Point : chars_ptr; Thousands_Sep : chars_ptr; Grouping : chars_ptr; Int_Curr_Symbol : chars_ptr; Currency_Symbol : chars_ptr; Mon_Decimal_Point : chars_ptr; Mon_Thousands_Sep : chars_ptr; Mon_Grouping : chars_ptr; Positive_Sign : chars_ptr; Negative_Sign : chars_ptr; Int_Frac_Digits : unsigned_char; Frac_Digits : unsigned_char; P_Cs_Precedes : unsigned_char; P_Sep_By_Space : unsigned_char; N_Cs_Precedes : unsigned_char; N_Sep_By_Space : unsigned_char; P_Sign_Posn : unsigned_char; N_Sign_Posn : unsigned_char; Int_P_Cs_Precedes : unsigned_char; Int_P_Sep_By_Space : unsigned_char; Int_N_Cs_Precedes : unsigned_char; Int_N_Sep_By_Space : unsigned_char; Int_P_Sign_Posn : unsigned_char; Int_N_Sign_Posn : unsigned_char; end record; pragma Convention (C, C_Lconv_Record); type C_Lconv_Access is access all C_Lconv_Record; function C_Localeconv return C_Lconv_Access; pragma Import (C, C_Localeconv, "localeconv"); end L10n.Localeinfo;
AdaCore/libadalang
Ada
132
ads
package Invalid is procedure Proc is separate; --% node.p_syntactic_fully_qualified_name procedure Sep_Subp; end Invalid;
JohnYang97/Space-Convoy
Ada
362
adb
-- -- Jan & Uwe R. Zimmer, Australia, July 2011 -- package body Vectors_3D is function "*" (V_Left, V_Right : Vector_3D) return Vector_3D is (x => (V_Left (y) * V_Right (z) - V_Left (z) * V_Right (y)), y => (V_Left (z) * V_Right (x) - V_Left (x) * V_Right (z)), z => (V_Left (x) * V_Right (y) - V_Left (y) * V_Right (x))); end Vectors_3D;
reznikmm/spawn
Ada
3,592
adb
-- -- Copyright (C) 2018-2022, AdaCore -- -- SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -- private with Spawn.Internal; package body Spawn.Environments is procedure Initialize_Default (Default : out Process_Environment); function Search_In_Path (File : UTF_8_String; Path : UTF_8_String) return UTF_8_String; -- Look for File in given list of directories Default : Process_Environment; function Less (Left, Right : UTF_8_String) return Boolean renames Spawn.Internal.Environments."<"; function Equal (Left, Right : UTF_8_String) return Boolean renames Spawn.Internal.Environments."="; ----------- -- Clear -- ----------- procedure Clear (Self : in out Process_Environment'Class) is begin Self.Map.Clear; end Clear; -------------- -- Contains -- -------------- function Contains (Self : Process_Environment'Class; Name : UTF_8_String) return Boolean is begin return Self.Map.Contains (Name); end Contains; ------------------------ -- Initialize_Default -- ------------------------ procedure Initialize_Default (Default : out Process_Environment) is separate; ------------ -- Insert -- ------------ procedure Insert (Self : in out Process_Environment'Class; Name : UTF_8_String; Value : UTF_8_String) is begin Self.Map.Include (Name, Value); end Insert; ------------ -- Insert -- ------------ procedure Insert (Self : in out Process_Environment'Class; Environemnt : Process_Environment'Class) is begin for J in Environemnt.Map.Iterate loop Self.Map.Include (UTF_8_String_Maps.Key (J), UTF_8_String_Maps.Element (J)); end loop; end Insert; ---------- -- Keys -- ---------- function Keys (Self : Process_Environment'Class) return Spawn.String_Vectors.UTF_8_String_Vector is begin return Result : Spawn.String_Vectors.UTF_8_String_Vector do for J in Self.Map.Iterate loop Result.Append (UTF_8_String_Maps.Key (J)); end loop; end return; end Keys; ------------ -- Remove -- ------------ procedure Remove (Self : in out Process_Environment'Class; Name : UTF_8_String) is begin Self.Map.Exclude (Name); end Remove; function Search_In_Path (File : UTF_8_String; Path : UTF_8_String) return UTF_8_String is separate; ----------------- -- Search_Path -- ----------------- function Search_Path (Self : Process_Environment'Class; File : UTF_8_String; Name : UTF_8_String := "PATH") return UTF_8_String is Value : constant UTF_8_String := Self.Value (Name); begin return (if Value = "" then "" else Search_In_Path (File, Value)); end Search_Path; ------------------------ -- System_Environment -- ------------------------ function System_Environment return Process_Environment is begin return Default; end System_Environment; ----------- -- Value -- ----------- function Value (Self : Process_Environment'Class; Name : UTF_8_String; Default : UTF_8_String := "") return UTF_8_String is Cursor : constant UTF_8_String_Maps.Cursor := Self.Map.Find (Name); begin return (if UTF_8_String_Maps.Has_Element (Cursor) then UTF_8_String_Maps.Element (Cursor) else Default); end Value; begin Initialize_Default (Default); end Spawn.Environments;
skordal/ada-regex
Ada
1,214
ads
-- Ada regular expression library -- (c) Kristian Klomsten Skordal 2020 <[email protected]> -- Report bugs and issues on <https://github.com/skordal/ada-regex> private with Ada.Strings.Unbounded; package Regex.Utilities.String_Buffers is -- String buffer type: type String_Buffer is tagged limited private; -- Creates a string buffer: function Create (Input : in String) return String_Buffer; -- Gets the next character from a string buffer: function Get_Next (This : in out String_Buffer) return Character; -- Peeks at the next character in a string buffer: function Peek (This : in out String_Buffer) return Character; -- Discards the next character in a string buffer: procedure Discard_Next (This : in out String_Buffer); -- Checks whether the string buffer index is at the end: function At_End (This : in String_Buffer) return Boolean; -- Gets the current index in the string buffer: function Get_Index (This : in String_Buffer) return Natural; private type String_Buffer is tagged limited record Buffer : Ada.Strings.Unbounded.Unbounded_String; Index : Integer; end record; end Regex.Utilities.String_Buffers;
zhmu/ananas
Ada
6,162
ads
------------------------------------------------------------------------------ -- -- -- GNU ADA RUN-TIME LIBRARY (GNARL) COMPONENTS -- -- -- -- S Y S T E M . L I N U X -- -- -- -- S p e c -- -- -- -- Copyright (C) 2013-2022, Free Software Foundation, Inc. -- -- -- -- -- GNARL is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. -- -- -- -- As a special exception under Section 7 of GPL version 3, you are granted -- -- additional permissions described in the GCC Runtime Library Exception, -- -- version 3.1, as published by the Free Software Foundation. -- -- -- -- You should have received a copy of the GNU General Public License and -- -- a copy of the GCC Runtime Library Exception along with this program; -- -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -- -- <http://www.gnu.org/licenses/>. -- -- -- -- -- ------------------------------------------------------------------------------ -- This is the x32 version of this package -- This package encapsulates cpu specific differences between implementations -- of GNU/Linux, in order to share s-osinte-linux.ads. -- PLEASE DO NOT add any with-clauses to this package or remove the pragma -- Preelaborate. This package is designed to be a bottom-level (leaf) package with Interfaces.C; with System.Parameters; package System.Linux is pragma Preelaborate; ---------- -- Time -- ---------- subtype suseconds_t is Long_Long_Integer; -- Note that suseconds_t is 64 bits. type time_t is range -2 ** (System.Parameters.time_t_bits - 1) .. 2 ** (System.Parameters.time_t_bits - 1) - 1; subtype clockid_t is Interfaces.C.int; type timespec is record tv_sec : time_t; tv_nsec : Long_Long_Integer; -- Note that tv_nsec is 64 bits. end record; pragma Convention (C, timespec); type timeval is record tv_sec : time_t; tv_usec : suseconds_t; end record; pragma Convention (C, timeval); ----------- -- Errno -- ----------- EAGAIN : constant := 11; EINTR : constant := 4; EINVAL : constant := 22; ENOMEM : constant := 12; EPERM : constant := 1; ETIMEDOUT : constant := 110; ------------- -- Signals -- ------------- SIGHUP : constant := 1; -- hangup SIGINT : constant := 2; -- interrupt (rubout) SIGQUIT : constant := 3; -- quit (ASCD FS) SIGILL : constant := 4; -- illegal instruction (not reset) SIGTRAP : constant := 5; -- trace trap (not reset) SIGIOT : constant := 6; -- IOT instruction SIGABRT : constant := 6; -- used by abort, replace SIGIOT in the future SIGFPE : constant := 8; -- floating point exception SIGKILL : constant := 9; -- kill (cannot be caught or ignored) SIGBUS : constant := 7; -- bus error SIGUSR1 : constant := 10; -- user defined signal 1 SIGSEGV : constant := 11; -- segmentation violation SIGUSR2 : constant := 12; -- user defined signal 2 SIGPIPE : constant := 13; -- write on a pipe with no one to read it SIGALRM : constant := 14; -- alarm clock SIGTERM : constant := 15; -- software termination signal from kill SIGSTKFLT : constant := 16; -- coprocessor stack fault (Linux) SIGCLD : constant := 17; -- alias for SIGCHLD SIGCHLD : constant := 17; -- child status change SIGSTOP : constant := 19; -- stop (cannot be caught or ignored) SIGTSTP : constant := 20; -- user stop requested from tty SIGCONT : constant := 18; -- stopped process has been continued SIGTTIN : constant := 21; -- background tty read attempted SIGTTOU : constant := 22; -- background tty write attempted SIGURG : constant := 23; -- urgent condition on IO channel SIGXCPU : constant := 24; -- CPU time limit exceeded SIGXFSZ : constant := 25; -- filesize limit exceeded SIGVTALRM : constant := 26; -- virtual timer expired SIGPROF : constant := 27; -- profiling timer expired SIGWINCH : constant := 28; -- window size change SIGPOLL : constant := 29; -- pollable event occurred SIGIO : constant := 29; -- I/O now possible (4.2 BSD) SIGLOST : constant := 29; -- File lock lost SIGPWR : constant := 30; -- power-fail restart SIGSYS : constant := 31; -- bad system call SIGUNUSED : constant := 31; -- unused signal (mapped to SIGSYS) SIG32 : constant := 32; -- glibc internal signal SIG33 : constant := 33; -- glibc internal signal SIG34 : constant := 34; -- glibc internal signal -- struct_sigaction offsets sa_handler_pos : constant := 0; sa_mask_pos : constant := Standard'Address_Size / 8; sa_flags_pos : constant := 128 + sa_mask_pos; SA_SIGINFO : constant := 16#04#; SA_ONSTACK : constant := 16#08000000#; end System.Linux;
GLADORG/glad-cli
Ada
101
ads
package Version with Preelaborate is Current : constant String := "0.0.1"; private end Version;
dksmiffs/gnatmake-examples
Ada
501
adb
with Ada.Text_IO; use Ada.Text_IO; with I_Am_Ada; with I_Am_Ada_Too; procedure Main is procedure Cpp_Fun; pragma Import(C, Cpp_Fun, "i_am_adaInterface"); procedure C_Fun; pragma Import(C, C_Fun, "i_am_c"); begin Put_Line("Calling external C++ code from Ada main."); Cpp_Fun; Put_Line("Calling external C code from Ada main."); C_Fun; Put_Line("Calling Ada code from Ada main."); I_Am_Ada.Ada_Procedure; I_Am_Ada_Too.Ada_Procedure_Too; Put_Line("Exiting Ada main."); end Main;
reznikmm/matreshka
Ada
3,588
ads
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Ada Modeling Framework -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2011-2012, Vadim Godunko <[email protected]> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ -- This file is generated, don't edit it. ------------------------------------------------------------------------------ with AMF.Elements.Generic_Hash; function AMF.CMOF.Tags.Hash is new AMF.Elements.Generic_Hash (CMOF_Tag, CMOF_Tag_Access);
charlie5/cBound
Ada
1,510
ads
-- This file is generated by SWIG. Please do not modify by hand. -- with Interfaces.C; with Interfaces.C; with Interfaces.C.Pointers; package xcb.xcb_glx_get_color_table_parameterfv_cookie_t is -- Item -- type Item is record sequence : aliased Interfaces.C.unsigned; end record; -- Item_Array -- type Item_Array is array (Interfaces.C .size_t range <>) of aliased xcb .xcb_glx_get_color_table_parameterfv_cookie_t .Item; -- Pointer -- package C_Pointers is new Interfaces.C.Pointers (Index => Interfaces.C.size_t, Element => xcb.xcb_glx_get_color_table_parameterfv_cookie_t.Item, Element_Array => xcb.xcb_glx_get_color_table_parameterfv_cookie_t.Item_Array, Default_Terminator => (others => <>)); subtype Pointer is C_Pointers.Pointer; -- Pointer_Array -- type Pointer_Array is array (Interfaces.C .size_t range <>) of aliased xcb .xcb_glx_get_color_table_parameterfv_cookie_t .Pointer; -- Pointer_Pointer -- package C_Pointer_Pointers is new Interfaces.C.Pointers (Index => Interfaces.C.size_t, Element => xcb.xcb_glx_get_color_table_parameterfv_cookie_t.Pointer, Element_Array => xcb.xcb_glx_get_color_table_parameterfv_cookie_t.Pointer_Array, Default_Terminator => null); subtype Pointer_Pointer is C_Pointer_Pointers.Pointer; end xcb.xcb_glx_get_color_table_parameterfv_cookie_t;
google-code/ada-util
Ada
16,813
adb
----------------------------------------------------------------------- -- serialize-io-xml-tests -- Unit tests for XML serialization -- Copyright (C) 2011, 2012 Stephane Carrez -- Written by Stephane Carrez ([email protected]) -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License. -- You may obtain a copy of the License at -- -- http://www.apache.org/licenses/LICENSE-2.0 -- -- Unless required by applicable law or agreed to in writing, software -- distributed under the License is distributed on an "AS IS" BASIS, -- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -- See the License for the specific language governing permissions and -- limitations under the License. ----------------------------------------------------------------------- with Ada.Strings.Unbounded; with Util.Test_Caller; with Util.Log.Loggers; with Util.Streams.Buffered; with Util.Serialize.IO.XML; with Util.Serialize.Mappers.Record_Mapper; package body Util.Serialize.IO.XML.Tests is use Util.Log; use Util.Tests; use Ada.Strings.Unbounded; Log : constant Loggers.Logger := Loggers.Create ("Util.Serialize.IO.Tests"); type Map_Test is record Value : Natural := 0; Bool : Boolean := False; Name : Unbounded_String; Node : Util.Beans.Objects.Object; end record; type Map_Test_Access is access all Map_Test; type Map_Test_Fields is (FIELD_VALUE, FIELD_BOOL, FIELD_NAME, FIELD_NODE); function Get_Member (P : in Map_Test; Field : in Map_Test_Fields) return Util.Beans.Objects.Object; procedure Set_Member (P : in out Map_Test; Field : in Map_Test_Fields; Value : in Util.Beans.Objects.Object); procedure Set_Member (P : in out Map_Test; Field : in Map_Test_Fields; Value : in Util.Beans.Objects.Object) is begin case Field is when FIELD_VALUE => P.Value := Natural (Util.Beans.Objects.To_Integer (Value)); when FIELD_BOOL => P.Bool := Util.Beans.Objects.To_Boolean (Value); when FIELD_NAME => P.Name := Util.Beans.Objects.To_Unbounded_String (Value); if P.Name = "raise-field-error" then raise Util.Serialize.Mappers.Field_Error with "Testing Field_Error exception"; end if; if P.Name = "raise-field-fatal-error" then raise Util.Serialize.Mappers.Field_Fatal_Error with "Testing Fatal_Error exception"; end if; when FIELD_NODE => P.Node := Value; end case; end Set_Member; function Get_Member (P : in Map_Test; Field : in Map_Test_Fields) return Util.Beans.Objects.Object is begin case Field is when FIELD_VALUE => return Util.Beans.Objects.To_Object (P.Value); when FIELD_BOOL => return Util.Beans.Objects.To_Object (P.Bool); when FIELD_NAME => return Util.Beans.Objects.To_Object (P.Name); when FIELD_NODE => return P.Node; end case; end Get_Member; package Map_Test_Mapper is new Util.Serialize.Mappers.Record_Mapper (Element_Type => Map_Test, Element_Type_Access => Map_Test_Access, Fields => Map_Test_Fields, Set_Member => Set_Member); package Caller is new Util.Test_Caller (Test, "Serialize.IO.XML"); procedure Add_Tests (Suite : in Util.Tests.Access_Test_Suite) is begin Caller.Add_Test (Suite, "Test Util.Serialize.IO.XML.Parser", Test_Parser'Access); Caller.Add_Test (Suite, "Test Util.Serialize.IO.XML.Parser2", Test_Parser2'Access); Caller.Add_Test (Suite, "Test Util.Serialize.IO.XML.Parser Wildcard Mapping", Test_Parser_Wildcard_Mapping'Access); Caller.Add_Test (Suite, "Test Util.Serialize.IO.XML.Parser Deep_Wildcard Mapping", Test_Parser_Deep_Wildcard_Mapping'Access); Caller.Add_Test (Suite, "Test Util.Serialize.IO.XML.Parser_Error", Test_Parser_Error'Access); Caller.Add_Test (Suite, "Test Util.Serialize.IO.XML.Write", Test_Writer'Access); end Add_Tests; -- ------------------------------ -- Test XML de-serialization -- ------------------------------ procedure Test_Parser (T : in out Test) is Mapping : aliased Map_Test_Mapper.Mapper; Result : aliased Map_Test; Reader : Util.Serialize.IO.XML.Parser; begin Mapping.Add_Mapping ("name", FIELD_NAME); Mapping.Add_Mapping ("value", FIELD_VALUE); Mapping.Add_Mapping ("status", FIELD_BOOL); Mapping.Add_Mapping ("@bool", FIELD_BOOL); Mapping.Add_Mapping ("@id", FIELD_VALUE); Reader.Add_Mapping ("info/node", Mapping'Unchecked_Access); Map_Test_Mapper.Set_Context (Reader, Result'Unchecked_Access); -- Extract XML and check name, value, status Reader.Parse_String ("<info><node><name>A</name><value>2</value>" & "<status>1</status></node></info>"); T.Assert (not Reader.Has_Error, "The parser indicates an error"); Assert_Equals (T, "A", Result.Name, "Invalid name"); Assert_Equals (T, 2, Result.Value, "Invalid value"); T.Assert (Result.Bool, "Invalid boolean"); -- Another extraction. Reader.Parse_String ("<info><node><name>B</name><value>20</value>" & "<status>0</status></node></info>"); T.Assert (not Reader.Has_Error, "The parser indicates an error"); Assert_Equals (T, "B", Result.Name, "Invalid name"); Assert_Equals (T, 20, Result.Value, "Invalid value"); T.Assert (not Result.Bool, "Invalid boolean"); -- Another extraction using attribute mappings. Reader.Parse_String ("<info><node id='23' bool='true'><name>TOTO</name></node></info>"); T.Assert (not Reader.Has_Error, "The parser indicates an error"); Assert_Equals (T, "TOTO", Result.Name, "Invalid name"); Assert_Equals (T, 23, Result.Value, "Invalid value"); T.Assert (Result.Bool, "Invalid boolean"); end Test_Parser; -- ------------------------------ -- Test XML de-serialization -- ------------------------------ procedure Test_Parser2 (T : in out Test) is use type Util.Beans.Objects.Data_Type; Mapping : aliased Map_Test_Mapper.Mapper; Result : aliased Map_Test; Reader : Util.Serialize.IO.XML.Parser; begin Mapping.Add_Mapping ("node/name", FIELD_NAME); Mapping.Add_Mapping ("node/value", FIELD_VALUE); Mapping.Add_Mapping ("node/status", FIELD_BOOL); Mapping.Add_Mapping ("node/@bool", FIELD_BOOL); Mapping.Add_Mapping ("node/@id", FIELD_VALUE); Mapping.Add_Mapping ("node", FIELD_NODE); Reader.Add_Mapping ("info", Mapping'Unchecked_Access); Map_Test_Mapper.Set_Context (Reader, Result'Unchecked_Access); Result.Node := Util.Beans.Objects.Null_Object; -- Extract XML and check name, value, status Reader.Parse_String ("<info><node><name>A</name><value>2</value>" & "<status>1</status></node></info>"); T.Assert (not Reader.Has_Error, "The parser indicates an error"); Assert_Equals (T, "A", Result.Name, "Invalid name"); Assert_Equals (T, 2, Result.Value, "Invalid value"); T.Assert (Result.Bool, "Invalid boolean"); T.Assert (Util.Beans.Objects.Get_Type (Result.Node) = Util.Beans.Objects.TYPE_STRING, "Invalid node type"); -- Another extraction. Reader.Parse_String ("<info><node><name>B</name><value>20</value>" & "<status>0</status></node></info>"); Assert_Equals (T, "B", Result.Name, "Invalid name"); Assert_Equals (T, 20, Result.Value, "Invalid value"); T.Assert (not Result.Bool, "Invalid boolean"); -- Another extraction using attribute mappings. Reader.Parse_String ("<info><node id='23' bool='true'><name>TOTO</name></node></info>"); Assert_Equals (T, "TOTO", Result.Name, "Invalid name"); Assert_Equals (T, 23, Result.Value, "Invalid value"); T.Assert (Result.Bool, "Invalid boolean"); end Test_Parser2; -- ----------------------- -- Test wildcard mapping for serialization. -- ----------------------- procedure Test_Parser_Wildcard_Mapping (T : in out Test) is use type Util.Beans.Objects.Data_Type; Mapping : aliased Map_Test_Mapper.Mapper; Result : aliased Map_Test; Reader : Util.Serialize.IO.XML.Parser; begin Mapping.Add_Mapping ("node/*/status", FIELD_BOOL); Mapping.Add_Mapping ("node/*/name", FIELD_NAME); Mapping.Add_Mapping ("node/*/value", FIELD_VALUE); Mapping.Add_Mapping ("node/*/name/@bool", FIELD_BOOL); Mapping.Add_Mapping ("node/@id", FIELD_VALUE); Mapping.Add_Mapping ("node", FIELD_NODE); Reader.Add_Mapping ("info", Mapping'Unchecked_Access); Map_Test_Mapper.Set_Context (Reader, Result'Unchecked_Access); Result.Node := Util.Beans.Objects.Null_Object; -- Extract XML and check name, value, status Reader.Parse_String ("<info><node><inner><name>A</name><value>2</value></inner>" & "<status>1</status></node></info>"); T.Assert (not Reader.Has_Error, "The parser indicates an error"); Assert_Equals (T, "A", Result.Name, "Invalid name"); Assert_Equals (T, 2, Result.Value, "Invalid value"); T.Assert (Result.Bool, "Invalid boolean"); T.Assert (Util.Beans.Objects.Get_Type (Result.Node) = Util.Beans.Objects.TYPE_STRING, "Invalid node type"); -- Another extraction. Reader.Parse_String ("<info><node><b><c><d><name>B</name><value>20</value></d></c></b>" & "<status>0</status></node></info>"); Assert_Equals (T, "B", Result.Name, "Invalid name"); Assert_Equals (T, 20, Result.Value, "Invalid value"); T.Assert (not Result.Bool, "Invalid boolean"); -- Another extraction using attribute mappings. Reader.Parse_String ("<info><node id='23'><name bool='true'>TOTO</name></node></info>"); Assert_Equals (T, "TOTO", Result.Name, "Invalid name"); Assert_Equals (T, 23, Result.Value, "Invalid value"); T.Assert (Result.Bool, "Invalid boolean"); end Test_Parser_Wildcard_Mapping; -- ----------------------- -- Test (**) wildcard mapping for serialization. -- ----------------------- procedure Test_Parser_Deep_Wildcard_Mapping (T : in out Test) is use type Util.Beans.Objects.Data_Type; Mapping : aliased Map_Test_Mapper.Mapper; Result : aliased Map_Test; Reader : Util.Serialize.IO.XML.Parser; begin Mapping.Add_Mapping ("**/node/@id", FIELD_VALUE); Mapping.Add_Mapping ("**/node/name", FIELD_NAME); Mapping.Add_Mapping ("**/node/name/@bool", FIELD_BOOL); Mapping.Add_Mapping ("**/node", FIELD_NODE); Mapping.Dump (Log); Reader.Add_Mapping ("info", Mapping'Unchecked_Access); Map_Test_Mapper.Set_Context (Reader, Result'Unchecked_Access); Reader.Dump (Log); Result.Node := Util.Beans.Objects.Null_Object; -- Extract XML and check name, value, status Reader.Parse_String ("<info><node><node id='2'><name bool='1'>A</name>" & "<value>2</value></node>" & "<status>1</status></node></info>"); T.Assert (not Reader.Has_Error, "The parser indicates an error"); Assert_Equals (T, "A", Result.Name, "Invalid name"); Assert_Equals (T, 2, Result.Value, "Invalid value"); T.Assert (Result.Bool, "Invalid boolean"); T.Assert (Util.Beans.Objects.Get_Type (Result.Node) = Util.Beans.Objects.TYPE_STRING, "Invalid node type"); Reader.Parse_String ("<info><node><a><b><node id='3'><name bool='0'>B</name>" & "<d><value>2</value></d></node></b></a>" & "<status>1</status></node></info>"); T.Assert (not Reader.Has_Error, "The parser indicates an error"); Assert_Equals (T, "B", Result.Name, "Invalid name"); Assert_Equals (T, 3, Result.Value, "Invalid value"); T.Assert (not Result.Bool, "Invalid boolean"); T.Assert (Util.Beans.Objects.Get_Type (Result.Node) = Util.Beans.Objects.TYPE_STRING, "Invalid node type"); end Test_Parser_Deep_Wildcard_Mapping; -- ------------------------------ -- Test XML de-serialization with some errors. -- ------------------------------ procedure Test_Parser_Error (T : in out Test) is procedure Check_Error (Content : in String; Msg : in String); procedure Check_Error (Content : in String; Msg : in String) is use type Util.Beans.Objects.Data_Type; Mapping : aliased Map_Test_Mapper.Mapper; Result : aliased Map_Test; Reader : Util.Serialize.IO.XML.Parser; begin Mapping.Add_Mapping ("node/name", FIELD_NAME); Mapping.Add_Mapping ("node/value", FIELD_VALUE); Mapping.Add_Mapping ("node/status", FIELD_BOOL); Mapping.Add_Mapping ("node/@bool", FIELD_BOOL); Mapping.Add_Mapping ("node/@id", FIELD_VALUE); Mapping.Add_Mapping ("node", FIELD_NODE); Reader.Add_Mapping ("info", Mapping'Unchecked_Access); Map_Test_Mapper.Set_Context (Reader, Result'Unchecked_Access); Result.Node := Util.Beans.Objects.Null_Object; -- Extract XML and check name, value, status Reader.Parse_String (Content); T.Assert (Reader.Has_Error, "No error reported by the parser for an invalid XML: " & Msg); end Check_Error; begin Check_Error ("<info><node><name>A</name><value>2</value>" & "<status>1</status></node>", "XML element is not closed"); Check_Error ("<info><node><name attr=>A</name><value>2</value>" & "<status>1</status></node></info>", "XML attribute is not correct"); Check_Error ("<info><node><name attr='x'>A</name><value>&something;</value>" & "<status>1</status></node></info>", "XML attribute is not correct"); Check_Error ("<info><node><name attr='x'>A</name><value>raise-field-error</value>" & "<status>1</status></node></info>", "Field_Error exception"); Check_Error ("<info><node><name attr='x'>A</name><value>raise-fatal-error</value>" & "<status>1</status></node></info>", "Field_Error exception"); Check_Error ("<info><node><name attr='x'>raise-field-error</name><value>3</value>" & "<status>1</status></node></info>", "Field_Error exception"); Check_Error ("<info><node><name attr='x'>raise-field-fatal-error</name><value>3</value>" & "<status>1</status></node></info>", "Field_Error exception"); end Test_Parser_Error; -- ------------------------------ -- Test XML serialization -- ------------------------------ procedure Test_Writer (T : in out Test) is use Util.Streams.Buffered; function Serialize (Value : in Map_Test) return String; Mapping : aliased Map_Test_Mapper.Mapper; Result : aliased Map_Test; Reader : Util.Serialize.IO.XML.Parser; function Serialize (Value : in Map_Test) return String is Output : Util.Serialize.IO.XML.Output_Stream; begin Output.Initialize (Size => 10000); Mapping.Write (Output, Value); return Util.Streams.Texts.To_String (Buffered_Stream (Output)); end Serialize; begin Mapping.Add_Mapping ("name", FIELD_NAME); Mapping.Add_Mapping ("value", FIELD_VALUE); Mapping.Add_Mapping ("status", FIELD_BOOL); -- Mapping.Add_Mapping ("@bool", FIELD_BOOL); -- Mapping.Add_Mapping ("@id", FIELD_VALUE); Mapping.Bind (Get_Member'Access); Reader.Add_Mapping ("info/node", Mapping'Unchecked_Access); Result.Name := To_Unbounded_String ("test"); Result.Bool := False; Result.Value := 23; declare XML : constant String := Serialize (Result); begin Log.Info ("Serialize XML: {0}", XML); T.Assert (XML'Length > 0, "Invalid XML serialization"); end; end Test_Writer; end Util.Serialize.IO.XML.Tests;
reznikmm/matreshka
Ada
986
adb
with Ada.Streams; with Ada.Wide_Wide_Text_IO; with Zip.Archives; with League.Calendars; with League.Stream_Element_Vectors; with League.String_Vectors; with League.Strings; procedure Main2 is function "+" (Text : Wide_Wide_String) return League.Strings.Universal_String renames League.Strings.To_Universal_String; Input : Zip.Archives.Input; Output : aliased Zip.Archives.Output; Data : League.Stream_Element_Vectors.Stream_Element_Vector; begin Zip.Archives.Initialize; Input.Open (+"/tmp/table.ods"); Output.Create (+"/tmp/copy.zip"); for J in 1 .. Input.Entry_Count loop Ada.Wide_Wide_Text_IO.Put_Line (Input.Path (J).To_Wide_Wide_String); Output.Copy (Input, J); end loop; Data.Append (Ada.Streams.Stream_Element_Array'(0, 1, 2, 3, 4, 5)); Output.Append (Path => +"aaa.txt", Data => Data, Modified => League.Calendars.Clock, Method => Zip.Deflate); Output.Close; end Main2;
reznikmm/matreshka
Ada
5,444
ads
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Ada Modeling Framework -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2012, Vadim Godunko <[email protected]> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ -- This file is generated, don't edit it. ------------------------------------------------------------------------------ with AMF.String_Collections; limited with AMF.UML.Behaviors; limited with AMF.UML.Operations; package AMF.Utp.Test_Cases is pragma Preelaborate; type Utp_Test_Case is limited interface; type Utp_Test_Case_Access is access all Utp_Test_Case'Class; for Utp_Test_Case_Access'Storage_Size use 0; not overriding function Get_Base_Behavior (Self : not null access constant Utp_Test_Case) return AMF.UML.Behaviors.UML_Behavior_Access is abstract; -- Getter of TestCase::base_Behavior. -- not overriding procedure Set_Base_Behavior (Self : not null access Utp_Test_Case; To : AMF.UML.Behaviors.UML_Behavior_Access) is abstract; -- Setter of TestCase::base_Behavior. -- not overriding function Get_Base_Operation (Self : not null access constant Utp_Test_Case) return AMF.UML.Operations.UML_Operation_Access is abstract; -- Getter of TestCase::base_Operation. -- not overriding procedure Set_Base_Operation (Self : not null access Utp_Test_Case; To : AMF.UML.Operations.UML_Operation_Access) is abstract; -- Setter of TestCase::base_Operation. -- not overriding function Get_Priority (Self : not null access constant Utp_Test_Case) return AMF.Optional_String is abstract; -- Getter of TestCase::priority. -- not overriding procedure Set_Priority (Self : not null access Utp_Test_Case; To : AMF.Optional_String) is abstract; -- Setter of TestCase::priority. -- not overriding function Get_Compatible_SUT_Version (Self : not null access constant Utp_Test_Case) return AMF.String_Collections.Set_Of_String is abstract; -- Getter of TestCase::compatibleSUTVersion. -- not overriding function Get_Compatible_SUT_Variant (Self : not null access constant Utp_Test_Case) return AMF.String_Collections.Set_Of_String is abstract; -- Getter of TestCase::compatibleSUTVariant. -- end AMF.Utp.Test_Cases;
reznikmm/matreshka
Ada
3,904
adb
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Web Framework -- -- -- -- Tools Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2012, Vadim Godunko <[email protected]> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ package body WSDL.Iterators is ----------- -- Visit -- ----------- procedure Visit (Self : in out WSDL_Iterator'Class; Visitor : in out WSDL.Visitors.WSDL_Visitor'Class; Node : not null WSDL.AST.Node_Access; Control : in out Traverse_Control) is begin Node.Enter (Visitor, Control); if Control = Continue then Node.Visit (Self, Visitor, Control); end if; if Control /= Terminate_Immediately then Node.Leave (Visitor, Control); end if; end Visit; end WSDL.Iterators;
flyx/FreeTypeAda
Ada
1,808
adb
-- part of FreeTypeAda, (c) 2017 Felix Krause -- released under the terms of the MIT license, see the file "COPYING" with FT.Errors; with FT.API; package body FT is use type Errors.Error_Code; use type Library_Ptr; procedure Init (Object : in out Library_Reference) is begin -- make sure a possibly existing reference gets properly disposed of. Finalize (Object); declare Code : constant Errors.Error_Code := API.FT_Init_FreeType (Object.Data'Unchecked_Access); begin if Code /= Errors.Ok then raise FreeType_Exception with "FT.Initialize failed" & Errors.Description (Code); end if; end; end Init; function Initialized (Object : Library_Reference) return Boolean is begin return Object.Data /= System.Null_Address; end Initialized; procedure Adjust (Object : in out Library_Reference) is begin if Object.Data /= System.Null_Address then if API.FT_Reference_Library (Object.Data) /= Errors.Ok then -- we cannot raise an exception from inside Adjust; however, since -- we checked that the pointer is not null, there should be no -- error. null; end if; end if; end Adjust; procedure Finalize (Object : in out Library_Reference) is Ptr : constant Library_Ptr := Object.Data; begin Object.Data := System.Null_Address; if Ptr /= System.Null_Address then if API.FT_Done_Library (Ptr) /= Errors.Ok then -- we cannot raise an exception from inside Finalize; however, -- since we checked that the pointer is not null, there should be -- no error. null; end if; end if; end Finalize; end FT;
alexcamposruiz/dds-requestreply
Ada
31,333
adb
package body DDS.Request_Reply.treqtrepreplier is -- /* $Id$ -- -- (c) Copyright, Real-Time Innovations, 2012-2016. -- All rights reserved. -- No duplications, whole or partial, manual or electronic, may be made -- without express written permission. Any such copies, or -- revisions thereof, must display this notice unaltered. -- This code contains trade secrets of Real-Time Innovations, Inc. -- -- modification history -- --------------------- -- 5.20,20aug14,acr Fixed declaration of return_loan and copy_or_loan (REQREPLY-18) -- 5.0.1,10jul13,fcs Fixed comp warnings -- 1.0a,2mar12,jch Created. -- ============================================================================ */ -- -- -- #include "log/log_makeheader.h" -- -- #ifndef log_common_h -- #include "log/log_common.h" -- #endif -- -- #ifndef connext_c_replier_h -- #include "connext_c/connext_c_replier.h" -- #endif -- -- #include "connext_c/connext_c_simple_replier.h" -- -- #ifndef connext_c_replier_impl_h -- #include "connext_c/connext_c_replier_impl.h" -- #endif -- -- #include "dds_c/dds_c_log_impl.h" -- -- #include "connext_c/connext_c_untyped_impl.h" -- -- #define DDS_CURRENT_SUBMODULE DDS_SUBMODULE_MASK_DATA -- -- #define concatenate(A, B) A ## B -- -- #define RTI_Connext_Replier_INITIALIZER {NULL, NULL, NULL} -- -- #if defined(TReq) && defined(TRep) -- -- #define TReqTRep_name_c(TReq, TRep) concatenate(TReq, TRep) -- #define TReqTRep_name TReqTRep_name_c(TReq, TRep) -- -- #ifdef TReplier -- #define TReqTRepReplier_name_c(Replier_name) Replier_name -- #define TReqTRepReplier_name TReqTRepReplier_name_c(TReplier) -- #define TReqTRepReplier TReqTRepReplier_name_c(TReplier) -- #else -- #define TReqTRepReplier_name_c(TReqTRep_name) concatenate(TReqTRep_name, Replier) -- #define TReqTRepReplier_name TReqTRepReplier_name_c(TReqTRep_name) -- #define TReqTRepReplier TReqTRepReplier_name_c(TReqTRep_name) -- #endif -- -- #define TReqTypeSupport_c(TReq) concatenate(TReq, TypeSupport) -- #define TReqTypeSupport TReqTypeSupport_c(TReq) -- -- #define TRepTypeSupport_c(TRep) concatenate(TRep, TypeSupport) -- #define TRepTypeSupport TRepTypeSupport_c(TRep) -- -- #define TReqTypeSupport_copy_data_c(TReqTypeSupport) concatenate(TReqTypeSupport, _copy_data) -- #define TReqTypeSupport_copy_data TReqTypeSupport_copy_data_c(TReqTypeSupport) -- -- #define TReqTypeSupport_register_type_c(TReqTypeSupport) concatenate(TReqTypeSupport, _register_type) -- #define TReqTypeSupport_register_type TReqTypeSupport_register_type_c(TReqTypeSupport) -- -- #define TReqTypeSupport_get_type_name_c(TReqTypeSupport) concatenate(TReqTypeSupport, _get_type_name) -- #define TReqTypeSupport_get_type_name TReqTypeSupport_get_type_name_c(TReqTypeSupport) -- -- #define TRepTypeSupport_register_type_c(TRepTypeSupport) concatenate(TRepTypeSupport, _register_type) -- #define TRepTypeSupport_register_type TRepTypeSupport_register_type_c(TRepTypeSupport) -- -- #define TRepTypeSupport_get_type_name_c(TRepTypeSupport) concatenate(TRepTypeSupport, _get_type_name) -- #define TRepTypeSupport_get_type_name TRepTypeSupport_get_type_name_c(TRepTypeSupport) -- -- #define TReqDataReader_c(TReq) concatenate(TReq, DataReader) -- #define TReqDataReader TReqDataReader_c(TReq) -- -- #define TRepDataWriter_c(TRep) concatenate(TRep, DataWriter) -- #define TRepDataWriter TRepDataWriter_c(TRep) -- -- #define TReqDataReader_narrow_c(TReqDataReader) concatenate(TReqDataReader, _narrow) -- #define TReqDataReader_narrow TReqDataReader_narrow_c(TReqDataReader) -- -- #define TRepDataWriter_narrow_c(TRepDataWriter) concatenate(TRepDataWriter, _narrow) -- #define TRepDataWriter_narrow TRepDataWriter_narrow_c(TRepDataWriter) -- -- #define TReqDataReader_return_loan_c(TReqDataReader) concatenate(TReqDataReader, _return_loan) -- #define TReqDataReader_return_loan TReqDataReader_return_loan_c(TReqDataReader) -- -- #define TReqSeq_c(TReq) concatenate(TReq, Seq) -- #define TReqSeq TReqSeq_c(TReq) -- -- #define TReqSeq_get_length_c(TReqSeq) concatenate(TReqSeq, _get_length) -- #define TReqSeq_get_length TReqSeq_get_length_c(TReqSeq) -- -- #define TReqSeq_get_maximum_c(TReqSeq) concatenate(TReqSeq, _get_maximum) -- #define TReqSeq_get_maximum TReqSeq_get_maximum_c(TReqSeq) -- -- #define TReqSeq_has_ownership_c(TReqSeq) concatenate(TReqSeq, _has_ownership) -- #define TReqSeq_has_ownership TReqSeq_has_ownership_c(TReqSeq) -- -- #define TReqSeq_get_contiguous_bufferI_c(TReqSeq) concatenate(TReqSeq, _get_contiguous_bufferI) -- #define TReqSeq_get_contiguous_bufferI TReqSeq_get_contiguous_bufferI_c(TReqSeq) -- -- #define TReqSeq_set_length_c(TReqSeq) concatenate(TReqSeq, _set_length) -- #define TReqSeq_set_length TReqSeq_set_length_c(TReqSeq) -- -- #define TReqSeq_get_discontiguous_buffer_c(TReqSeq) concatenate(TReqSeq, _get_discontiguous_buffer) -- #define TReqSeq_get_discontiguous_buffer TReqSeq_get_discontiguous_buffer_c(TReqSeq) -- -- #define TReqSeq_loan_discontiguous_c(TReqSeq) concatenate(TReqSeq, _loan_discontiguous) -- #define TReqSeq_loan_discontiguous TReqSeq_loan_discontiguous_c(TReqSeq) -- -- #define TReqTRepReplier_create_c(TReqTRepReplier_name) concatenate(TReqTRepReplier_name, _create) -- #define TReqTRepReplier_create TReqTRepReplier_create_c(TReqTRepReplier_name) -- -- #define TReqTRepReplier_create_w_params_c(TReqTRepReplier_name) concatenate(TReqTRepReplier_name, _create_w_params) -- #define TReqTRepReplier_create_w_params TReqTRepReplier_create_w_params_c(TReqTRepReplier_name) -- -- #define TReqTRepReplier_take_request_c(TReqTRepReplier_name) concatenate(TReqTRepReplier_name, _take_request) -- #define TReqTRepReplier_take_request TReqTRepReplier_take_request_c(TReqTRepReplier_name) -- -- #define TReqTRepReplier_take_requests_c(TReqTRepReplier_name) concatenate(TReqTRepReplier_name, _take_requests) -- #define TReqTRepReplier_take_requests TReqTRepReplier_take_requests_c(TReqTRepReplier_name) -- -- #define TReqTRepReplier_read_request_c(TReqTRepReplier_name) concatenate(TReqTRepReplier_name, _read_request) -- #define TReqTRepReplier_read_request TReqTRepReplier_read_request_c(TReqTRepReplier_name) -- -- #define TReqTRepReplier_read_requests_c(TReqTRepReplier_name) concatenate(TReqTRepReplier_name, _read_requests) -- #define TReqTRepReplier_read_requests TReqTRepReplier_read_requests_c(TReqTRepReplier_name) -- -- #define TReqTRepReplier_receive_request_c(TReqTRepReplier_name) concatenate(TReqTRepReplier_name, _receive_request) -- #define TReqTRepReplier_receive_request TReqTRepReplier_receive_request_c(TReqTRepReplier_name) -- -- #define TReqTRepReplier_receive_requests_c(TReqTRepReplier_name) concatenate(TReqTRepReplier_name, _receive_requests) -- #define TReqTRepReplier_receive_requests TReqTRepReplier_receive_requests_c(TReqTRepReplier_name) -- -- #define TReqTRepReplier_send_reply_c(TReqTRepReplier_name) concatenate(TReqTRepReplier_name, _send_reply) -- #define TReqTRepReplier_send_reply TReqTRepReplier_send_reply_c(TReqTRepReplier_name) -- -- #define TReqTRepReplier_get_request_datareader_c(TReqTRepReplier_name) concatenate(TReqTRepReplier_name, _get_request_datareader) -- #define TReqTRepReplier_get_request_datareader TReqTRepReplier_get_request_datareader_c(TReqTRepReplier_name) -- -- #define TReqTRepReplier_get_reply_datawriter_c(TReqTRepReplier_name) concatenate(TReqTRepReplier_name, _get_reply_datawriter) -- #define TReqTRepReplier_get_reply_datawriter TReqTRepReplier_get_reply_datawriter_c(TReqTRepReplier_name) -- -- #define TReqTRepReplier_return_loan_c(TReqTRepReplier_name) concatenate(TReqTRepReplier_name, _return_loan) -- #define TReqTRepReplier_return_loan TReqTRepReplier_return_loan_c(TReqTRepReplier_name) -- -- #define TReqTRepReplier_loan_or_copy_samplesI_c(TReqTRepReplier_name) concatenate(TReqTRepReplier_name, _loan_or_copy_samplesI) -- #define TReqTRepReplier_loan_or_copy_samplesI TReqTRepReplier_loan_or_copy_samplesI_c(TReqTRepReplier_name) -- -- -- TReqTRepReplier * TReqTRepReplier_create( -- DDS_DomainParticipant * participant, -- char* service_name) -- { -- TReqTRepReplier* replier = NULL; -- -- RTI_Connext_ReplierParams params = RTI_Connext_ReplierParams_INITIALIZER; -- -- params.participant = participant; -- params.service_name = (char*) service_name; -- -- replier = TReqTRepReplier_create_w_params(&params); -- if(replier == NULL) { -- DDSLog_exception(&RTI_LOG_CREATION_FAILURE_s, -- "replier with params"); -- return NULL; -- } -- -- return replier; -- } -- -- TReqTRepReplier* TReqTRepReplier_create_w_params( -- const RTI_Connext_ReplierParams* params) -- { -- TReqTRepReplier* replier = NULL; -- struct DDS_DataReaderListener reader_listener = -- DDS_DataReaderListener_INITIALIZER; -- RTI_Connext_EntityParams entity_params; -- DDS_ReturnCode_t retcode; -- -- if(params == NULL) { -- DDSLog_exception(&DDS_LOG_BAD_PARAMETER_s, -- "params"); -- return NULL; -- } -- -- RTIOsapiHeap_allocateStructure(&replier, TReqTRepReplier); -- if(replier == NULL) { -- DDSLog_exception(&RTI_LOG_ANY_FAILURE_s, -- "error creating a TReqTRepReplier"); -- goto finish; -- } -- -- if (params->listener != NULL) { -- replier->parent.listener = *params->listener; -- } else { -- replier->parent.listener.on_request_available = NULL; -- } -- -- replier->parent._impl = RTI_Connext_ReplierUntypedImpl_create(); -- if(replier->parent._impl == NULL) { -- DDSLog_exception(&RTI_LOG_CREATION_FAILURE_s, -- "ReplierUntypedImpl"); -- goto finish; -- } -- -- RTI_Connext_ReplierParams_toEntityParams(params, &entity_params); -- -- reader_listener.on_data_available = RTI_Connext_Replier_on_data_available; -- reader_listener.as_listener.listener_data = replier; -- -- retcode = RTI_Connext_ReplierUntypedImpl_initialize( -- replier->parent._impl, -- &entity_params, -- &TReqTypeSupport_register_type, -- TReqTypeSupport_get_type_name(), -- &TRepTypeSupport_register_type, -- TRepTypeSupport_get_type_name(), -- sizeof(TReq), -- params->listener != NULL ? &reader_listener : NULL); -- -- if (retcode != DDS_RETCODE_OK) { -- DDSLog_exception(&RTI_LOG_ANY_FAILURE_s, -- "initialize ReplierUntypedImpl"); -- goto finish; -- } -- -- return replier; -- -- finish: -- if(replier != NULL) { -- RTI_Connext_Replier_delete((RTI_Connext_Replier *) replier); -- } -- return NULL; -- } -- -- -- DDS_ReturnCode_t TReqTRepReplier_loan_or_copy_samplesI( -- TReqTRepReplier * self, -- DDS_ReturnCode_t inRetCode, -- struct TReqSeq* received_data, -- DDS_Boolean isLoan, -- void **dataPtrArray, -- int dataCount, -- struct DDS_SampleInfoSeq* info_seq) -- { -- DDS_ReturnCode_t result = inRetCode; -- -- if (inRetCode == DDS_RETCODE_NO_DATA) { -- TReqSeq_set_length(received_data, 0); -- goto done; -- } -- -- if (inRetCode != DDS_RETCODE_OK) { -- goto done; -- } -- -- if (isLoan) { -- /* loan buffer to sequence */ -- if (!TReqSeq_loan_discontiguous(received_data, -- (TReq **)dataPtrArray, dataCount, -- dataCount)) { -- /* this should never happen */ -- result = DDS_RETCODE_ERROR; -- /* since we failed to loan data to data seq, but data is already -- taken, we will need to return it still. -- Note that data will be lost in this case */ -- RTI_Connext_EntityUntypedImpl_return_loan( -- self->parent._impl, dataPtrArray, info_seq); -- } -- } else { -- /* data is already copied to dataSeqContiguousBuffer */ -- if (!TReqSeq_set_length(received_data, dataCount)) { -- /* this should never happen */ -- result = DDS_RETCODE_ERROR; -- } -- } -- -- done: -- -- return result; -- } -- -- DDS_ReturnCode_t TReqTRepReplier_take_request( -- TReqTRepReplier* self, -- TReq * request, -- struct DDS_SampleInfo * sample_info) -- { -- DDS_ReturnCode_t retCode = DDS_RETCODE_OK; -- -- struct DDS_SampleInfoSeq info_seq = DDS_SEQUENCE_INITIALIZER; -- void ** data = NULL; -- int count = 0; -- DDS_Boolean isLoan = DDS_BOOLEAN_TRUE; -- -- if(self == NULL) { -- DDSLog_exception(&DDS_LOG_BAD_PARAMETER_s, -- "self"); -- return DDS_RETCODE_BAD_PARAMETER; -- } -- if(request == NULL) { -- DDSLog_exception(&DDS_LOG_BAD_PARAMETER_s, -- "request"); -- return DDS_RETCODE_BAD_PARAMETER; -- } -- if(sample_info == NULL) { -- DDSLog_exception(&DDS_LOG_BAD_PARAMETER_s, -- "sample_info"); -- return DDS_RETCODE_BAD_PARAMETER; -- } -- sample_info->valid_data = DDS_BOOLEAN_FALSE; -- -- /* No read condition, get any reply */ -- retCode = RTI_Connext_EntityUntypedImpl_get_sample_loaned( -- self->parent._impl, -- &data, -- &count, -- &isLoan, -- NULL, -- &info_seq, -- (DDS_Long)0, /* dataSeqLen */ -- (DDS_Long)0, /* dataSeqMaxLen */ -- DDS_BOOLEAN_TRUE, /* dataSeqHasOwnership */ -- 1, -- NULL, -- RTI_TRUE); -- -- if (retCode != DDS_RETCODE_OK) { -- if (retCode != DDS_RETCODE_NO_DATA ) { -- DDSLog_exception(&RTI_LOG_ANY_FAILURE_s, -- "get sample"); -- } -- return retCode; -- } -- -- retCode = TReqTypeSupport_copy_data(request, *((TReq**)data)); -- if(retCode != DDS_RETCODE_OK) { -- DDSLog_exception(&RTI_LOG_ANY_FAILURE_s, -- "copy sample"); -- goto done; -- } -- -- if(DDS_SampleInfoSeq_get_length(&info_seq) != 0) { -- /* TODO: implement copy function? */ -- *sample_info = DDS_SampleInfoSeq_get(&info_seq, 0); -- } -- -- done: -- RTI_Connext_EntityUntypedImpl_return_loan(self->parent._impl, data, &info_seq); -- return retCode; -- } -- -- -- /* TODO: do checking on params */ -- DDS_ReturnCode_t TReqTRepReplier_take_requests( -- TReqTRepReplier* self, -- struct TReqSeq* requests, -- struct DDS_SampleInfoSeq * info_seq, -- DDS_Long max_request_count) -- { -- -- DDS_Long dataSeqLen = 0; -- DDS_Long dataSeqMaxLen = 0; -- DDS_Boolean dataSeqHasOwnership = DDS_BOOLEAN_FALSE; -- DDS_Boolean isLoan = DDS_BOOLEAN_TRUE; -- void **dataPtrArray = NULL; -- int dataCount = 0; -- DDS_ReturnCode_t result = DDS_RETCODE_OK; -- TReq *dataSeqContiguousBuffer = NULL; -- -- /* --- Check parameters --- */ -- if (requests == NULL) { -- DDSLog_exception(&DDS_LOG_BAD_PARAMETER_s, -- "requests is NULL"); -- return DDS_RETCODE_BAD_PARAMETER; -- } -- -- /* --- get dataSeq information --- */ -- dataSeqLen = TReqSeq_get_length(requests); -- dataSeqMaxLen = TReqSeq_get_maximum(requests); -- dataSeqHasOwnership = TReqSeq_has_ownership(requests); -- dataSeqContiguousBuffer = TReqSeq_get_contiguous_bufferI(requests); -- -- result = RTI_Connext_EntityUntypedImpl_get_sample_loaned( -- self->parent._impl, -- &dataPtrArray, -- &dataCount, -- &isLoan, -- (void*)dataSeqContiguousBuffer, -- info_seq, -- dataSeqLen, -- dataSeqMaxLen, -- dataSeqHasOwnership, -- max_request_count, -- NULL, -- RTI_TRUE); -- -- result = TReqTRepReplier_loan_or_copy_samplesI( -- self, result, requests, -- isLoan, dataPtrArray, dataCount, info_seq); -- -- if(result != DDS_RETCODE_OK && result != DDS_RETCODE_NO_DATA) { -- DDSLog_exception(&DDS_LOG_BAD_PARAMETER_s, -- "error loan or copying data"); -- } -- -- return result; -- } -- -- DDS_ReturnCode_t TReqTRepReplier_read_request( -- TReqTRepReplier* self, -- TReq * request, -- struct DDS_SampleInfo * sample_info) -- { -- DDS_ReturnCode_t retCode = DDS_RETCODE_OK; -- -- struct DDS_SampleInfoSeq info_seq = DDS_SEQUENCE_INITIALIZER; -- void ** data = NULL; -- int count = 0; -- DDS_Boolean isLoan = DDS_BOOLEAN_TRUE; -- -- if(self == NULL) { -- DDSLog_exception(&DDS_LOG_BAD_PARAMETER_s, -- "self"); -- return DDS_RETCODE_BAD_PARAMETER; -- } -- if(request == NULL) { -- DDSLog_exception(&DDS_LOG_BAD_PARAMETER_s, -- "request"); -- return DDS_RETCODE_BAD_PARAMETER; -- } -- if(sample_info == NULL) { -- DDSLog_exception(&DDS_LOG_BAD_PARAMETER_s, -- "sample_info"); -- return DDS_RETCODE_BAD_PARAMETER; -- } -- sample_info->valid_data = DDS_BOOLEAN_FALSE; -- -- /* No read condition, get any reply */ -- retCode = RTI_Connext_EntityUntypedImpl_get_sample_loaned( -- self->parent._impl, -- &data, -- &count, -- &isLoan, -- NULL, -- &info_seq, -- (DDS_Long)0, /* dataSeqLen */ -- (DDS_Long)0, /* dataSeqMaxLen */ -- DDS_BOOLEAN_TRUE, /* dataSeqHasOwnership */ -- 1, -- NULL, -- RTI_FALSE); -- -- if (retCode != DDS_RETCODE_OK) { -- if (retCode != DDS_RETCODE_NO_DATA ) { -- DDSLog_exception(&RTI_LOG_ANY_FAILURE_s, -- "get sample"); -- } -- return retCode; -- } -- -- retCode = TReqTypeSupport_copy_data(request, *((TReq**)data)); -- if(retCode != DDS_RETCODE_OK) { -- DDSLog_exception(&RTI_LOG_ANY_FAILURE_s, -- "copy sample"); -- goto done; -- } -- -- if(DDS_SampleInfoSeq_get_length(&info_seq) != 0) { -- /* TODO: implement copy function? */ -- *sample_info = DDS_SampleInfoSeq_get(&info_seq, 0); -- } -- -- done: -- RTI_Connext_EntityUntypedImpl_return_loan(self->parent._impl, data, &info_seq); -- return retCode; -- } -- -- -- /* TODO: do checking on params */ -- DDS_ReturnCode_t TReqTRepReplier_read_requests( -- TReqTRepReplier* self, -- struct TReqSeq* requests, -- struct DDS_SampleInfoSeq * info_seq, -- DDS_Long max_request_count) -- { -- -- DDS_Long dataSeqLen = 0; -- DDS_Long dataSeqMaxLen = 0; -- DDS_Boolean dataSeqHasOwnership = DDS_BOOLEAN_FALSE; -- DDS_Boolean isLoan = DDS_BOOLEAN_TRUE; -- void **dataPtrArray = NULL; -- int dataCount = 0; -- DDS_ReturnCode_t result = DDS_RETCODE_OK; -- TReq *dataSeqContiguousBuffer = NULL; -- -- /* --- Check parameters --- */ -- if (requests == NULL) { -- DDSLog_exception(&DDS_LOG_BAD_PARAMETER_s, -- "requests is NULL"); -- return DDS_RETCODE_BAD_PARAMETER; -- } -- -- /* --- get dataSeq information --- */ -- dataSeqLen = TReqSeq_get_length(requests); -- dataSeqMaxLen = TReqSeq_get_maximum(requests); -- dataSeqHasOwnership = TReqSeq_has_ownership(requests); -- dataSeqContiguousBuffer = TReqSeq_get_contiguous_bufferI(requests); -- -- result = RTI_Connext_EntityUntypedImpl_get_sample_loaned( -- self->parent._impl, -- &dataPtrArray, -- &dataCount, -- &isLoan, -- (void*)dataSeqContiguousBuffer, -- info_seq, -- dataSeqLen, -- dataSeqMaxLen, -- dataSeqHasOwnership, -- max_request_count, -- NULL, -- RTI_FALSE); -- -- result = TReqTRepReplier_loan_or_copy_samplesI( -- self, result, requests, -- isLoan, dataPtrArray, dataCount, info_seq); -- -- if(result != DDS_RETCODE_OK && result != DDS_RETCODE_NO_DATA) { -- DDSLog_exception(&DDS_LOG_BAD_PARAMETER_s, -- "error loan or copying data"); -- } -- -- return result; -- } -- -- DDS_ReturnCode_t TReqTRepReplier_receive_request( -- TReqTRepReplier * self, -- TReq * request, -- struct DDS_SampleInfo * sample_info, -- const struct DDS_Duration_t * max_wait) -- { -- DDS_ReturnCode_t retCode = DDS_RETCODE_OK; -- -- if(self == NULL) { -- DDSLog_exception(&DDS_LOG_BAD_PARAMETER_s, -- "self"); -- return DDS_RETCODE_BAD_PARAMETER; -- } -- if(request == NULL) { -- DDSLog_exception(&DDS_LOG_BAD_PARAMETER_s, -- "request"); -- return DDS_RETCODE_BAD_PARAMETER; -- } -- if(sample_info == NULL) { -- DDSLog_exception(&DDS_LOG_BAD_PARAMETER_s, -- "sample_info"); -- return DDS_RETCODE_BAD_PARAMETER; -- } -- if(max_wait == NULL) { -- DDSLog_exception(&DDS_LOG_BAD_PARAMETER_s, -- "max_wait"); -- return DDS_RETCODE_BAD_PARAMETER; -- } -- sample_info->valid_data = DDS_BOOLEAN_FALSE; -- -- retCode = RTI_Connext_Replier_wait_for_requests( -- (RTI_Connext_Replier *) self, 1, max_wait); -- if (retCode != DDS_RETCODE_OK) { -- if (retCode != DDS_RETCODE_TIMEOUT) { -- DDSLog_exception(&RTI_LOG_ANY_FAILURE_s, -- "wait for requests"); -- } -- return retCode; -- } -- -- retCode = TReqTRepReplier_take_request(self, request, sample_info); -- if (retCode != DDS_RETCODE_OK) { -- if (retCode != DDS_RETCODE_NO_DATA) { -- DDSLog_exception(&RTI_LOG_ANY_FAILURE_s, -- "get request"); -- } -- return retCode; -- } -- -- return DDS_RETCODE_OK; -- } -- -- DDS_ReturnCode_t TReqTRepReplier_receive_requests( -- TReqTRepReplier * self, -- struct TReqSeq * requests, -- struct DDS_SampleInfoSeq * info_seq, -- DDS_Long min_count, -- DDS_Long max_count, -- const struct DDS_Duration_t * max_wait) -- { -- DDS_ReturnCode_t retCode = DDS_RETCODE_OK; -- -- if(self == NULL) { -- DDSLog_exception(&DDS_LOG_BAD_PARAMETER_s, -- "self"); -- return DDS_RETCODE_BAD_PARAMETER; -- } -- if(requests == NULL) { -- DDSLog_exception(&DDS_LOG_BAD_PARAMETER_s, -- "requests"); -- return DDS_RETCODE_BAD_PARAMETER; -- } -- if(info_seq == NULL) { -- DDSLog_exception(&DDS_LOG_BAD_PARAMETER_s, -- "info_seq"); -- return DDS_RETCODE_BAD_PARAMETER; -- } -- if(max_wait == NULL) { -- DDSLog_exception(&DDS_LOG_BAD_PARAMETER_s, -- "max_wait"); -- return DDS_RETCODE_BAD_PARAMETER; -- } -- -- if (!RTI_Connext_EntityUntypedImpl_validate_receive_params( -- self->parent._impl, RTI_FUNCTION_NAME, min_count, max_count, max_wait)) { -- return DDS_RETCODE_BAD_PARAMETER; -- } -- -- retCode = RTI_Connext_Replier_wait_for_requests( -- (RTI_Connext_Replier *) self, min_count, max_wait); -- if (retCode != DDS_RETCODE_OK) { -- if (retCode != DDS_RETCODE_TIMEOUT) { -- DDSLog_exception(&RTI_LOG_ANY_FAILURE_s, -- "wait for requests"); -- } -- return retCode; -- } -- -- retCode = TReqTRepReplier_take_requests( -- self, requests, info_seq, max_count); -- if (retCode != DDS_RETCODE_OK) { -- if (retCode != DDS_RETCODE_NO_DATA) { -- DDSLog_exception(&RTI_LOG_ANY_FAILURE_s, -- "get requests"); -- } -- return retCode; -- } -- -- return DDS_RETCODE_OK; -- } -- -- /* TODO: add TReqTRepReplier_send_reply_w_params API */ -- DDS_ReturnCode_t TReqTRepReplier_send_reply( -- TReqTRepReplier* self, -- TRep* reply, -- const struct DDS_SampleIdentity_t * related_request_id) -- { -- DDS_ReturnCode_t retCode = DDS_RETCODE_OK; -- struct DDS_WriteParams_t params = DDS_WRITEPARAMS_DEFAULT; -- -- if(self == NULL) { -- DDSLog_exception(&DDS_LOG_BAD_PARAMETER_s, -- "self"); -- return DDS_RETCODE_BAD_PARAMETER; -- } -- if(reply == NULL) { -- DDSLog_exception(&DDS_LOG_BAD_PARAMETER_s, -- "reply"); -- return DDS_RETCODE_BAD_PARAMETER; -- } -- if(related_request_id == NULL) { -- DDSLog_exception(&DDS_LOG_BAD_PARAMETER_s, -- "related_request_id"); -- return DDS_RETCODE_BAD_PARAMETER; -- } -- -- retCode = RTI_Connext_ReplierUntypedImpl_send_sample( -- self->parent._impl, (void*)reply, related_request_id, &params); -- -- if(retCode != DDS_RETCODE_OK) { -- DDSLog_exception(&RTI_LOG_ANY_FAILURE_s, -- "send reply"); -- } -- return retCode; -- } -- -- -- TRepDataWriter* TReqTRepReplier_get_reply_datawriter(TReqTRepReplier* self) -- { -- -- DDS_DataWriter * internal_writer = NULL; -- -- if(self == NULL) { -- DDSLog_exception(&DDS_LOG_BAD_PARAMETER_s, -- "self"); -- return NULL; -- } -- -- internal_writer = RTI_Connext_EntityUntypedImpl_get_datawriter(self->parent._impl); -- if(internal_writer == NULL) { -- DDSLog_exception(&RTI_LOG_GET_FAILURE_s, -- "reply DataWriter"); -- return NULL; -- } -- -- return TRepDataWriter_narrow(internal_writer); -- } -- -- TReqDataReader * TReqTRepReplier_get_request_datareader(TReqTRepReplier* self) -- { -- -- DDS_DataReader* internal_reader = NULL; -- -- if(self == NULL) { -- DDSLog_exception(&DDS_LOG_BAD_PARAMETER_s, -- "self"); -- return NULL; -- } -- -- internal_reader = RTI_Connext_EntityUntypedImpl_get_datareader(self->parent._impl); -- if(internal_reader == NULL) { -- DDSLog_exception(&RTI_LOG_GET_FAILURE_s, -- "request DataReader"); -- return NULL; -- } -- -- return TReqDataReader_narrow(internal_reader); -- } -- -- DDS_ReturnCode_t TReqTRepReplier_return_loan( -- TReqTRepReplier* self, -- struct TReqSeq *replies, -- struct DDS_SampleInfoSeq *info_seq) -- { -- DDS_ReturnCode_t retCode = DDS_RETCODE_OK; -- TReqDataReader * reader = NULL; -- -- if(self == NULL) { -- DDSLog_exception(&DDS_LOG_BAD_PARAMETER_s, -- "self"); -- return DDS_RETCODE_BAD_PARAMETER; -- } -- if(replies == NULL) { -- DDSLog_exception(&DDS_LOG_BAD_PARAMETER_s, -- "replies"); -- return DDS_RETCODE_BAD_PARAMETER; -- } -- if(info_seq == NULL) { -- DDSLog_exception(&DDS_LOG_BAD_PARAMETER_s, -- "info_seq"); -- return DDS_RETCODE_BAD_PARAMETER; -- } -- -- reader = TReqTRepReplier_get_request_datareader(self); -- if (reader == NULL) { -- DDSLog_exception(&RTI_LOG_GET_FAILURE_s, -- "reader to return loan"); -- return DDS_RETCODE_ERROR; -- } -- -- retCode = TReqDataReader_return_loan(reader, replies, info_seq); -- if(retCode != DDS_RETCODE_OK) { -- DDSLog_exception(&RTI_LOG_ANY_FAILURE_s, -- "return loan"); -- return retCode; -- } -- -- return retCode; -- } -- -- #undef TReqTypeSupport_get_type_name_c -- #undef TReqTypeSupport_get_type_name -- -- #undef TRepTypeSupport_get_type_name_c -- #undef TRepTypeSupport_get_type_name -- -- -- #endif -- -- /* ----------------------------------------------------------------- */ -- /* End of $Id$ */ end DDS.Request_Reply.treqtrepreplier;
glencornell/ada-object-framework
Ada
881
adb
with Aof.Core.Properties; with Callbacks; -- In this example, we are going to create a simple integer property. -- As a refresher, a property is a class member field with a get and -- set method. A property is built upon the signals & slots concept -- in this implementation to realize the observer pattern. Below, -- the Connect method is used to subscribe a callback procedure to -- the property; when the property changes, all of the subscriber -- callbacks get invoked. procedure Property_Example is My_Integer_Property : Aof.Core.Properties.Integers.Property; begin -- Register the callback (On_Change) to be invoked when the -- property is modified. My_Integer_Property.Connect(Callbacks.On_Change'access); -- Now change the proerty... for I in 1 .. 5 loop My_Integer_Property.Set(I); end loop; end Property_Example;
reznikmm/matreshka
Ada
4,647
adb
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Open Document Toolkit -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2014, Vadim Godunko <[email protected]> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ with Matreshka.DOM_Documents; with Matreshka.ODF_String_Constants; with ODF.DOM.Iterators; with ODF.DOM.Visitors; package body Matreshka.ODF_Text.Connection_Name_Attributes is ------------ -- Create -- ------------ overriding function Create (Parameters : not null access Matreshka.DOM_Attributes.Attribute_L2_Parameters) return Text_Connection_Name_Attribute_Node is begin return Self : Text_Connection_Name_Attribute_Node do Matreshka.ODF_Text.Constructors.Initialize (Self'Unchecked_Access, Parameters.Document, Matreshka.ODF_String_Constants.Text_Prefix); end return; end Create; -------------------- -- Get_Local_Name -- -------------------- overriding function Get_Local_Name (Self : not null access constant Text_Connection_Name_Attribute_Node) return League.Strings.Universal_String is pragma Unreferenced (Self); begin return Matreshka.ODF_String_Constants.Connection_Name_Attribute; end Get_Local_Name; begin Matreshka.DOM_Documents.Register_Attribute (Matreshka.ODF_String_Constants.Text_URI, Matreshka.ODF_String_Constants.Connection_Name_Attribute, Text_Connection_Name_Attribute_Node'Tag); end Matreshka.ODF_Text.Connection_Name_Attributes;
reznikmm/matreshka
Ada
4,584
adb
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Open Document Toolkit -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2014, Vadim Godunko <[email protected]> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ with Matreshka.DOM_Documents; with Matreshka.ODF_String_Constants; with ODF.DOM.Iterators; with ODF.DOM.Visitors; package body Matreshka.ODF_Table.Column_Attributes is ------------ -- Create -- ------------ overriding function Create (Parameters : not null access Matreshka.DOM_Attributes.Attribute_L2_Parameters) return Table_Column_Attribute_Node is begin return Self : Table_Column_Attribute_Node do Matreshka.ODF_Table.Constructors.Initialize (Self'Unchecked_Access, Parameters.Document, Matreshka.ODF_String_Constants.Table_Prefix); end return; end Create; -------------------- -- Get_Local_Name -- -------------------- overriding function Get_Local_Name (Self : not null access constant Table_Column_Attribute_Node) return League.Strings.Universal_String is pragma Unreferenced (Self); begin return Matreshka.ODF_String_Constants.Column_Attribute; end Get_Local_Name; begin Matreshka.DOM_Documents.Register_Attribute (Matreshka.ODF_String_Constants.Table_URI, Matreshka.ODF_String_Constants.Column_Attribute, Table_Column_Attribute_Node'Tag); end Matreshka.ODF_Table.Column_Attributes;
RREE/ada-util
Ada
3,436
adb
----------------------------------------------------------------------- -- csv_city -- Read CSV file which contains city mapping -- Copyright (C) 2011, 2017 Stephane Carrez -- Written by Stephane Carrez ([email protected]) -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License. -- You may obtain a copy of the License at -- -- http://www.apache.org/licenses/LICENSE-2.0 -- -- Unless required by applicable law or agreed to in writing, software -- distributed under the License is distributed on an "AS IS" BASIS, -- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -- See the License for the specific language governing permissions and -- limitations under the License. ----------------------------------------------------------------------- with Ada.Text_IO; with Ada.Command_Line; with Ada.Containers; with Ada.Strings.Unbounded; with Util.Log.Loggers; with Util.Serialize.IO.CSV; with Util.Serialize.Mappers; with City_Mapping; procedure CSV_City is use Ada.Containers; use Ada.Strings.Unbounded; use Ada.Text_IO; use Util.Serialize.IO.CSV; Count : constant Natural := Ada.Command_Line.Argument_Count; begin Util.Log.Loggers.Initialize ("samples/log4j.properties"); if Count = 0 then Ada.Text_IO.Put_Line ("Usage: csv_city file [city...]"); Ada.Text_IO.Put_Line ("Example: csv_city samples/cities.csv albertville"); return; end if; declare File : constant String := Ada.Command_Line.Argument (1); List : aliased City_Mapping.City_Vector.Vector; Mapper : aliased Util.Serialize.Mappers.Processing; Reader : Util.Serialize.IO.CSV.Parser; begin Mapper.Add_Mapping ("", City_Mapping.Get_City_Vector_Mapper.all'Access); City_Mapping.City_Vector_Mapper.Set_Context (Mapper, List'Unchecked_Access); Reader.Parse (File, Mapper); if List.Length = 0 then Ada.Text_IO.Put_Line ("No city found."); elsif List.Length = 1 then Ada.Text_IO.Put_Line ("Found only one city."); else Ada.Text_IO.Put_Line ("Found " & Count_Type'Image (List.Length) & " cities"); end if; for I in 2 .. Count loop declare Name : constant String := Ada.Command_Line.Argument (I); Found : Boolean := False; procedure Print (City : in City_Mapping.City); procedure Print (City : in City_Mapping.City) is begin Found := City.City = Name; if Found then Ada.Text_IO.Put_Line ("City : " & To_String (City.Name)); Ada.Text_IO.Put_Line ("Country code: " & To_String (City.Country)); Ada.Text_IO.Put_Line ("Region : " & To_String (City.Region)); Ada.Text_IO.Put_Line ("Latitude : " & Float'Image (City.Latitude)); Ada.Text_IO.Put_Line ("Longitude : " & Float'Image (City.Longitude)); end if; end Print; begin for J in 1 .. Positive (List.Length) loop List.Query_Element (J, Print'Access); exit when Found; end loop; if not Found then Ada.Text_IO.Put_Line ("City '" & Name & "' not found"); end if; end; end loop; end; end CSV_City;
onox/sdlada
Ada
4,621
adb
-------------------------------------------------------------------------------------------------------------------- -- Copyright (c) 2013-2018 Luke A. Guest -- -- This software is provided 'as-is', without any express or implied -- warranty. In no event will the authors be held liable for any damages -- arising from the use of this software. -- -- Permission is granted to anyone to use this software for any purpose, -- including commercial applications, and to alter it and redistribute it -- freely, subject to the following restrictions: -- -- 1. The origin of this software must not be misrepresented; you must not -- claim that you wrote the original software. If you use this software -- in a product, an acknowledgment in the product documentation would be -- appreciated but is not required. -- -- 2. Altered source versions must be plainly marked as such, and must not be -- misrepresented as being the original software. -- -- 3. This notice may not be removed or altered from any source -- distribution. -------------------------------------------------------------------------------------------------------------------- with SDL.Error; with SDL.Video; package body SDL.Video.Displays is use type C.int; function Total return Display_Indices is -- This function returns a value >= 1, use this as a new lower type bound. function SDL_Get_Num_Video_Displays return C.int with Import => True, Convention => C, External_Name => "SDL_GetNumVideoDisplays"; Num : constant C.int := SDL_Get_Num_Video_Displays; begin if Num <= 0 then raise Video_Error with SDL.Error.Get; end if; return Display_Indices (Num); end Total; function Closest_Mode (Display : in Display_Indices; Wanted : in Mode; Target : out Mode) return Boolean is function SDL_Get_Closest_Display_Mode (D : C.int; W : in Mode; T : out Mode) return Access_Mode with Import => True, Convention => C, External_Name => "SDL_GetClosestDisplayMode"; Result : Access_Mode := SDL_Get_Closest_Display_Mode (C.int (Display - 1), Wanted, Target); begin return (Result = null); end Closest_Mode; function Current_Mode (Display : in Display_Indices; Target : out Mode) return Boolean is function SDL_Get_Current_Display_Mode (D : C.int; M : out Mode) return C.int with Import => True, Convention => C, External_Name => "SDL_GetCurrentDisplayMode"; Result : C.int := SDL_Get_Current_Display_Mode (C.int (Display - 1), Target); begin return (Result = Success); end Current_Mode; function Desktop_Mode (Display : in Display_Indices; Target : out Mode) return Boolean is function SDL_Get_Desktop_Display_Mode (D : C.int; M : out Mode) return C.int with Import => True, Convention => C, External_Name => "SDL_GetDesktopDisplayMode"; Result : C.int := SDL_Get_Desktop_Display_Mode (C.int (Display - 1), Target); begin return (Result = Success); end Desktop_Mode; function Display_Mode (Display : in Display_Indices; Index : in Natural; Target : out Mode) return Boolean is function SDL_Get_Display_Mode (D : in C.int; I : in C.int; T : out Mode) return C.int with Import => True, Convention => C, External_Name => "SDL_GetDisplayMode"; Result : C.int := SDL_Get_Display_Mode (C.int (Display - 1), C.int (Index), Target); begin return (Result = Success); end Display_Mode; function Total_Display_Modes (Display : in Display_Indices; Total : out Positive) return Boolean is function SDL_Get_Num_Display_Modes (I : in C.int) return C.int with Import => True, Convention => C, External_Name => "SDL_GetNumDisplayModes"; Result : C.int := SDL_Get_Num_Display_Modes (C.int (Display - 1)); begin if Result >= 1 then Total := Positive (Result); return True; end if; return False; end Total_Display_Modes; function Display_Bounds (Display : in Display_Indices; Bounds : out Rectangles.Rectangle) return Boolean is function SDL_Get_Display_Bounds (D : in C.int; B : out Rectangles.Rectangle) return C.int with Import => True, Convention => C, External_Name => "SDL_GetDisplayBounds"; Result : C.int := SDL_Get_Display_Bounds (C.int (Display - 1), Bounds); begin return (Result = Success); end Display_Bounds; end SDL.Video.Displays;
AdaCore/libadalang
Ada
141
ads
package Foo is type T is record B : Boolean; end record; for T use record B at 0 range 0 .. 0; end record; end Foo;
AdaCore/gpr
Ada
1,159
adb
with Test_GPR; with Test_Assert; with GPR2.Project.Tree; function Test return Integer is package TGPR renames Test_GPR; package A renames Test_Assert; Tree : GPR2.Project.Tree.Object; begin -- Ensure that a basic project with extends all is loaded correctly TGPR.Load_With_No_Errors (Tree, "./data/root.gpr"); -- B_Variable1 is equal to B.Variable1 where B extends A and redefine -- value for A.Variable1 TGPR.Assert_Variable (View => Tree.Root_Project, Variable => "B_Variable1", Value => "extended value1"); -- B_Variable2 is equal to B.Variable2 where B extends A and Variable2 is -- only defined in A. We expected B.Variable2 to be equal to A.Variable2. TGPR.Assert_Variable (View => Tree.Root_Project, Variable => "B_Variable2", Value => "original value2"); Tree.Unload; -- Now test with extension replacing project included by the extended TGPR.Load_With_No_Errors (Tree, "./data2/root.gpr"); TGPR.Assert_Variable (View => Tree.Root_Project, Variable => "Var2", Value => "inc_ext"); return A.Report; end Test;
persan/advent-of-code-2020
Ada
948
adb
with Ada.Text_IO; use Ada.Text_IO; with Ada.Assertions; procedure Adventofcode.Day_1.Main is use Ada.Assertions; function Read (Path : String) return Expenses is Inf : File_Type; Buffer : Expenses (1 .. 1024); -- 1024 lines in the book; Cursor : Natural := Buffer'First; begin Open (Inf, In_File, Path); while not End_Of_File (Inf) loop Buffer (Cursor) := Currency'Value (Get_Line (Inf)); Cursor := Cursor + 1; end loop; Close (Inf); return Buffer (Buffer'First .. Cursor - 1); end; begin Put_Line (Eval (Read ("src/day-1/input"), 2020)'Img); Assert (514579 = Eval ((1721, 979, 366, 299, 675, 1456), 2020), "Invalid"); Assert (731731 = Eval (Read ("src/day-1/input"), 2020), "invalid"); Assert (241861950 = Eval3 ((1721, 979, 366, 299, 675, 1456), 2020), "Invalid"); Put_Line (Eval3 (Read ("src/day-1/input"), 2020)'Img); end Adventofcode.Day_1.Main;
Anderstask1/Sanntidsprogrammering
Ada
4,524
adb
with Ada.Text_IO, Ada.Integer_Text_IO, Ada.Numerics.Float_Random; use Ada.Text_IO, Ada.Integer_Text_IO, Ada.Numerics.Float_Random; procedure exercise7 is Count_Failed : exception; -- Exception to be raised when counting fails Gen : Generator; -- Random number generator protected type Transaction_Manager (N : Positive) is entry Finished; function Commit return Boolean; procedure Signal_Abort; private Finished_Gate_Open : Boolean := False; Aborted : Boolean := False; Should_Commit : Boolean := True; end Transaction_Manager; protected body Transaction_Manager is entry Finished when Finished_Gate_Open or Finished'Count = N is begin ------------------------------------------ -- PART 3: Complete the exit protocol here ------------------------------------------ if Finished_Gate_Open = False then --If the door is closed-> You are the first one Finished_Gate_Open := True; if Aborted = True then --At this point, despite we are in the first arriving task, --the manager has recieved all the "finished" from all the tasks. --If something goes wrong (Aborted=True) Should_Commit := False; else Should_Commit := True; end if; else --The door is open if Finished'Count = 0 then--Are you the last one? Finished_Gate_Open := False; Aborted := False; end if; end if; end Finished; procedure Signal_Abort is begin Aborted := True; end Signal_Abort; function Commit return Boolean is begin return Should_Commit; end Commit; end Transaction_Manager; function Unreliable_Slow_Add (x : Integer) return Integer is Error_Rate : Constant := 0.15; -- (between 0 and 1) begin ------------------------------------------- -- PART 1: Create the transaction work here ------------------------------------------- if Random(Gen) > Error_Rate then -->The intended behaviour delay Duration(4.0); return x+10; else -->The faulty behaviour Put_Line ("FAIL"); delay Duration(0.5); Put_Line ("Returning from fail"); raise Count_Failed;--Under this line all the code gets unreachable :( end if; end Unreliable_Slow_Add; task type Transaction_Worker (Initial : Integer; Manager : access Transaction_Manager); task body Transaction_Worker is Num : Integer := Initial; Prev : Integer := Num; Round_Num : Integer := 0; begin Put_Line ("Worker" & Integer'Image(Initial) & " started"); loop Put_Line ("Worker" & Integer'Image(Initial) & " started round" & Integer'Image(Round_Num)); Round_Num := Round_Num + 1; --------------------------------------- -- PART 2: Do the transaction work here --------------------------------------- begin Num := Unreliable_Slow_Add (Prev); exception when Count_Failed => Manager.Signal_Abort; end; Put_Line (" Worker" & Integer'Image(Initial) & "calling finished"); Manager.Finished; if Manager.Commit = True then Put_Line (" Worker" & Integer'Image(Initial) & " comitting" & Integer'Image(Num)); else Put_Line (" Worker" & Integer'Image(Initial) & " reverting from" & Integer'Image(Num) & " to" & Integer'Image(Prev)); ------------------------------------------- -- PART 2: Roll back to previous value here ------------------------------------------- Num := Prev; end if; Prev := Num; delay 0.5; end loop; end Transaction_Worker; Manager : aliased Transaction_Manager (3); Worker_1 : Transaction_Worker (0, Manager'Access); Worker_2 : Transaction_Worker (1, Manager'Access); Worker_3 : Transaction_Worker (2, Manager'Access); begin Reset(Gen); -- Seed the random number generator end exercise7;
reznikmm/matreshka
Ada
4,126
adb
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Ada Modeling Framework -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2012-2013, Vadim Godunko <[email protected]> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ -- This file is generated, don't edit it. ------------------------------------------------------------------------------ with AMF.Internals.Links; with AMF.Internals.Tables.DD_Element_Table; with AMF.Internals.Tables.DD_Types; separate (AMF.Internals.Factories.DD_Module_Factory) procedure Construct_Union (Element : AMF.Internals.AMF_Element; Property : AMF.Internals.CMOF_Element; Link : AMF.Internals.AMF_Link) is Element_Kind : constant AMF.Internals.Tables.DD_Types.Element_Kinds := AMF.Internals.Tables.DD_Element_Table.Table (Element).Kind; Opposite : constant AMF.Internals.AMF_Element := AMF.Internals.Links.Opposite_Element (Link, Element); begin case Element_Kind is when others => null; end case; end Construct_Union;
shinesolutions/swagger-aem-osgi
Ada
669,035
adb
-- Adobe Experience Manager OSGI config (AEM) API -- Swagger AEM OSGI is an OpenAPI specification for Adobe Experience Manager (AEM) OSGI Configurations API -- ------------ EDIT NOTE ------------ -- This file was generated with openapi-generator. You can modify it to implement -- the server. After you modify this file, you should add the following line -- to the .openapi-generator-ignore file: -- -- src/-servers.adb -- -- Then, you can drop this edit note comment. -- ------------ EDIT NOTE ------------ package body .Servers is -- overriding procedure Adaptive_Form_And_Interactive_Communication_Web_Channel_Configuration (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Show_Placeholder : in Swagger.Nullable_Boolean; Maximum_Cache_Entries : in Swagger.Nullable_Integer; Af_Periodscripting_Periodcompatversion : in Swagger.Nullable_UString; Make_File_Name_Unique : in Swagger.Nullable_Boolean; Generating_Compliant_Data : in Swagger.Nullable_Boolean; Result : out .Models.AdaptiveFormAndInteractiveCommunicationWebChannelConfigurationInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Adaptive_Form_And_Interactive_Communication_Web_Channel_Configuration; -- overriding procedure Adaptive_Form_And_Interactive_Communication_Web_Channel_Theme_Configur (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Font_List : in Swagger.UString_Vectors.Vector; Result : out .Models.AdaptiveFormAndInteractiveCommunicationWebChannelThemeConfigurInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Adaptive_Form_And_Interactive_Communication_Web_Channel_Theme_Configur; -- overriding procedure Analytics_Component_Query_Cache_Service (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Periodanalytics_Periodcomponent_Periodquery_Periodcache_Periodsize : in Swagger.Nullable_Integer; Result : out .Models.AnalyticsComponentQueryCacheServiceInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Analytics_Component_Query_Cache_Service; -- overriding procedure Apache_Sling_Health_Check_Result_H_T_M_L_Serializer (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Style_String : in Swagger.Nullable_UString; Result : out .Models.ApacheSlingHealthCheckResultHTMLSerializerInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Apache_Sling_Health_Check_Result_H_T_M_L_Serializer; -- overriding procedure Com_Adobe_Aem_Formsndocuments_Config_A_E_M_Forms_Manager_Configuration (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Forms_Manager_Config_Periodinclude_O_O_T_B_Templates : in Swagger.Nullable_Boolean; Forms_Manager_Config_Periodinclude_Deprecated_Templates : in Swagger.Nullable_Boolean; Result : out .Models.ComAdobeAemFormsndocumentsConfigAEMFormsManagerConfigurationInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Aem_Formsndocuments_Config_A_E_M_Forms_Manager_Configuration; -- overriding procedure Com_Adobe_Aem_Transaction_Core_Impl_Transaction_Recorder (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Is_Transaction_Recording_Enabled : in Swagger.Nullable_Boolean; Result : out .Models.ComAdobeAemTransactionCoreImplTransactionRecorderInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Aem_Transaction_Core_Impl_Transaction_Recorder; -- overriding procedure Com_Adobe_Aem_Upgrade_Prechecks_Hc_Impl_Deprecate_Indexes_H_C (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Hc_Periodname : in Swagger.Nullable_UString; Hc_Periodtags : in Swagger.UString_Vectors.Vector; Hc_Periodmbean_Periodname : in Swagger.Nullable_UString; Result : out .Models.ComAdobeAemUpgradePrechecksHcImplDeprecateIndexesHCInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Aem_Upgrade_Prechecks_Hc_Impl_Deprecate_Indexes_H_C; -- overriding procedure Com_Adobe_Aem_Upgrade_Prechecks_Hc_Impl_Replication_Agents_Disabled_H_C (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Hc_Periodname : in Swagger.Nullable_UString; Hc_Periodtags : in Swagger.UString_Vectors.Vector; Hc_Periodmbean_Periodname : in Swagger.Nullable_UString; Result : out .Models.ComAdobeAemUpgradePrechecksHcImplReplicationAgentsDisabledHCInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Aem_Upgrade_Prechecks_Hc_Impl_Replication_Agents_Disabled_H_C; -- overriding procedure Com_Adobe_Aem_Upgrade_Prechecks_Mbean_Impl_Pre_Upgrade_Tasks_M_Bean_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Pre_Upgrade_Periodmaintenance_Periodtasks : in Swagger.UString_Vectors.Vector; Pre_Upgrade_Periodhc_Periodtags : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeAemUpgradePrechecksMbeanImplPreUpgradeTasksMBeanImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Aem_Upgrade_Prechecks_Mbean_Impl_Pre_Upgrade_Tasks_M_Bean_Impl; -- overriding procedure Com_Adobe_Aem_Upgrade_Prechecks_Tasks_Impl_Consistency_Check_Task_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Root_Periodpath : in Swagger.Nullable_UString; Fix_Periodinconsistencies : in Swagger.Nullable_Boolean; Result : out .Models.ComAdobeAemUpgradePrechecksTasksImplConsistencyCheckTaskImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Aem_Upgrade_Prechecks_Tasks_Impl_Consistency_Check_Task_Impl; -- overriding procedure Com_Adobe_Cq_Account_Api_Account_Management_Service (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Periodaccountmanager_Periodtoken_Periodvalidity_Periodperiod : in Swagger.Nullable_Integer; Cq_Periodaccountmanager_Periodconfig_Periodrequestnewaccount_Periodmail : in Swagger.Nullable_UString; Cq_Periodaccountmanager_Periodconfig_Periodrequestnewpwd_Periodmail : in Swagger.Nullable_UString; Result : out .Models.ComAdobeCqAccountApiAccountManagementServiceInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Cq_Account_Api_Account_Management_Service; -- overriding procedure Com_Adobe_Cq_Account_Impl_Account_Management_Servlet (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Periodaccountmanager_Periodconfig_Periodinformnewaccount_Periodmail : in Swagger.Nullable_UString; Cq_Periodaccountmanager_Periodconfig_Periodinformnewpwd_Periodmail : in Swagger.Nullable_UString; Result : out .Models.ComAdobeCqAccountImplAccountManagementServletInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Cq_Account_Impl_Account_Management_Servlet; -- overriding procedure Com_Adobe_Cq_Address_Impl_Location_Location_List_Servlet (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Periodaddress_Periodlocation_Perioddefault_Periodmax_Results : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeCqAddressImplLocationLocationListServletInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Cq_Address_Impl_Location_Location_List_Servlet; -- overriding procedure Com_Adobe_Cq_Audit_Purge_Dam (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Auditlog_Periodrule_Periodname : in Swagger.Nullable_UString; Auditlog_Periodrule_Periodcontentpath : in Swagger.Nullable_UString; Auditlog_Periodrule_Periodminimumage : in Swagger.Nullable_Integer; Auditlog_Periodrule_Periodtypes : in Swagger.Nullable_UString; Result : out .Models.ComAdobeCqAuditPurgeDamInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Cq_Audit_Purge_Dam; -- overriding procedure Com_Adobe_Cq_Audit_Purge_Pages (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Auditlog_Periodrule_Periodname : in Swagger.Nullable_UString; Auditlog_Periodrule_Periodcontentpath : in Swagger.Nullable_UString; Auditlog_Periodrule_Periodminimumage : in Swagger.Nullable_Integer; Auditlog_Periodrule_Periodtypes : in Swagger.Nullable_UString; Result : out .Models.ComAdobeCqAuditPurgePagesInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Cq_Audit_Purge_Pages; -- overriding procedure Com_Adobe_Cq_Audit_Purge_Replication (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Auditlog_Periodrule_Periodname : in Swagger.Nullable_UString; Auditlog_Periodrule_Periodcontentpath : in Swagger.Nullable_UString; Auditlog_Periodrule_Periodminimumage : in Swagger.Nullable_Integer; Auditlog_Periodrule_Periodtypes : in Swagger.Nullable_UString; Result : out .Models.ComAdobeCqAuditPurgeReplicationInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Cq_Audit_Purge_Replication; -- overriding procedure Com_Adobe_Cq_Cdn_Rewriter_Impl_A_W_S_Cloud_Front_Rewriter (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Service_Periodranking : in Swagger.Nullable_Integer; Keypair_Periodid : in Swagger.Nullable_UString; Keypair_Periodalias : in Swagger.Nullable_UString; Cdnrewriter_Periodattributes : in Swagger.UString_Vectors.Vector; Cdn_Periodrewriter_Perioddistribution_Perioddomain : in Swagger.Nullable_UString; Result : out .Models.ComAdobeCqCdnRewriterImplAWSCloudFrontRewriterInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Cq_Cdn_Rewriter_Impl_A_W_S_Cloud_Front_Rewriter; -- overriding procedure Com_Adobe_Cq_Cdn_Rewriter_Impl_C_D_N_Config_Service_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cdn_Periodconfig_Perioddistribution_Perioddomain : in Swagger.Nullable_UString; Cdn_Periodconfig_Periodenable_Periodrewriting : in Swagger.Nullable_Boolean; Cdn_Periodconfig_Periodpath_Periodprefixes : in Swagger.UString_Vectors.Vector; Cdn_Periodconfig_Periodcdnttl : in Swagger.Nullable_Integer; Cdn_Periodconfig_Periodapplication_Periodprotocol : in Swagger.Nullable_UString; Result : out .Models.ComAdobeCqCdnRewriterImplCDNConfigServiceImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Cq_Cdn_Rewriter_Impl_C_D_N_Config_Service_Impl; -- overriding procedure Com_Adobe_Cq_Cdn_Rewriter_Impl_C_D_N_Rewriter (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Service_Periodranking : in Swagger.Nullable_Integer; Cdnrewriter_Periodattributes : in Swagger.UString_Vectors.Vector; Cdn_Periodrewriter_Perioddistribution_Perioddomain : in Swagger.Nullable_UString; Result : out .Models.ComAdobeCqCdnRewriterImplCDNRewriterInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Cq_Cdn_Rewriter_Impl_C_D_N_Rewriter; -- overriding procedure Com_Adobe_Cq_Cloudconfig_Core_Impl_Configuration_Replication_Event_Handle (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Flush_Periodagents : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeCqCloudconfigCoreImplConfigurationReplicationEventHandleInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Cq_Cloudconfig_Core_Impl_Configuration_Replication_Event_Handle; -- overriding procedure Com_Adobe_Cq_Commerce_Impl_Asset_Dynamic_Image_Handler (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Periodcommerce_Periodasset_Periodhandler_Periodactive : in Swagger.Nullable_Boolean; Cq_Periodcommerce_Periodasset_Periodhandler_Periodname : in Swagger.Nullable_UString; Result : out .Models.ComAdobeCqCommerceImplAssetDynamicImageHandlerInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Cq_Commerce_Impl_Asset_Dynamic_Image_Handler; -- overriding procedure Com_Adobe_Cq_Commerce_Impl_Asset_Product_Asset_Handler_Provider_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Periodcommerce_Periodasset_Periodhandler_Periodfallback : in Swagger.Nullable_UString; Result : out .Models.ComAdobeCqCommerceImplAssetProductAssetHandlerProviderImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Cq_Commerce_Impl_Asset_Product_Asset_Handler_Provider_Impl; -- overriding procedure Com_Adobe_Cq_Commerce_Impl_Asset_Static_Image_Handler (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Periodcommerce_Periodasset_Periodhandler_Periodactive : in Swagger.Nullable_Boolean; Cq_Periodcommerce_Periodasset_Periodhandler_Periodname : in Swagger.Nullable_UString; Result : out .Models.ComAdobeCqCommerceImplAssetStaticImageHandlerInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Cq_Commerce_Impl_Asset_Static_Image_Handler; -- overriding procedure Com_Adobe_Cq_Commerce_Impl_Asset_Video_Handler (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Periodcommerce_Periodasset_Periodhandler_Periodactive : in Swagger.Nullable_Boolean; Cq_Periodcommerce_Periodasset_Periodhandler_Periodname : in Swagger.Nullable_UString; Result : out .Models.ComAdobeCqCommerceImplAssetVideoHandlerInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Cq_Commerce_Impl_Asset_Video_Handler; -- overriding procedure Com_Adobe_Cq_Commerce_Impl_Promotion_Promotion_Manager_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Periodcommerce_Periodpromotion_Periodroot : in Swagger.Nullable_UString; Result : out .Models.ComAdobeCqCommerceImplPromotionPromotionManagerImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Cq_Commerce_Impl_Promotion_Promotion_Manager_Impl; -- overriding procedure Com_Adobe_Cq_Commerce_Pim_Impl_Cataloggenerator_Catalog_Generator_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Periodcommerce_Periodcataloggenerator_Periodbucketsize : in Swagger.Nullable_Integer; Cq_Periodcommerce_Periodcataloggenerator_Periodbucketname : in Swagger.Nullable_UString; Cq_Periodcommerce_Periodcataloggenerator_Periodexcludedtemplateproperties : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeCqCommercePimImplCataloggeneratorCatalogGeneratorImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Cq_Commerce_Pim_Impl_Cataloggenerator_Catalog_Generator_Impl; -- overriding procedure Com_Adobe_Cq_Commerce_Pim_Impl_Page_Event_Listener (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Periodcommerce_Periodpageeventlistener_Periodenabled : in Swagger.Nullable_Boolean; Result : out .Models.ComAdobeCqCommercePimImplPageEventListenerInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Cq_Commerce_Pim_Impl_Page_Event_Listener; -- overriding procedure Com_Adobe_Cq_Commerce_Pim_Impl_Productfeed_Product_Feed_Service_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Feed generator algorithm : in Swagger.Nullable_UString; Result : out .Models.ComAdobeCqCommercePimImplProductfeedProductFeedServiceImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Cq_Commerce_Pim_Impl_Productfeed_Product_Feed_Service_Impl; -- overriding procedure Com_Adobe_Cq_Contentinsight_Impl_Reporting_Services_Settings_Provider (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Reportingservices_Periodurl : in Swagger.Nullable_UString; Result : out .Models.ComAdobeCqContentinsightImplReportingServicesSettingsProviderInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Cq_Contentinsight_Impl_Reporting_Services_Settings_Provider; -- overriding procedure Com_Adobe_Cq_Contentinsight_Impl_Servlets_Bright_Edge_Proxy_Servlet (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Brightedge_Periodurl : in Swagger.Nullable_UString; Result : out .Models.ComAdobeCqContentinsightImplServletsBrightEdgeProxyServletInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Cq_Contentinsight_Impl_Servlets_Bright_Edge_Proxy_Servlet; -- overriding procedure Com_Adobe_Cq_Contentinsight_Impl_Servlets_Reporting_Services_Proxy_Servle (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Reportingservices_Periodproxy_Periodwhitelist : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeCqContentinsightImplServletsReportingServicesProxyServleInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Cq_Contentinsight_Impl_Servlets_Reporting_Services_Proxy_Servle; -- overriding procedure Com_Adobe_Cq_Dam_Cfm_Impl_Component_Component_Config_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Dam_Periodcfm_Periodcomponent_Periodresource_Type : in Swagger.Nullable_UString; Dam_Periodcfm_Periodcomponent_Periodfile_Reference_Prop : in Swagger.Nullable_UString; Dam_Periodcfm_Periodcomponent_Periodelements_Prop : in Swagger.Nullable_UString; Dam_Periodcfm_Periodcomponent_Periodvariation_Prop : in Swagger.Nullable_UString; Result : out .Models.ComAdobeCqDamCfmImplComponentComponentConfigImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Cq_Dam_Cfm_Impl_Component_Component_Config_Impl; -- overriding procedure Com_Adobe_Cq_Dam_Cfm_Impl_Conf_Feature_Config_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Dam_Periodcfm_Periodresource_Types : in Swagger.UString_Vectors.Vector; Dam_Periodcfm_Periodreference_Properties : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeCqDamCfmImplConfFeatureConfigImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Cq_Dam_Cfm_Impl_Conf_Feature_Config_Impl; -- overriding procedure Com_Adobe_Cq_Dam_Cfm_Impl_Content_Rewriter_Asset_Processor (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Pipeline_Periodtype : in Swagger.Nullable_UString; Result : out .Models.ComAdobeCqDamCfmImplContentRewriterAssetProcessorInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Cq_Dam_Cfm_Impl_Content_Rewriter_Asset_Processor; -- overriding procedure Com_Adobe_Cq_Dam_Cfm_Impl_Content_Rewriter_Par_Range_Filter (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Pipeline_Periodtype : in Swagger.Nullable_UString; Result : out .Models.ComAdobeCqDamCfmImplContentRewriterParRangeFilterInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Cq_Dam_Cfm_Impl_Content_Rewriter_Par_Range_Filter; -- overriding procedure Com_Adobe_Cq_Dam_Cfm_Impl_Content_Rewriter_Payload_Filter (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Pipeline_Periodtype : in Swagger.Nullable_UString; Result : out .Models.ComAdobeCqDamCfmImplContentRewriterPayloadFilterInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Cq_Dam_Cfm_Impl_Content_Rewriter_Payload_Filter; -- overriding procedure Com_Adobe_Cq_Dam_Dm_Process_Image_P_Tiff_Manager_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Max_Memory : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeCqDamDmProcessImagePTiffManagerImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Cq_Dam_Dm_Process_Image_P_Tiff_Manager_Impl; -- overriding procedure Com_Adobe_Cq_Dam_Ips_Impl_Replication_Trigger_Replicate_On_Modify_Worker (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Dmreplicateonmodify_Periodenabled : in Swagger.Nullable_Boolean; Dmreplicateonmodify_Periodforcesyncdeletes : in Swagger.Nullable_Boolean; Result : out .Models.ComAdobeCqDamIpsImplReplicationTriggerReplicateOnModifyWorkerInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Cq_Dam_Ips_Impl_Replication_Trigger_Replicate_On_Modify_Worker; -- overriding procedure Com_Adobe_Cq_Dam_Mac_Sync_Helper_Impl_M_A_C_Sync_Client_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Com_Periodadobe_Perioddam_Periodmac_Periodsync_Periodclient_Periodso_Periodtimeout : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeCqDamMacSyncHelperImplMACSyncClientImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Cq_Dam_Mac_Sync_Helper_Impl_M_A_C_Sync_Client_Impl; -- overriding procedure Com_Adobe_Cq_Dam_Mac_Sync_Impl_D_A_M_Sync_Service_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Com_Periodadobe_Periodcq_Perioddam_Periodmac_Periodsync_Perioddamsyncservice_Periodregistered_Paths : in Swagger.UString_Vectors.Vector; Com_Periodadobe_Periodcq_Perioddam_Periodmac_Periodsync_Perioddamsyncservice_Periodsync_Periodrenditions : in Swagger.Nullable_Boolean; Com_Periodadobe_Periodcq_Perioddam_Periodmac_Periodsync_Perioddamsyncservice_Periodreplicate_Periodthread_Periodwait_Periodms : in Swagger.Nullable_Integer; Com_Periodadobe_Periodcq_Perioddam_Periodmac_Periodsync_Perioddamsyncservice_Periodplatform : in Swagger.Nullable_UString; Result : out .Models.ComAdobeCqDamMacSyncImplDAMSyncServiceImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Cq_Dam_Mac_Sync_Impl_D_A_M_Sync_Service_Impl; -- overriding procedure Com_Adobe_Cq_Dam_Processor_Nui_Impl_Nui_Asset_Processor (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Nui_Enabled : in Swagger.Nullable_Boolean; Nui_Service_Url : in Swagger.Nullable_UString; Nui_Api_Key : in Swagger.Nullable_UString; Result : out .Models.ComAdobeCqDamProcessorNuiImplNuiAssetProcessorInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Cq_Dam_Processor_Nui_Impl_Nui_Asset_Processor; -- overriding procedure Com_Adobe_Cq_Dam_S7imaging_Impl_Is_Image_Server_Component (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Tcp_Port : in Swagger.Nullable_UString; Allow_Remote_Access : in Swagger.Nullable_Boolean; Max_Render_Rgn_Pixels : in Swagger.Nullable_UString; Max_Message_Size : in Swagger.Nullable_UString; Random_Access_Url_Timeout : in Swagger.Nullable_Integer; Worker_Threads : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeCqDamS7imagingImplIsImageServerComponentInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Cq_Dam_S7imaging_Impl_Is_Image_Server_Component; -- overriding procedure Com_Adobe_Cq_Dam_S7imaging_Impl_Ps_Platform_Server_Servlet (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cache_Periodenable : in Swagger.Nullable_Boolean; Cache_Periodroot_Paths : in Swagger.UString_Vectors.Vector; Cache_Periodmax_Size : in Swagger.Nullable_Integer; Cache_Periodmax_Entries : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeCqDamS7imagingImplPsPlatformServerServletInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Cq_Dam_S7imaging_Impl_Ps_Platform_Server_Servlet; -- overriding procedure Com_Adobe_Cq_Dam_Webdav_Impl_Io_Asset_I_O_Handler (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Service_Periodranking : in Swagger.Nullable_Integer; Path_Prefix : in Swagger.Nullable_UString; Create_Version : in Swagger.Nullable_Boolean; Result : out .Models.ComAdobeCqDamWebdavImplIoAssetIOHandlerInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Cq_Dam_Webdav_Impl_Io_Asset_I_O_Handler; -- overriding procedure Com_Adobe_Cq_Dam_Webdav_Impl_Io_Dam_Webdav_Version_Linking_Job (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Perioddam_Periodwebdav_Periodversion_Periodlinking_Periodenable : in Swagger.Nullable_Boolean; Cq_Perioddam_Periodwebdav_Periodversion_Periodlinking_Periodscheduler_Periodperiod : in Swagger.Nullable_Integer; Cq_Perioddam_Periodwebdav_Periodversion_Periodlinking_Periodstaging_Periodtimeout : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeCqDamWebdavImplIoDamWebdavVersionLinkingJobInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Cq_Dam_Webdav_Impl_Io_Dam_Webdav_Version_Linking_Job; -- overriding procedure Com_Adobe_Cq_Dam_Webdav_Impl_Io_Special_Files_Handler (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Com_Periodday_Periodcq_Perioddam_Periodcore_Periodimpl_Periodio_Period_Special_Files_Handler_Periodfilepatters : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeCqDamWebdavImplIoSpecialFilesHandlerInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Cq_Dam_Webdav_Impl_Io_Special_Files_Handler; -- overriding procedure Com_Adobe_Cq_Deserfw_Impl_Deserialization_Firewall_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Firewall_Perioddeserialization_Periodwhitelist : in Swagger.UString_Vectors.Vector; Firewall_Perioddeserialization_Periodblacklist : in Swagger.UString_Vectors.Vector; Firewall_Perioddeserialization_Perioddiagnostics : in Swagger.Nullable_UString; Result : out .Models.ComAdobeCqDeserfwImplDeserializationFirewallImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Cq_Deserfw_Impl_Deserialization_Firewall_Impl; -- overriding procedure Com_Adobe_Cq_Dtm_Impl_Service_D_T_M_Web_Service_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Connection_Periodtimeout : in Swagger.Nullable_Integer; Socket_Periodtimeout : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeCqDtmImplServiceDTMWebServiceImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Cq_Dtm_Impl_Service_D_T_M_Web_Service_Impl; -- overriding procedure Com_Adobe_Cq_Dtm_Impl_Servlets_D_T_M_Deploy_Hook_Servlet (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Dtm_Periodstaging_Periodip_Periodwhitelist : in Swagger.UString_Vectors.Vector; Dtm_Periodproduction_Periodip_Periodwhitelist : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeCqDtmImplServletsDTMDeployHookServletInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Cq_Dtm_Impl_Servlets_D_T_M_Deploy_Hook_Servlet; -- overriding procedure Com_Adobe_Cq_Dtm_Reactor_Impl_Service_Web_Service_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Endpoint_Uri : in Swagger.Nullable_UString; Connection_Timeout : in Swagger.Nullable_Integer; Socket_Timeout : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeCqDtmReactorImplServiceWebServiceImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Cq_Dtm_Reactor_Impl_Service_Web_Service_Impl; -- overriding procedure Com_Adobe_Cq_Experiencelog_Impl_Experience_Log_Config_Servlet (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Enabled : in Swagger.Nullable_Boolean; Disabled_For_Groups : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeCqExperiencelogImplExperienceLogConfigServletInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Cq_Experiencelog_Impl_Experience_Log_Config_Servlet; -- overriding procedure Com_Adobe_Cq_Hc_Content_Packages_Health_Check (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Hc_Periodname : in Swagger.Nullable_UString; Hc_Periodtags : in Swagger.UString_Vectors.Vector; Hc_Periodmbean_Periodname : in Swagger.Nullable_UString; Package_Periodnames : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeCqHcContentPackagesHealthCheckInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Cq_Hc_Content_Packages_Health_Check; -- overriding procedure Com_Adobe_Cq_History_Impl_History_Request_Filter (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; History_Periodrequest_Filter_Periodexcluded_Selectors : in Swagger.UString_Vectors.Vector; History_Periodrequest_Filter_Periodexcluded_Extensions : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeCqHistoryImplHistoryRequestFilterInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Cq_History_Impl_History_Request_Filter; -- overriding procedure Com_Adobe_Cq_History_Impl_History_Service_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; History_Periodservice_Periodresource_Types : in Swagger.UString_Vectors.Vector; History_Periodservice_Periodpath_Filter : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeCqHistoryImplHistoryServiceImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Cq_History_Impl_History_Service_Impl; -- overriding procedure Com_Adobe_Cq_Inbox_Impl_Typeprovider_Item_Type_Provider (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Inbox_Periodimpl_Periodtypeprovider_Periodregistrypaths : in Swagger.UString_Vectors.Vector; Inbox_Periodimpl_Periodtypeprovider_Periodlegacypaths : in Swagger.UString_Vectors.Vector; Inbox_Periodimpl_Periodtypeprovider_Perioddefaulturl_Periodfailureitem : in Swagger.Nullable_UString; Inbox_Periodimpl_Periodtypeprovider_Perioddefaulturl_Periodworkitem : in Swagger.Nullable_UString; Inbox_Periodimpl_Periodtypeprovider_Perioddefaulturl_Periodtask : in Swagger.Nullable_UString; Result : out .Models.ComAdobeCqInboxImplTypeproviderItemTypeProviderInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Cq_Inbox_Impl_Typeprovider_Item_Type_Provider; -- overriding procedure Com_Adobe_Cq_Projects_Impl_Servlet_Project_Image_Servlet (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Image_Periodquality : in Swagger.Nullable_UString; Image_Periodsupported_Periodresolutions : in Swagger.Nullable_UString; Result : out .Models.ComAdobeCqProjectsImplServletProjectImageServletInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Cq_Projects_Impl_Servlet_Project_Image_Servlet; -- overriding procedure Com_Adobe_Cq_Projects_Purge_Scheduler (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Scheduledpurge_Periodname : in Swagger.Nullable_UString; Scheduledpurge_Periodpurge_Active : in Swagger.Nullable_Boolean; Scheduledpurge_Periodtemplates : in Swagger.UString_Vectors.Vector; Scheduledpurge_Periodpurge_Groups : in Swagger.Nullable_Boolean; Scheduledpurge_Periodpurge_Assets : in Swagger.Nullable_Boolean; Scheduledpurge_Periodterminate_Running_Workflows : in Swagger.Nullable_Boolean; Scheduledpurge_Perioddaysold : in Swagger.Nullable_Integer; Scheduledpurge_Periodsave_Threshold : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeCqProjectsPurgeSchedulerInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Cq_Projects_Purge_Scheduler; -- overriding procedure Com_Adobe_Cq_Scheduled_Exporter_Impl_Scheduled_Exporter_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Include_Periodpaths : in Swagger.UString_Vectors.Vector; Exporter_Perioduser : in Swagger.Nullable_UString; Result : out .Models.ComAdobeCqScheduledExporterImplScheduledExporterImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Cq_Scheduled_Exporter_Impl_Scheduled_Exporter_Impl; -- overriding procedure Com_Adobe_Cq_Screens_Analytics_Impl_Screens_Analytics_Service_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Com_Periodadobe_Periodcq_Periodscreens_Periodanalytics_Periodimpl_Periodurl : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Periodscreens_Periodanalytics_Periodimpl_Periodapikey : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Periodscreens_Periodanalytics_Periodimpl_Periodproject : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Periodscreens_Periodanalytics_Periodimpl_Periodenvironment : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Periodscreens_Periodanalytics_Periodimpl_Periodsend_Frequency : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeCqScreensAnalyticsImplScreensAnalyticsServiceImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Cq_Screens_Analytics_Impl_Screens_Analytics_Service_Impl; -- overriding procedure Com_Adobe_Cq_Screens_Device_Impl_Device_Service (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Com_Periodadobe_Periodaem_Periodscreens_Periodplayer_Periodpingfrequency : in Swagger.Nullable_Integer; Com_Periodadobe_Periodaem_Periodscreens_Perioddevice_Periodpasword_Periodspecialchars : in Swagger.Nullable_UString; Com_Periodadobe_Periodaem_Periodscreens_Perioddevice_Periodpasword_Periodminlowercasechars : in Swagger.Nullable_Integer; Com_Periodadobe_Periodaem_Periodscreens_Perioddevice_Periodpasword_Periodminuppercasechars : in Swagger.Nullable_Integer; Com_Periodadobe_Periodaem_Periodscreens_Perioddevice_Periodpasword_Periodminnumberchars : in Swagger.Nullable_Integer; Com_Periodadobe_Periodaem_Periodscreens_Perioddevice_Periodpasword_Periodminspecialchars : in Swagger.Nullable_Integer; Com_Periodadobe_Periodaem_Periodscreens_Perioddevice_Periodpasword_Periodminlength : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeCqScreensDeviceImplDeviceServiceInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Cq_Screens_Device_Impl_Device_Service; -- overriding procedure Com_Adobe_Cq_Screens_Device_Registration_Impl_Registration_Service_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Device_Registration_Timeout : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeCqScreensDeviceRegistrationImplRegistrationServiceImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Cq_Screens_Device_Registration_Impl_Registration_Service_Impl; -- overriding procedure Com_Adobe_Cq_Screens_Impl_Handler_Channels_Update_Handler (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Periodpagesupdatehandler_Periodimageresourcetypes : in Swagger.UString_Vectors.Vector; Cq_Periodpagesupdatehandler_Periodproductresourcetypes : in Swagger.UString_Vectors.Vector; Cq_Periodpagesupdatehandler_Periodvideoresourcetypes : in Swagger.UString_Vectors.Vector; Cq_Periodpagesupdatehandler_Perioddynamicsequenceresourcetypes : in Swagger.UString_Vectors.Vector; Cq_Periodpagesupdatehandler_Periodpreviewmodepaths : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeCqScreensImplHandlerChannelsUpdateHandlerInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Cq_Screens_Impl_Handler_Channels_Update_Handler; -- overriding procedure Com_Adobe_Cq_Screens_Impl_Jobs_Distributed_Devices_Stati_Update_Job (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Scheduler_Periodexpression : in Swagger.Nullable_UString; Result : out .Models.ComAdobeCqScreensImplJobsDistributedDevicesStatiUpdateJobInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Cq_Screens_Impl_Jobs_Distributed_Devices_Stati_Update_Job; -- overriding procedure Com_Adobe_Cq_Screens_Impl_Remote_Impl_Distributed_Http_Client_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Com_Periodadobe_Periodaem_Periodscreens_Periodimpl_Periodremote_Periodrequest_Timeout : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeCqScreensImplRemoteImplDistributedHttpClientImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Cq_Screens_Impl_Remote_Impl_Distributed_Http_Client_Impl; -- overriding procedure Com_Adobe_Cq_Screens_Impl_Screens_Channel_Post_Processor (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Screens_Periodchannels_Periodproperties_Periodto_Periodremove : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeCqScreensImplScreensChannelPostProcessorInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Cq_Screens_Impl_Screens_Channel_Post_Processor; -- overriding procedure Com_Adobe_Cq_Screens_Monitoring_Impl_Screens_Monitoring_Service_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Com_Periodadobe_Periodcq_Periodscreens_Periodmonitoring_Periodimpl_Period_Screens_Monitoring_Service_Impl_Periodproject_Path : in Swagger.UString_Vectors.Vector; Com_Periodadobe_Periodcq_Periodscreens_Periodmonitoring_Periodimpl_Period_Screens_Monitoring_Service_Impl_Periodschedule_Frequency : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Periodscreens_Periodmonitoring_Periodimpl_Period_Screens_Monitoring_Service_Impl_Periodping_Timeout : in Swagger.Nullable_Integer; Com_Periodadobe_Periodcq_Periodscreens_Periodmonitoring_Periodimpl_Period_Screens_Monitoring_Service_Impl_Periodrecipients : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Periodscreens_Periodmonitoring_Periodimpl_Period_Screens_Monitoring_Service_Impl_Periodsmtpserver : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Periodscreens_Periodmonitoring_Periodimpl_Period_Screens_Monitoring_Service_Impl_Periodsmtpport : in Swagger.Nullable_Integer; Com_Periodadobe_Periodcq_Periodscreens_Periodmonitoring_Periodimpl_Period_Screens_Monitoring_Service_Impl_Periodusetls : in Swagger.Nullable_Boolean; Com_Periodadobe_Periodcq_Periodscreens_Periodmonitoring_Periodimpl_Period_Screens_Monitoring_Service_Impl_Periodusername : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Periodscreens_Periodmonitoring_Periodimpl_Period_Screens_Monitoring_Service_Impl_Periodpassword : in Swagger.Nullable_UString; Result : out .Models.ComAdobeCqScreensMonitoringImplScreensMonitoringServiceImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Cq_Screens_Monitoring_Impl_Screens_Monitoring_Service_Impl; -- overriding procedure Com_Adobe_Cq_Screens_Mq_Activemq_Impl_Artemis_J_M_S_Provider (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Service_Periodranking : in Swagger.Nullable_Integer; Global_Periodsize : in Swagger.Nullable_Integer; Max_Perioddisk_Periodusage : in Swagger.Nullable_Integer; Persistence_Periodenabled : in Swagger.Nullable_Boolean; Thread_Periodpool_Periodmax_Periodsize : in Swagger.Nullable_Integer; Scheduled_Periodthread_Periodpool_Periodmax_Periodsize : in Swagger.Nullable_Integer; Graceful_Periodshutdown_Periodtimeout : in Swagger.Nullable_Integer; Queues : in Swagger.UString_Vectors.Vector; Topics : in Swagger.UString_Vectors.Vector; Addresses_Periodmax_Perioddelivery_Periodattempts : in Swagger.Nullable_Integer; Addresses_Periodexpiry_Perioddelay : in Swagger.Nullable_Integer; Addresses_Periodaddress_Periodfull_Periodmessage_Periodpolicy : in Swagger.Nullable_UString; Addresses_Periodmax_Periodsize_Periodbytes : in Swagger.Nullable_Integer; Addresses_Periodpage_Periodsize_Periodbytes : in Swagger.Nullable_Integer; Addresses_Periodpage_Periodcache_Periodmax_Periodsize : in Swagger.Nullable_Integer; Cluster_Perioduser : in Swagger.Nullable_UString; Cluster_Periodpassword : in Swagger.Nullable_UString; Cluster_Periodcall_Periodtimeout : in Swagger.Nullable_Integer; Cluster_Periodcall_Periodfailover_Periodtimeout : in Swagger.Nullable_Integer; Cluster_Periodclient_Periodfailure_Periodcheck_Periodperiod : in Swagger.Nullable_Integer; Cluster_Periodnotification_Periodattempts : in Swagger.Nullable_Integer; Cluster_Periodnotification_Periodinterval : in Swagger.Nullable_Integer; Id_Periodcache_Periodsize : in Swagger.Nullable_Integer; Cluster_Periodconfirmation_Periodwindow_Periodsize : in Swagger.Nullable_Integer; Cluster_Periodconnection_Periodttl : in Swagger.Nullable_Integer; Cluster_Periodduplicate_Perioddetection : in Swagger.Nullable_Boolean; Cluster_Periodinitial_Periodconnect_Periodattempts : in Swagger.Nullable_Integer; Cluster_Periodmax_Periodretry_Periodinterval : in Swagger.Nullable_Integer; Cluster_Periodmin_Periodlarge_Periodmessage_Periodsize : in Swagger.Nullable_Integer; Cluster_Periodproducer_Periodwindow_Periodsize : in Swagger.Nullable_Integer; Cluster_Periodreconnect_Periodattempts : in Swagger.Nullable_Integer; Cluster_Periodretry_Periodinterval : in Swagger.Nullable_Integer; Cluster_Periodretry_Periodinterval_Periodmultiplier : in Swagger.Number; Result : out .Models.ComAdobeCqScreensMqActivemqImplArtemisJMSProviderInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Cq_Screens_Mq_Activemq_Impl_Artemis_J_M_S_Provider; -- overriding procedure Com_Adobe_Cq_Screens_Offlinecontent_Impl_Bulk_Offline_Update_Service_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Com_Periodadobe_Periodcq_Periodscreens_Periodofflinecontent_Periodimpl_Period_Bulk_Offline_Update_Service_Impl_Periodproject_Path : in Swagger.UString_Vectors.Vector; Com_Periodadobe_Periodcq_Periodscreens_Periodofflinecontent_Periodimpl_Period_Bulk_Offline_Update_Service_Impl_Periodschedule_Frequency : in Swagger.Nullable_UString; Result : out .Models.ComAdobeCqScreensOfflinecontentImplBulkOfflineUpdateServiceImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Cq_Screens_Offlinecontent_Impl_Bulk_Offline_Update_Service_Impl; -- overriding procedure Com_Adobe_Cq_Screens_Offlinecontent_Impl_Offline_Content_Service_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Disable_Smart_Sync : in Swagger.Nullable_Boolean; Result : out .Models.ComAdobeCqScreensOfflinecontentImplOfflineContentServiceImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Cq_Screens_Offlinecontent_Impl_Offline_Content_Service_Impl; -- overriding procedure Com_Adobe_Cq_Screens_Segmentation_Impl_Segmentation_Feature_Flag (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Enable_Data_Triggered_Content : in Swagger.Nullable_Boolean; Result : out .Models.ComAdobeCqScreensSegmentationImplSegmentationFeatureFlagInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Cq_Screens_Segmentation_Impl_Segmentation_Feature_Flag; -- overriding procedure Com_Adobe_Cq_Security_Hc_Bundles_Impl_Html_Library_Manager_Config_Health_Ch (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Hc_Periodtags : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeCqSecurityHcBundlesImplHtmlLibraryManagerConfigHealthChInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Cq_Security_Hc_Bundles_Impl_Html_Library_Manager_Config_Health_Ch; -- overriding procedure Com_Adobe_Cq_Security_Hc_Bundles_Impl_Wcm_Filter_Health_Check (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Hc_Periodtags : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeCqSecurityHcBundlesImplWcmFilterHealthCheckInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Cq_Security_Hc_Bundles_Impl_Wcm_Filter_Health_Check; -- overriding procedure Com_Adobe_Cq_Security_Hc_Dispatcher_Impl_Dispatcher_Access_Health_Check (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Hc_Periodtags : in Swagger.UString_Vectors.Vector; Dispatcher_Periodaddress : in Swagger.Nullable_UString; Dispatcher_Periodfilter_Periodallowed : in Swagger.UString_Vectors.Vector; Dispatcher_Periodfilter_Periodblocked : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeCqSecurityHcDispatcherImplDispatcherAccessHealthCheckInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Cq_Security_Hc_Dispatcher_Impl_Dispatcher_Access_Health_Check; -- overriding procedure Com_Adobe_Cq_Security_Hc_Packages_Impl_Example_Content_Health_Check (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Hc_Periodtags : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeCqSecurityHcPackagesImplExampleContentHealthCheckInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Cq_Security_Hc_Packages_Impl_Example_Content_Health_Check; -- overriding procedure Com_Adobe_Cq_Security_Hc_Webserver_Impl_Clickjacking_Health_Check (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Hc_Periodtags : in Swagger.UString_Vectors.Vector; Webserver_Periodaddress : in Swagger.Nullable_UString; Result : out .Models.ComAdobeCqSecurityHcWebserverImplClickjackingHealthCheckInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Cq_Security_Hc_Webserver_Impl_Clickjacking_Health_Check; -- overriding procedure Com_Adobe_Cq_Social_Accountverification_Impl_Account_Management_Config_Im (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Enable : in Swagger.Nullable_Boolean; Ttl1 : in Swagger.Nullable_Integer; Ttl2 : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeCqSocialAccountverificationImplAccountManagementConfigImInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Cq_Social_Accountverification_Impl_Account_Management_Config_Im; -- overriding procedure Com_Adobe_Cq_Social_Activitystreams_Client_Impl_Social_Activity_Componen (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Priority : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeCqSocialActivitystreamsClientImplSocialActivityComponenInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Cq_Social_Activitystreams_Client_Impl_Social_Activity_Componen; -- overriding procedure Com_Adobe_Cq_Social_Activitystreams_Client_Impl_Social_Activity_Stream_Co (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Priority : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeCqSocialActivitystreamsClientImplSocialActivityStreamCoInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Cq_Social_Activitystreams_Client_Impl_Social_Activity_Stream_Co; -- overriding procedure Com_Adobe_Cq_Social_Activitystreams_Listener_Impl_Event_Listener_Handler (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Event_Periodtopics : in Swagger.Nullable_UString; Event_Periodfilter : in Swagger.Nullable_UString; Result : out .Models.ComAdobeCqSocialActivitystreamsListenerImplEventListenerHandlerInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Cq_Social_Activitystreams_Listener_Impl_Event_Listener_Handler; -- overriding procedure Com_Adobe_Cq_Social_Activitystreams_Listener_Impl_Moderation_Event_Exten (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Accepted : in Swagger.Nullable_Boolean; Ranked : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeCqSocialActivitystreamsListenerImplModerationEventExtenInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Cq_Social_Activitystreams_Listener_Impl_Moderation_Event_Exten; -- overriding procedure Com_Adobe_Cq_Social_Activitystreams_Listener_Impl_Rating_Event_Activity_S (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Ranking : in Swagger.Nullable_Integer; Enable : in Swagger.Nullable_Boolean; Result : out .Models.ComAdobeCqSocialActivitystreamsListenerImplRatingEventActivitySInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Cq_Social_Activitystreams_Listener_Impl_Rating_Event_Activity_S; -- overriding procedure Com_Adobe_Cq_Social_Activitystreams_Listener_Impl_Resource_Activity_Stre (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Stream_Path : in Swagger.Nullable_UString; Stream_Name : in Swagger.Nullable_UString; Result : out .Models.ComAdobeCqSocialActivitystreamsListenerImplResourceActivityStreInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Cq_Social_Activitystreams_Listener_Impl_Resource_Activity_Stre; -- overriding procedure Com_Adobe_Cq_Social_Calendar_Client_Endpoints_Impl_Calendar_Operations_I (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Max_Retry : in Swagger.Nullable_Integer; Field_Whitelist : in Swagger.UString_Vectors.Vector; Attachment_Type_Blacklist : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeCqSocialCalendarClientEndpointsImplCalendarOperationsIInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Cq_Social_Calendar_Client_Endpoints_Impl_Calendar_Operations_I; -- overriding procedure Com_Adobe_Cq_Social_Calendar_Client_Operationextensions_Event_Attachmen (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Attachment_Type_Blacklist : in Swagger.Nullable_UString; Extension_Periodorder : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeCqSocialCalendarClientOperationextensionsEventAttachmenInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Cq_Social_Calendar_Client_Operationextensions_Event_Attachmen; -- overriding procedure Com_Adobe_Cq_Social_Calendar_Servlets_Time_Zone_Servlet (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Timezones_Periodexpirytime : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeCqSocialCalendarServletsTimeZoneServletInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Cq_Social_Calendar_Servlets_Time_Zone_Servlet; -- overriding procedure Com_Adobe_Cq_Social_Commons_Comments_Endpoints_Impl_Comment_Delete_Event (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Ranking : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeCqSocialCommonsCommentsEndpointsImplCommentDeleteEventInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Cq_Social_Commons_Comments_Endpoints_Impl_Comment_Delete_Event; -- overriding procedure Com_Adobe_Cq_Social_Commons_Comments_Endpoints_Impl_Comment_Operation_Se (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Field_Whitelist : in Swagger.UString_Vectors.Vector; Attachment_Type_Blacklist : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeCqSocialCommonsCommentsEndpointsImplCommentOperationSeInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Cq_Social_Commons_Comments_Endpoints_Impl_Comment_Operation_Se; -- overriding procedure Com_Adobe_Cq_Social_Commons_Comments_Endpoints_Impl_Translation_Operati (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Field_Whitelist : in Swagger.UString_Vectors.Vector; Attachment_Type_Blacklist : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeCqSocialCommonsCommentsEndpointsImplTranslationOperatiInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Cq_Social_Commons_Comments_Endpoints_Impl_Translation_Operati; -- overriding procedure Com_Adobe_Cq_Social_Commons_Comments_Listing_Impl_Search_Comment_Social_C (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Num_User_Limit : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeCqSocialCommonsCommentsListingImplSearchCommentSocialCInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Cq_Social_Commons_Comments_Listing_Impl_Search_Comment_Social_C; -- overriding procedure Com_Adobe_Cq_Social_Commons_Comments_Scheduler_Impl_Search_Scheduled_Pos (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Enable_Scheduled_Posts_Search : in Swagger.Nullable_Boolean; Number_Of_Minutes : in Swagger.Nullable_Integer; Max_Search_Limit : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeCqSocialCommonsCommentsSchedulerImplSearchScheduledPosInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Cq_Social_Commons_Comments_Scheduler_Impl_Search_Scheduled_Pos; -- overriding procedure Com_Adobe_Cq_Social_Commons_Cors_C_O_R_S_Authentication_Filter (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cors_Periodenabling : in Swagger.Nullable_Boolean; Result : out .Models.ComAdobeCqSocialCommonsCorsCORSAuthenticationFilterInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Cq_Social_Commons_Cors_C_O_R_S_Authentication_Filter; -- overriding procedure Com_Adobe_Cq_Social_Commons_Emailreply_Impl_Android_Email_Client_Provider (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Priority_Order : in Swagger.Nullable_Integer; Reply_Email_Patterns : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeCqSocialCommonsEmailreplyImplAndroidEmailClientProviderInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Cq_Social_Commons_Emailreply_Impl_Android_Email_Client_Provider; -- overriding procedure Com_Adobe_Cq_Social_Commons_Emailreply_Impl_Comment_Email_Builder_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Context_Periodpath : in Swagger.Nullable_UString; Result : out .Models.ComAdobeCqSocialCommonsEmailreplyImplCommentEmailBuilderImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Cq_Social_Commons_Emailreply_Impl_Comment_Email_Builder_Impl; -- overriding procedure Com_Adobe_Cq_Social_Commons_Emailreply_Impl_Comment_Email_Event_Listener (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Event_Periodtopics : in Swagger.Nullable_UString; Result : out .Models.ComAdobeCqSocialCommonsEmailreplyImplCommentEmailEventListenerInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Cq_Social_Commons_Emailreply_Impl_Comment_Email_Event_Listener; -- overriding procedure Com_Adobe_Cq_Social_Commons_Emailreply_Impl_Custom_Email_Client_Provider (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Priority_Order : in Swagger.Nullable_Integer; Reply_Email_Patterns : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeCqSocialCommonsEmailreplyImplCustomEmailClientProviderInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Cq_Social_Commons_Emailreply_Impl_Custom_Email_Client_Provider; -- overriding procedure Com_Adobe_Cq_Social_Commons_Emailreply_Impl_Email_Quoted_Text_Patterns_Imp (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Pattern_Periodtime : in Swagger.Nullable_UString; Pattern_Periodnewline : in Swagger.Nullable_UString; Pattern_Periodday_Of_Month : in Swagger.Nullable_UString; Pattern_Periodmonth : in Swagger.Nullable_UString; Pattern_Periodyear : in Swagger.Nullable_UString; Pattern_Perioddate : in Swagger.Nullable_UString; Pattern_Perioddate_Time : in Swagger.Nullable_UString; Pattern_Periodemail : in Swagger.Nullable_UString; Result : out .Models.ComAdobeCqSocialCommonsEmailreplyImplEmailQuotedTextPatternsImpInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Cq_Social_Commons_Emailreply_Impl_Email_Quoted_Text_Patterns_Imp; -- overriding procedure Com_Adobe_Cq_Social_Commons_Emailreply_Impl_Email_Reply_Configuration_Imp (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Email_Periodname : in Swagger.Nullable_UString; Email_Periodcreate_Post_From_Reply : in Swagger.Nullable_Boolean; Email_Periodadd_Comment_Id_To : in Swagger.Nullable_UString; Email_Periodsubject_Maximum_Length : in Swagger.Nullable_Integer; Email_Periodreply_To_Address : in Swagger.Nullable_UString; Email_Periodreply_To_Delimiter : in Swagger.Nullable_UString; Email_Periodtracker_Id_Prefix_In_Subject : in Swagger.Nullable_UString; Email_Periodtracker_Id_Prefix_In_Body : in Swagger.Nullable_UString; Email_Periodas_H_T_M_L : in Swagger.Nullable_Boolean; Email_Perioddefault_User_Name : in Swagger.Nullable_UString; Email_Periodtemplates_Periodroot_Path : in Swagger.Nullable_UString; Result : out .Models.ComAdobeCqSocialCommonsEmailreplyImplEmailReplyConfigurationImpInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Cq_Social_Commons_Emailreply_Impl_Email_Reply_Configuration_Imp; -- overriding procedure Com_Adobe_Cq_Social_Commons_Emailreply_Impl_Email_Reply_Importer (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Connect_Protocol : in Swagger.Nullable_UString; Result : out .Models.ComAdobeCqSocialCommonsEmailreplyImplEmailReplyImporterInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Cq_Social_Commons_Emailreply_Impl_Email_Reply_Importer; -- overriding procedure Com_Adobe_Cq_Social_Commons_Emailreply_Impl_Gmail_Email_Client_Provider (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Priority_Order : in Swagger.Nullable_Integer; Reply_Email_Patterns : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeCqSocialCommonsEmailreplyImplGmailEmailClientProviderInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Cq_Social_Commons_Emailreply_Impl_Gmail_Email_Client_Provider; -- overriding procedure Com_Adobe_Cq_Social_Commons_Emailreply_Impl_I_O_S_Email_Client_Provider (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Priority_Order : in Swagger.Nullable_Integer; Reply_Email_Patterns : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeCqSocialCommonsEmailreplyImplIOSEmailClientProviderInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Cq_Social_Commons_Emailreply_Impl_I_O_S_Email_Client_Provider; -- overriding procedure Com_Adobe_Cq_Social_Commons_Emailreply_Impl_Macmail_Email_Client_Provider (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Priority_Order : in Swagger.Nullable_Integer; Reply_Email_Patterns : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeCqSocialCommonsEmailreplyImplMacmailEmailClientProviderInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Cq_Social_Commons_Emailreply_Impl_Macmail_Email_Client_Provider; -- overriding procedure Com_Adobe_Cq_Social_Commons_Emailreply_Impl_Out_Look_Email_Client_Provider (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Priority_Order : in Swagger.Nullable_Integer; Reply_Email_Patterns : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeCqSocialCommonsEmailreplyImplOutLookEmailClientProviderInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Cq_Social_Commons_Emailreply_Impl_Out_Look_Email_Client_Provider; -- overriding procedure Com_Adobe_Cq_Social_Commons_Emailreply_Impl_Unknown_Email_Client_Provider (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Reply_Email_Patterns : in Swagger.UString_Vectors.Vector; Priority_Order : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeCqSocialCommonsEmailreplyImplUnknownEmailClientProviderInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Cq_Social_Commons_Emailreply_Impl_Unknown_Email_Client_Provider; -- overriding procedure Com_Adobe_Cq_Social_Commons_Emailreply_Impl_Yahoo_Email_Client_Provider (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Priority_Order : in Swagger.Nullable_Integer; Reply_Email_Patterns : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeCqSocialCommonsEmailreplyImplYahooEmailClientProviderInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Cq_Social_Commons_Emailreply_Impl_Yahoo_Email_Client_Provider; -- overriding procedure Com_Adobe_Cq_Social_Commons_Maintainance_Impl_Delete_Temp_U_G_C_Image_Upload (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Number_Of_Days : in Swagger.Nullable_Integer; Age_Of_File : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeCqSocialCommonsMaintainanceImplDeleteTempUGCImageUploadInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Cq_Social_Commons_Maintainance_Impl_Delete_Temp_U_G_C_Image_Upload; -- overriding procedure Com_Adobe_Cq_Social_Commons_Ugclimiter_Impl_U_G_C_Limiter_Service_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Event_Periodtopics : in Swagger.Nullable_UString; Event_Periodfilter : in Swagger.Nullable_UString; Verbs : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeCqSocialCommonsUgclimiterImplUGCLimiterServiceImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Cq_Social_Commons_Ugclimiter_Impl_U_G_C_Limiter_Service_Impl; -- overriding procedure Com_Adobe_Cq_Social_Commons_Ugclimitsconfig_Impl_Community_User_U_G_C_Limit (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Enable : in Swagger.Nullable_Boolean; U_G_C_Limit : in Swagger.Nullable_Integer; Ugc_Limit_Duration : in Swagger.Nullable_Integer; Domains : in Swagger.UString_Vectors.Vector; To_List : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeCqSocialCommonsUgclimitsconfigImplCommunityUserUGCLimitInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Cq_Social_Commons_Ugclimitsconfig_Impl_Community_User_U_G_C_Limit; -- overriding procedure Com_Adobe_Cq_Social_Connect_Oauth_Impl_Facebook_Provider_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Oauth_Periodprovider_Periodid : in Swagger.Nullable_UString; Oauth_Periodcloud_Periodconfig_Periodroot : in Swagger.Nullable_UString; Provider_Periodconfig_Periodroot : in Swagger.Nullable_UString; Provider_Periodconfig_Periodcreate_Periodtags_Periodenabled : in Swagger.Nullable_Boolean; Provider_Periodconfig_Perioduser_Periodfolder : in Swagger.Nullable_UString; Provider_Periodconfig_Periodfacebook_Periodfetch_Periodfields : in Swagger.Nullable_Boolean; Provider_Periodconfig_Periodfacebook_Periodfields : in Swagger.UString_Vectors.Vector; Provider_Periodconfig_Periodrefresh_Perioduserdata_Periodenabled : in Swagger.Nullable_Boolean; Result : out .Models.ComAdobeCqSocialConnectOauthImplFacebookProviderImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Cq_Social_Connect_Oauth_Impl_Facebook_Provider_Impl; -- overriding procedure Com_Adobe_Cq_Social_Connect_Oauth_Impl_Social_O_Auth_Authentication_Handle (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Path : in Swagger.UString_Vectors.Vector; Service_Periodranking : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeCqSocialConnectOauthImplSocialOAuthAuthenticationHandleInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Cq_Social_Connect_Oauth_Impl_Social_O_Auth_Authentication_Handle; -- overriding procedure Com_Adobe_Cq_Social_Connect_Oauth_Impl_Social_O_Auth_User_Profile_Mapper (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Facebook : in Swagger.UString_Vectors.Vector; Twitter : in Swagger.UString_Vectors.Vector; Provider_Periodconfig_Perioduser_Periodfolder : in Swagger.Nullable_UString; Result : out .Models.ComAdobeCqSocialConnectOauthImplSocialOAuthUserProfileMapperInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Cq_Social_Connect_Oauth_Impl_Social_O_Auth_User_Profile_Mapper; -- overriding procedure Com_Adobe_Cq_Social_Connect_Oauth_Impl_Twitter_Provider_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Oauth_Periodprovider_Periodid : in Swagger.Nullable_UString; Oauth_Periodcloud_Periodconfig_Periodroot : in Swagger.Nullable_UString; Provider_Periodconfig_Periodroot : in Swagger.Nullable_UString; Provider_Periodconfig_Perioduser_Periodfolder : in Swagger.Nullable_UString; Provider_Periodconfig_Periodtwitter_Periodenable_Periodparams : in Swagger.Nullable_Boolean; Provider_Periodconfig_Periodtwitter_Periodparams : in Swagger.UString_Vectors.Vector; Provider_Periodconfig_Periodrefresh_Perioduserdata_Periodenabled : in Swagger.Nullable_Boolean; Result : out .Models.ComAdobeCqSocialConnectOauthImplTwitterProviderImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Cq_Social_Connect_Oauth_Impl_Twitter_Provider_Impl; -- overriding procedure Com_Adobe_Cq_Social_Content_Fragments_Services_Impl_Communities_Fragmen (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Periodsocial_Periodcontent_Periodfragments_Periodservices_Periodenabled : in Swagger.Nullable_Boolean; Cq_Periodsocial_Periodcontent_Periodfragments_Periodservices_Periodwait_Time_Seconds : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeCqSocialContentFragmentsServicesImplCommunitiesFragmenInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Cq_Social_Content_Fragments_Services_Impl_Communities_Fragmen; -- overriding procedure Com_Adobe_Cq_Social_Datastore_As_Impl_A_S_Resource_Provider_Factory (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Version_Periodid : in Swagger.Nullable_UString; Cache_Periodon : in Swagger.Nullable_Boolean; Concurrency_Periodlevel : in Swagger.Nullable_Integer; Cache_Periodstart_Periodsize : in Swagger.Nullable_Integer; Cache_Periodttl : in Swagger.Nullable_Integer; Cache_Periodsize : in Swagger.Nullable_Integer; Time_Periodlimit : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeCqSocialDatastoreAsImplASResourceProviderFactoryInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Cq_Social_Datastore_As_Impl_A_S_Resource_Provider_Factory; -- overriding procedure Com_Adobe_Cq_Social_Datastore_Op_Impl_Social_M_S_Resource_Provider_Factory (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Solr_Periodzk_Periodtimeout : in Swagger.Nullable_UString; Solr_Periodcommit : in Swagger.Nullable_UString; Cache_Periodon : in Swagger.Nullable_Boolean; Concurrency_Periodlevel : in Swagger.Nullable_Integer; Cache_Periodstart_Periodsize : in Swagger.Nullable_Integer; Cache_Periodttl : in Swagger.Nullable_Integer; Cache_Periodsize : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeCqSocialDatastoreOpImplSocialMSResourceProviderFactoryInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Cq_Social_Datastore_Op_Impl_Social_M_S_Resource_Provider_Factory; -- overriding procedure Com_Adobe_Cq_Social_Datastore_Rdb_Impl_Social_R_D_B_Resource_Provider_Factor (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Solr_Periodzk_Periodtimeout : in Swagger.Nullable_UString; Solr_Periodcommit : in Swagger.Nullable_UString; Cache_Periodon : in Swagger.Nullable_Boolean; Concurrency_Periodlevel : in Swagger.Nullable_Integer; Cache_Periodstart_Periodsize : in Swagger.Nullable_Integer; Cache_Periodttl : in Swagger.Nullable_Integer; Cache_Periodsize : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeCqSocialDatastoreRdbImplSocialRDBResourceProviderFactorInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Cq_Social_Datastore_Rdb_Impl_Social_R_D_B_Resource_Provider_Factor; -- overriding procedure Com_Adobe_Cq_Social_Enablement_Adaptors_Enablement_Learning_Path_Adaptor_F (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Is_Member_Check : in Swagger.Nullable_Boolean; Result : out .Models.ComAdobeCqSocialEnablementAdaptorsEnablementLearningPathAdaptorFInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Cq_Social_Enablement_Adaptors_Enablement_Learning_Path_Adaptor_F; -- overriding procedure Com_Adobe_Cq_Social_Enablement_Adaptors_Enablement_Resource_Adaptor_Facto (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Is_Member_Check : in Swagger.Nullable_Boolean; Result : out .Models.ComAdobeCqSocialEnablementAdaptorsEnablementResourceAdaptorFactoInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Cq_Social_Enablement_Adaptors_Enablement_Resource_Adaptor_Facto; -- overriding procedure Com_Adobe_Cq_Social_Enablement_Learningpath_Endpoints_Impl_Enablement_L (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Field_Whitelist : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeCqSocialEnablementLearningpathEndpointsImplEnablementLInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Cq_Social_Enablement_Learningpath_Endpoints_Impl_Enablement_L; -- overriding procedure Com_Adobe_Cq_Social_Enablement_Resource_Endpoints_Impl_Enablement_Resou (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Field_Whitelist : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeCqSocialEnablementResourceEndpointsImplEnablementResouInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Cq_Social_Enablement_Resource_Endpoints_Impl_Enablement_Resou; -- overriding procedure Com_Adobe_Cq_Social_Enablement_Services_Impl_Author_Marker_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Service_Periodranking : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeCqSocialEnablementServicesImplAuthorMarkerImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Cq_Social_Enablement_Services_Impl_Author_Marker_Impl; -- overriding procedure Com_Adobe_Cq_Social_Filelibrary_Client_Endpoints_Filelibrary_Download_Ge (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Sling_Periodservlet_Periodselectors : in Swagger.Nullable_UString; Sling_Periodservlet_Periodextensions : in Swagger.Nullable_UString; Result : out .Models.ComAdobeCqSocialFilelibraryClientEndpointsFilelibraryDownloadGeInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Cq_Social_Filelibrary_Client_Endpoints_Filelibrary_Download_Ge; -- overriding procedure Com_Adobe_Cq_Social_Filelibrary_Client_Endpoints_Impl_File_Library_Opera (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Field_Whitelist : in Swagger.UString_Vectors.Vector; Attachment_Type_Blacklist : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeCqSocialFilelibraryClientEndpointsImplFileLibraryOperaInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Cq_Social_Filelibrary_Client_Endpoints_Impl_File_Library_Opera; -- overriding procedure Com_Adobe_Cq_Social_Forum_Client_Endpoints_Impl_Forum_Operations_Service (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Field_Whitelist : in Swagger.UString_Vectors.Vector; Attachment_Type_Blacklist : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeCqSocialForumClientEndpointsImplForumOperationsServiceInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Cq_Social_Forum_Client_Endpoints_Impl_Forum_Operations_Service; -- overriding procedure Com_Adobe_Cq_Social_Forum_Dispatcher_Impl_Flush_Operations (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Extension_Periodorder : in Swagger.Nullable_Integer; Flush_Periodforumontopic : in Swagger.Nullable_Boolean; Result : out .Models.ComAdobeCqSocialForumDispatcherImplFlushOperationsInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Cq_Social_Forum_Dispatcher_Impl_Flush_Operations; -- overriding procedure Com_Adobe_Cq_Social_Group_Client_Impl_Community_Group_Collection_Componen (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Group_Periodlisting_Periodpagination_Periodenable : in Swagger.Nullable_Boolean; Group_Periodlisting_Periodlazyloading_Periodenable : in Swagger.Nullable_Boolean; Page_Periodsize : in Swagger.Nullable_Integer; Priority : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeCqSocialGroupClientImplCommunityGroupCollectionComponenInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Cq_Social_Group_Client_Impl_Community_Group_Collection_Componen; -- overriding procedure Com_Adobe_Cq_Social_Group_Impl_Group_Service_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Max_Wait_Time : in Swagger.Nullable_Integer; Min_Wait_Between_Retries : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeCqSocialGroupImplGroupServiceImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Cq_Social_Group_Impl_Group_Service_Impl; -- overriding procedure Com_Adobe_Cq_Social_Handlebars_Guava_Template_Cache_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Parameter_Periodguava_Periodcache_Periodenabled : in Swagger.Nullable_Boolean; Parameter_Periodguava_Periodcache_Periodparams : in Swagger.Nullable_UString; Parameter_Periodguava_Periodcache_Periodreload : in Swagger.Nullable_Boolean; Service_Periodranking : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeCqSocialHandlebarsGuavaTemplateCacheImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Cq_Social_Handlebars_Guava_Template_Cache_Impl; -- overriding procedure Com_Adobe_Cq_Social_Ideation_Client_Endpoints_Impl_Ideation_Operations_S (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Field_Whitelist : in Swagger.UString_Vectors.Vector; Attachment_Type_Blacklist : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeCqSocialIdeationClientEndpointsImplIdeationOperationsSInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Cq_Social_Ideation_Client_Endpoints_Impl_Ideation_Operations_S; -- overriding procedure Com_Adobe_Cq_Social_Journal_Client_Endpoints_Impl_Journal_Operations_Ser (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Field_Whitelist : in Swagger.UString_Vectors.Vector; Attachment_Type_Blacklist : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeCqSocialJournalClientEndpointsImplJournalOperationsSerInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Cq_Social_Journal_Client_Endpoints_Impl_Journal_Operations_Ser; -- overriding procedure Com_Adobe_Cq_Social_Members_Endpoints_Impl_Community_Member_Group_Profile (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Field_Whitelist : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeCqSocialMembersEndpointsImplCommunityMemberGroupProfileInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Cq_Social_Members_Endpoints_Impl_Community_Member_Group_Profile; -- overriding procedure Com_Adobe_Cq_Social_Members_Endpoints_Impl_Community_Member_User_Profile_O (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Field_Whitelist : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeCqSocialMembersEndpointsImplCommunityMemberUserProfileOInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Cq_Social_Members_Endpoints_Impl_Community_Member_User_Profile_O; -- overriding procedure Com_Adobe_Cq_Social_Members_Impl_Community_Member_Group_Profile_Component_F (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Everyone_Limit : in Swagger.Nullable_Integer; Priority : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeCqSocialMembersImplCommunityMemberGroupProfileComponentFInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Cq_Social_Members_Impl_Community_Member_Group_Profile_Component_F; -- overriding procedure Com_Adobe_Cq_Social_Messaging_Client_Endpoints_Impl_Messaging_Operation (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Message_Periodproperties : in Swagger.UString_Vectors.Vector; Message_Box_Size_Limit : in Swagger.Nullable_Integer; Message_Count_Limit : in Swagger.Nullable_Integer; Notify_Failure : in Swagger.Nullable_Boolean; Failure_Message_From : in Swagger.Nullable_UString; Failure_Template_Path : in Swagger.Nullable_UString; Max_Retries : in Swagger.Nullable_Integer; Min_Wait_Between_Retries : in Swagger.Nullable_Integer; Count_Update_Pool_Size : in Swagger.Nullable_Integer; Inbox_Periodpath : in Swagger.Nullable_UString; Sentitems_Periodpath : in Swagger.Nullable_UString; Support_Attachments : in Swagger.Nullable_Boolean; Support_Group_Messaging : in Swagger.Nullable_Boolean; Max_Total_Recipients : in Swagger.Nullable_Integer; Batch_Size : in Swagger.Nullable_Integer; Max_Total_Attachment_Size : in Swagger.Nullable_Integer; Attachment_Type_Blacklist : in Swagger.UString_Vectors.Vector; Allowed_Attachment_Types : in Swagger.UString_Vectors.Vector; Service_Selector : in Swagger.Nullable_UString; Field_Whitelist : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeCqSocialMessagingClientEndpointsImplMessagingOperationInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Cq_Social_Messaging_Client_Endpoints_Impl_Messaging_Operation; -- overriding procedure Com_Adobe_Cq_Social_Moderation_Dashboard_Api_Filter_Group_Social_Componen (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Resource_Type_Periodfilters : in Swagger.UString_Vectors.Vector; Priority : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeCqSocialModerationDashboardApiFilterGroupSocialComponenInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Cq_Social_Moderation_Dashboard_Api_Filter_Group_Social_Componen; -- overriding procedure Com_Adobe_Cq_Social_Moderation_Dashboard_Api_Moderation_Dashboard_Social (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Priority : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeCqSocialModerationDashboardApiModerationDashboardSocialInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Cq_Social_Moderation_Dashboard_Api_Moderation_Dashboard_Social; -- overriding procedure Com_Adobe_Cq_Social_Moderation_Dashboard_Api_User_Details_Social_Componen (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Priority : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeCqSocialModerationDashboardApiUserDetailsSocialComponenInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Cq_Social_Moderation_Dashboard_Api_User_Details_Social_Componen; -- overriding procedure Com_Adobe_Cq_Social_Moderation_Dashboard_Internal_Impl_Filter_Group_Soci (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Resource_Type_Periodfilters : in Swagger.UString_Vectors.Vector; Priority : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeCqSocialModerationDashboardInternalImplFilterGroupSociInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Cq_Social_Moderation_Dashboard_Internal_Impl_Filter_Group_Soci; -- overriding procedure Com_Adobe_Cq_Social_Notifications_Impl_Mentions_Router (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Event_Periodtopics : in Swagger.Nullable_UString; Event_Periodfilter : in Swagger.Nullable_UString; Result : out .Models.ComAdobeCqSocialNotificationsImplMentionsRouterInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Cq_Social_Notifications_Impl_Mentions_Router; -- overriding procedure Com_Adobe_Cq_Social_Notifications_Impl_Notification_Manager_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Max_Periodunread_Periodnotification_Periodcount : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeCqSocialNotificationsImplNotificationManagerImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Cq_Social_Notifications_Impl_Notification_Manager_Impl; -- overriding procedure Com_Adobe_Cq_Social_Notifications_Impl_Notifications_Router (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Event_Periodtopics : in Swagger.Nullable_UString; Event_Periodfilter : in Swagger.Nullable_UString; Result : out .Models.ComAdobeCqSocialNotificationsImplNotificationsRouterInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Cq_Social_Notifications_Impl_Notifications_Router; -- overriding procedure Com_Adobe_Cq_Social_Qna_Client_Endpoints_Impl_Qna_Forum_Operations_Servic (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Field_Whitelist : in Swagger.UString_Vectors.Vector; Attachment_Type_Blacklist : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeCqSocialQnaClientEndpointsImplQnaForumOperationsServicInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Cq_Social_Qna_Client_Endpoints_Impl_Qna_Forum_Operations_Servic; -- overriding procedure Com_Adobe_Cq_Social_Reporting_Analytics_Services_Impl_Analytics_Report_I (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Periodsocial_Periodreporting_Periodanalytics_Periodpolling_Periodimporter_Periodinterval : in Swagger.Nullable_Integer; Cq_Periodsocial_Periodreporting_Periodanalytics_Periodpolling_Periodimporter_Periodpage_Size : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeCqSocialReportingAnalyticsServicesImplAnalyticsReportIInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Cq_Social_Reporting_Analytics_Services_Impl_Analytics_Report_I; -- overriding procedure Com_Adobe_Cq_Social_Reporting_Analytics_Services_Impl_Analytics_Report_M (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Report_Periodfetch_Perioddelay : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeCqSocialReportingAnalyticsServicesImplAnalyticsReportMInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Cq_Social_Reporting_Analytics_Services_Impl_Analytics_Report_M; -- overriding procedure Com_Adobe_Cq_Social_Reporting_Analytics_Services_Impl_Site_Trend_Report_S (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Periodsocial_Periodconsole_Periodanalytics_Periodsites_Periodmapping : in Swagger.UString_Vectors.Vector; Priority : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeCqSocialReportingAnalyticsServicesImplSiteTrendReportSInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Cq_Social_Reporting_Analytics_Services_Impl_Site_Trend_Report_S; -- overriding procedure Com_Adobe_Cq_Social_Review_Client_Endpoints_Impl_Review_Operations_Servi (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Field_Whitelist : in Swagger.UString_Vectors.Vector; Attachment_Type_Blacklist : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeCqSocialReviewClientEndpointsImplReviewOperationsServiInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Cq_Social_Review_Client_Endpoints_Impl_Review_Operations_Servi; -- overriding procedure Com_Adobe_Cq_Social_Scf_Core_Operations_Impl_Social_Operations_Servlet (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Sling_Periodservlet_Periodselectors : in Swagger.Nullable_UString; Sling_Periodservlet_Periodextensions : in Swagger.Nullable_UString; Result : out .Models.ComAdobeCqSocialScfCoreOperationsImplSocialOperationsServletInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Cq_Social_Scf_Core_Operations_Impl_Social_Operations_Servlet; -- overriding procedure Com_Adobe_Cq_Social_Scf_Endpoints_Impl_Default_Social_Get_Servlet (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Sling_Periodservlet_Periodselectors : in Swagger.UString_Vectors.Vector; Sling_Periodservlet_Periodextensions : in Swagger.Nullable_UString; Result : out .Models.ComAdobeCqSocialScfEndpointsImplDefaultSocialGetServletInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Cq_Social_Scf_Endpoints_Impl_Default_Social_Get_Servlet; -- overriding procedure Com_Adobe_Cq_Social_Scoring_Impl_Scoring_Event_Listener (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Event_Periodtopics : in Swagger.Nullable_UString; Event_Periodfilter : in Swagger.Nullable_UString; Result : out .Models.ComAdobeCqSocialScoringImplScoringEventListenerInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Cq_Social_Scoring_Impl_Scoring_Event_Listener; -- overriding procedure Com_Adobe_Cq_Social_Serviceusers_Internal_Impl_Service_User_Wrapper_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Enable_Fallback : in Swagger.Nullable_Boolean; Result : out .Models.ComAdobeCqSocialServiceusersInternalImplServiceUserWrapperImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Cq_Social_Serviceusers_Internal_Impl_Service_User_Wrapper_Impl; -- overriding procedure Com_Adobe_Cq_Social_Site_Endpoints_Impl_Site_Operation_Service (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Field_Whitelist : in Swagger.UString_Vectors.Vector; Site_Path_Filters : in Swagger.UString_Vectors.Vector; Site_Package_Group : in Swagger.Nullable_UString; Result : out .Models.ComAdobeCqSocialSiteEndpointsImplSiteOperationServiceInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Cq_Social_Site_Endpoints_Impl_Site_Operation_Service; -- overriding procedure Com_Adobe_Cq_Social_Site_Impl_Analytics_Component_Configuration_Service_Im (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Periodsocial_Periodconsole_Periodanalytics_Periodcomponents : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeCqSocialSiteImplAnalyticsComponentConfigurationServiceImInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Cq_Social_Site_Impl_Analytics_Component_Configuration_Service_Im; -- overriding procedure Com_Adobe_Cq_Social_Site_Impl_Site_Configurator_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Components_Using_Tags : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeCqSocialSiteImplSiteConfiguratorImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Cq_Social_Site_Impl_Site_Configurator_Impl; -- overriding procedure Com_Adobe_Cq_Social_Srp_Impl_Social_Solr_Connector (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Srp_Periodtype : in Swagger.Nullable_UString; Result : out .Models.ComAdobeCqSocialSrpImplSocialSolrConnectorInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Cq_Social_Srp_Impl_Social_Solr_Connector; -- overriding procedure Com_Adobe_Cq_Social_Sync_Impl_Diff_Changes_Observer (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Enabled : in Swagger.Nullable_Boolean; Agent_Name : in Swagger.Nullable_UString; Diff_Path : in Swagger.Nullable_UString; Property_Names : in Swagger.Nullable_UString; Result : out .Models.ComAdobeCqSocialSyncImplDiffChangesObserverInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Cq_Social_Sync_Impl_Diff_Changes_Observer; -- overriding procedure Com_Adobe_Cq_Social_Sync_Impl_Group_Sync_Listener_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Nodetypes : in Swagger.UString_Vectors.Vector; Ignorableprops : in Swagger.UString_Vectors.Vector; Ignorablenodes : in Swagger.Nullable_UString; Enabled : in Swagger.Nullable_Boolean; Distfolders : in Swagger.Nullable_UString; Result : out .Models.ComAdobeCqSocialSyncImplGroupSyncListenerImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Cq_Social_Sync_Impl_Group_Sync_Listener_Impl; -- overriding procedure Com_Adobe_Cq_Social_Sync_Impl_Publisher_Sync_Service_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Active_Run_Modes : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeCqSocialSyncImplPublisherSyncServiceImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Cq_Social_Sync_Impl_Publisher_Sync_Service_Impl; -- overriding procedure Com_Adobe_Cq_Social_Sync_Impl_User_Sync_Listener_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Nodetypes : in Swagger.UString_Vectors.Vector; Ignorableprops : in Swagger.UString_Vectors.Vector; Ignorablenodes : in Swagger.UString_Vectors.Vector; Enabled : in Swagger.Nullable_Boolean; Distfolders : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeCqSocialSyncImplUserSyncListenerImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Cq_Social_Sync_Impl_User_Sync_Listener_Impl; -- overriding procedure Com_Adobe_Cq_Social_Translation_Impl_Translation_Service_Config_Manager (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Translate_Periodlanguage : in Swagger.Nullable_UString; Translate_Perioddisplay : in Swagger.Nullable_UString; Translate_Periodattribution : in Swagger.Nullable_Boolean; Translate_Periodcaching : in Swagger.Nullable_UString; Translate_Periodsmart_Periodrendering : in Swagger.Nullable_UString; Translate_Periodcaching_Periodduration : in Swagger.Nullable_UString; Translate_Periodsession_Periodsave_Periodinterval : in Swagger.Nullable_UString; Translate_Periodsession_Periodsave_Periodbatch_Limit : in Swagger.Nullable_UString; Result : out .Models.ComAdobeCqSocialTranslationImplTranslationServiceConfigManagerInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Cq_Social_Translation_Impl_Translation_Service_Config_Manager; -- overriding procedure Com_Adobe_Cq_Social_Translation_Impl_U_G_C_Language_Detector (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Event_Periodtopics : in Swagger.Nullable_UString; Event_Periodfilter : in Swagger.Nullable_UString; Translate_Periodlistener_Periodtype : in Swagger.UString_Vectors.Vector; Translate_Periodproperty_Periodlist : in Swagger.UString_Vectors.Vector; Pool_Size : in Swagger.Nullable_Integer; Max_Pool_Size : in Swagger.Nullable_Integer; Queue_Size : in Swagger.Nullable_Integer; Keep_Alive_Time : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeCqSocialTranslationImplUGCLanguageDetectorInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Cq_Social_Translation_Impl_U_G_C_Language_Detector; -- overriding procedure Com_Adobe_Cq_Social_Ugcbase_Dispatcher_Impl_Flush_Service_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Thread_Pool_Size : in Swagger.Nullable_Integer; Delay_Time : in Swagger.Nullable_Integer; Worker_Sleep_Time : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeCqSocialUgcbaseDispatcherImplFlushServiceImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Cq_Social_Ugcbase_Dispatcher_Impl_Flush_Service_Impl; -- overriding procedure Com_Adobe_Cq_Social_Ugcbase_Impl_Aysnc_Reverse_Replicator_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Pool_Size : in Swagger.Nullable_Integer; Max_Pool_Size : in Swagger.Nullable_Integer; Queue_Size : in Swagger.Nullable_Integer; Keep_Alive_Time : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeCqSocialUgcbaseImplAysncReverseReplicatorImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Cq_Social_Ugcbase_Impl_Aysnc_Reverse_Replicator_Impl; -- overriding procedure Com_Adobe_Cq_Social_Ugcbase_Impl_Publisher_Configuration_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Is_Primary_Publisher : in Swagger.Nullable_Boolean; Result : out .Models.ComAdobeCqSocialUgcbaseImplPublisherConfigurationImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Cq_Social_Ugcbase_Impl_Publisher_Configuration_Impl; -- overriding procedure Com_Adobe_Cq_Social_Ugcbase_Impl_Social_Utils_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Legacy_Cloud_U_G_C_Path_Mapping : in Swagger.Nullable_Boolean; Result : out .Models.ComAdobeCqSocialUgcbaseImplSocialUtilsImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Cq_Social_Ugcbase_Impl_Social_Utils_Impl; -- overriding procedure Com_Adobe_Cq_Social_Ugcbase_Moderation_Impl_Auto_Moderation_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Automoderation_Periodsequence : in Swagger.UString_Vectors.Vector; Automoderation_Periodonfailurestop : in Swagger.Nullable_Boolean; Result : out .Models.ComAdobeCqSocialUgcbaseModerationImplAutoModerationImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Cq_Social_Ugcbase_Moderation_Impl_Auto_Moderation_Impl; -- overriding procedure Com_Adobe_Cq_Social_Ugcbase_Moderation_Impl_Sentiment_Process (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Watchwords_Periodpositive : in Swagger.UString_Vectors.Vector; Watchwords_Periodnegative : in Swagger.UString_Vectors.Vector; Watchwords_Periodpath : in Swagger.Nullable_UString; Sentiment_Periodpath : in Swagger.Nullable_UString; Result : out .Models.ComAdobeCqSocialUgcbaseModerationImplSentimentProcessInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Cq_Social_Ugcbase_Moderation_Impl_Sentiment_Process; -- overriding procedure Com_Adobe_Cq_Social_Ugcbase_Security_Impl_Default_Attachment_Type_Blackli (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Default_Periodattachment_Periodtype_Periodblacklist : in Swagger.UString_Vectors.Vector; Baseline_Periodattachment_Periodtype_Periodblacklist : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeCqSocialUgcbaseSecurityImplDefaultAttachmentTypeBlackliInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Cq_Social_Ugcbase_Security_Impl_Default_Attachment_Type_Blackli; -- overriding procedure Com_Adobe_Cq_Social_Ugcbase_Security_Impl_Safer_Sling_Post_Validator_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Parameter_Periodwhitelist : in Swagger.UString_Vectors.Vector; Parameter_Periodwhitelist_Periodprefixes : in Swagger.UString_Vectors.Vector; Binary_Periodparameter_Periodwhitelist : in Swagger.UString_Vectors.Vector; Modifier_Periodwhitelist : in Swagger.UString_Vectors.Vector; Operation_Periodwhitelist : in Swagger.UString_Vectors.Vector; Operation_Periodwhitelist_Periodprefixes : in Swagger.UString_Vectors.Vector; Typehint_Periodwhitelist : in Swagger.UString_Vectors.Vector; Resourcetype_Periodwhitelist : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeCqSocialUgcbaseSecurityImplSaferSlingPostValidatorImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Cq_Social_Ugcbase_Security_Impl_Safer_Sling_Post_Validator_Impl; -- overriding procedure Com_Adobe_Cq_Social_User_Endpoints_Impl_Users_Group_From_Publish_Servlet (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Sling_Periodservlet_Periodextensions : in Swagger.Nullable_UString; Sling_Periodservlet_Periodpaths : in Swagger.Nullable_UString; Sling_Periodservlet_Periodmethods : in Swagger.Nullable_UString; Result : out .Models.ComAdobeCqSocialUserEndpointsImplUsersGroupFromPublishServletInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Cq_Social_User_Endpoints_Impl_Users_Group_From_Publish_Servlet; -- overriding procedure Com_Adobe_Cq_Social_User_Impl_Transport_Http_To_Publisher (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Enable : in Swagger.Nullable_Boolean; Agent_Periodconfiguration : in Swagger.UString_Vectors.Vector; Context_Periodpath : in Swagger.Nullable_UString; Disabled_Periodcipher_Periodsuites : in Swagger.UString_Vectors.Vector; Enabled_Periodcipher_Periodsuites : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeCqSocialUserImplTransportHttpToPublisherInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Cq_Social_User_Impl_Transport_Http_To_Publisher; -- overriding procedure Com_Adobe_Cq_Ui_Wcm_Commons_Internal_Servlets_Rte_R_T_E_Filter_Servlet_Fact (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Resource_Periodtypes : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeCqUiWcmCommonsInternalServletsRteRTEFilterServletFactInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Cq_Ui_Wcm_Commons_Internal_Servlets_Rte_R_T_E_Filter_Servlet_Fact; -- overriding procedure Com_Adobe_Cq_Upgrades_Cleanup_Impl_Upgrade_Content_Cleanup (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Delete_Periodpath_Periodregexps : in Swagger.UString_Vectors.Vector; Delete_Periodsql2_Periodquery : in Swagger.Nullable_UString; Result : out .Models.ComAdobeCqUpgradesCleanupImplUpgradeContentCleanupInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Cq_Upgrades_Cleanup_Impl_Upgrade_Content_Cleanup; -- overriding procedure Com_Adobe_Cq_Upgrades_Cleanup_Impl_Upgrade_Install_Folder_Cleanup (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Delete_Periodname_Periodregexps : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeCqUpgradesCleanupImplUpgradeInstallFolderCleanupInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Cq_Upgrades_Cleanup_Impl_Upgrade_Install_Folder_Cleanup; -- overriding procedure Com_Adobe_Cq_Wcm_Jobs_Async_Impl_Async_Delete_Config_Provider_Service (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Threshold : in Swagger.Nullable_Integer; Job_Topic_Name : in Swagger.Nullable_UString; Email_Enabled : in Swagger.Nullable_Boolean; Result : out .Models.ComAdobeCqWcmJobsAsyncImplAsyncDeleteConfigProviderServiceInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Cq_Wcm_Jobs_Async_Impl_Async_Delete_Config_Provider_Service; -- overriding procedure Com_Adobe_Cq_Wcm_Jobs_Async_Impl_Async_Job_Clean_Up_Task (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Scheduler_Periodexpression : in Swagger.Nullable_UString; Job_Periodpurge_Periodthreshold : in Swagger.Nullable_Integer; Job_Periodpurge_Periodmax_Periodjobs : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeCqWcmJobsAsyncImplAsyncJobCleanUpTaskInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Cq_Wcm_Jobs_Async_Impl_Async_Job_Clean_Up_Task; -- overriding procedure Com_Adobe_Cq_Wcm_Jobs_Async_Impl_Async_Move_Config_Provider_Service (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Threshold : in Swagger.Nullable_Integer; Job_Topic_Name : in Swagger.Nullable_UString; Email_Enabled : in Swagger.Nullable_Boolean; Result : out .Models.ComAdobeCqWcmJobsAsyncImplAsyncMoveConfigProviderServiceInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Cq_Wcm_Jobs_Async_Impl_Async_Move_Config_Provider_Service; -- overriding procedure Com_Adobe_Cq_Wcm_Jobs_Async_Impl_Async_Page_Move_Config_Provider_Service (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Threshold : in Swagger.Nullable_Integer; Job_Topic_Name : in Swagger.Nullable_UString; Email_Enabled : in Swagger.Nullable_Boolean; Result : out .Models.ComAdobeCqWcmJobsAsyncImplAsyncPageMoveConfigProviderServiceInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Cq_Wcm_Jobs_Async_Impl_Async_Page_Move_Config_Provider_Service; -- overriding procedure Com_Adobe_Cq_Wcm_Launches_Impl_Launches_Event_Handler (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Event_Periodfilter : in Swagger.Nullable_UString; Launches_Periodeventhandler_Periodthreadpool_Periodmaxsize : in Swagger.Nullable_Integer; Launches_Periodeventhandler_Periodthreadpool_Periodpriority : in Swagger.Nullable_UString; Launches_Periodeventhandler_Periodupdatelastmodification : in Swagger.Nullable_Boolean; Result : out .Models.ComAdobeCqWcmLaunchesImplLaunchesEventHandlerInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Cq_Wcm_Launches_Impl_Launches_Event_Handler; -- overriding procedure Com_Adobe_Cq_Wcm_Mobile_Qrcode_Servlet_Q_R_Code_Image_Generator (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Periodwcm_Periodqrcode_Periodservlet_Periodwhitelist : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeCqWcmMobileQrcodeServletQRCodeImageGeneratorInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Cq_Wcm_Mobile_Qrcode_Servlet_Q_R_Code_Image_Generator; -- overriding procedure Com_Adobe_Cq_Wcm_Style_Internal_Component_Style_Info_Cache_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Size : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeCqWcmStyleInternalComponentStyleInfoCacheImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Cq_Wcm_Style_Internal_Component_Style_Info_Cache_Impl; -- overriding procedure Com_Adobe_Cq_Wcm_Translation_Impl_Translation_Platform_Configuration_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Sync_Translation_State_Periodscheduling_Format : in Swagger.Nullable_UString; Scheduling_Repeat_Translation_Periodscheduling_Format : in Swagger.Nullable_UString; Sync_Translation_State_Periodlock_Timeout_In_Minutes : in Swagger.Nullable_UString; Export_Periodformat : in Swagger.Nullable_UString; Result : out .Models.ComAdobeCqWcmTranslationImplTranslationPlatformConfigurationImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Cq_Wcm_Translation_Impl_Translation_Platform_Configuration_Impl; -- overriding procedure Com_Adobe_Fd_Fp_Config_Forms_Portal_Draftsand_Submission_Config_Service (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Portal_Periodoutboxes : in Swagger.UString_Vectors.Vector; Draft_Perioddata_Periodservice : in Swagger.Nullable_UString; Draft_Periodmetadata_Periodservice : in Swagger.Nullable_UString; Submit_Perioddata_Periodservice : in Swagger.Nullable_UString; Submit_Periodmetadata_Periodservice : in Swagger.Nullable_UString; Pending_Sign_Perioddata_Periodservice : in Swagger.Nullable_UString; Pending_Sign_Periodmetadata_Periodservice : in Swagger.Nullable_UString; Result : out .Models.ComAdobeFdFpConfigFormsPortalDraftsandSubmissionConfigServiceInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Fd_Fp_Config_Forms_Portal_Draftsand_Submission_Config_Service; -- overriding procedure Com_Adobe_Fd_Fp_Config_Forms_Portal_Scheduler_Service (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Formportal_Periodinterval : in Swagger.Nullable_UString; Result : out .Models.ComAdobeFdFpConfigFormsPortalSchedulerServiceInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Fd_Fp_Config_Forms_Portal_Scheduler_Service; -- overriding procedure Com_Adobe_Forms_Common_Service_Impl_Default_Data_Provider (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Alloweddata_File_Locations : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeFormsCommonServiceImplDefaultDataProviderInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Forms_Common_Service_Impl_Default_Data_Provider; -- overriding procedure Com_Adobe_Forms_Common_Service_Impl_Forms_Common_Configuration_Service_Imp (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Temp_Storage_Config : in Swagger.Nullable_UString; Result : out .Models.ComAdobeFormsCommonServiceImplFormsCommonConfigurationServiceImpInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Forms_Common_Service_Impl_Forms_Common_Configuration_Service_Imp; -- overriding procedure Com_Adobe_Forms_Common_Servlet_Temp_Clean_Up_Task (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Scheduler_Periodexpression : in Swagger.Nullable_UString; Duration for _Temporary _Storage : in Swagger.Nullable_UString; Duration for _Anonymous _Storage : in Swagger.Nullable_UString; Result : out .Models.ComAdobeFormsCommonServletTempCleanUpTaskInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Forms_Common_Servlet_Temp_Clean_Up_Task; -- overriding procedure Com_Adobe_Granite_Acp_Platform_Platform_Servlet (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Query_Periodlimit : in Swagger.Nullable_Integer; File_Periodtype_Periodextension_Periodmap : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeGraniteAcpPlatformPlatformServletInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Granite_Acp_Platform_Platform_Servlet; -- overriding procedure Com_Adobe_Granite_Activitystreams_Impl_Activity_Manager_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Aggregate_Periodrelationships : in Swagger.UString_Vectors.Vector; Aggregate_Perioddescend_Periodvirtual : in Swagger.Nullable_Boolean; Result : out .Models.ComAdobeGraniteActivitystreamsImplActivityManagerImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Granite_Activitystreams_Impl_Activity_Manager_Impl; -- overriding procedure Com_Adobe_Granite_Analyzer_Base_System_Status_Servlet (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Disabled : in Swagger.Nullable_Boolean; Result : out .Models.ComAdobeGraniteAnalyzerBaseSystemStatusServletInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Granite_Analyzer_Base_System_Status_Servlet; -- overriding procedure Com_Adobe_Granite_Analyzer_Scripts_Compile_All_Scripts_Compiler_Servlet (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Disabled : in Swagger.Nullable_Boolean; Result : out .Models.ComAdobeGraniteAnalyzerScriptsCompileAllScriptsCompilerServletInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Granite_Analyzer_Scripts_Compile_All_Scripts_Compiler_Servlet; -- overriding procedure Com_Adobe_Granite_Apicontroller_Filter_Resolver_Hook_Factory (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Com_Periodadobe_Periodcq_Periodcdn_Periodcdn_Rewriter : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Periodcloud_Config_Periodcomponents : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Periodcloud_Config_Periodcore : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Periodcloud_Config_Periodui : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Periodcom_Periodadobe_Periodcq_Periodeditor : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Periodcom_Periodadobe_Periodcq_Periodprojects_Periodcore : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Periodcom_Periodadobe_Periodcq_Periodprojects_Periodwcm_Periodcore : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Periodcom_Periodadobe_Periodcq_Periodui_Periodcommons : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Periodcom_Periodadobe_Periodcq_Periodwcm_Periodstyle : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Periodcq_Activitymap_Integration : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Periodcq_Contexthub_Commons : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Periodcq_Dtm : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Periodcq_Healthcheck : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Periodcq_Multisite_Targeting : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Periodcq_Pre_Upgrade_Cleanup : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Periodcq_Product_Info_Provider : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Periodcq_Rest_Sites : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Periodcq_Security_Hc : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Perioddam_Periodcq_Dam_Svg_Handler : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Perioddam_Periodcq_Scene7_Imaging : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Perioddtm_Reactor_Periodcore : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Perioddtm_Reactor_Periodui : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Periodexp_Jspel_Resolver : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Periodinbox_Periodcq_Inbox : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Periodjson_Schema_Parser : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Periodmedia_Periodcq_Media_Publishing_Dps_Fp_Core : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Periodmobile_Periodcq_Mobile_Caas : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Periodmobile_Periodcq_Mobile_Index_Builder : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Periodmobile_Periodcq_Mobile_Phonegap_Build : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Periodmyspell : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Periodsample_Periodwe_Periodretail_Periodcore : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Periodscreens_Periodcom_Periodadobe_Periodcq_Periodscreens_Perioddcc : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Periodscreens_Periodcom_Periodadobe_Periodcq_Periodscreens_Periodmq_Periodcore : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Periodsocial_Periodcq_Social_As_Provider : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Periodsocial_Periodcq_Social_Badging_Basic_Impl : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Periodsocial_Periodcq_Social_Badging_Impl : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Periodsocial_Periodcq_Social_Calendar_Impl : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Periodsocial_Periodcq_Social_Content_Fragments_Impl : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Periodsocial_Periodcq_Social_Enablement_Impl : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Periodsocial_Periodcq_Social_Graph_Impl : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Periodsocial_Periodcq_Social_Ideation_Impl : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Periodsocial_Periodcq_Social_Jcr_Provider : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Periodsocial_Periodcq_Social_Members_Impl : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Periodsocial_Periodcq_Social_Ms_Provider : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Periodsocial_Periodcq_Social_Notifications_Channels_Web : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Periodsocial_Periodcq_Social_Notifications_Impl : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Periodsocial_Periodcq_Social_Rdb_Provider : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Periodsocial_Periodcq_Social_Scf_Impl : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Periodsocial_Periodcq_Social_Scoring_Basic_Impl : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Periodsocial_Periodcq_Social_Scoring_Impl : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Periodsocial_Periodcq_Social_Serviceusers_Impl : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Periodsocial_Periodcq_Social_Srp_Impl : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Periodsocial_Periodcq_Social_Ugcbase_Impl : in Swagger.Nullable_UString; Com_Periodadobe_Perioddam_Periodcq_Dam_Cfm_Impl : in Swagger.Nullable_UString; Com_Periodadobe_Periodforms_Periodfoundation_Forms_Foundation_Base : in Swagger.Nullable_UString; Com_Periodadobe_Periodgranite_Periodapicontroller : in Swagger.Nullable_UString; Com_Periodadobe_Periodgranite_Periodasset_Periodcore : in Swagger.Nullable_UString; Com_Periodadobe_Periodgranite_Periodauth_Periodsso : in Swagger.Nullable_UString; Com_Periodadobe_Periodgranite_Periodbundles_Periodhc_Periodimpl : in Swagger.Nullable_UString; Com_Periodadobe_Periodgranite_Periodcompat_Router : in Swagger.Nullable_UString; Com_Periodadobe_Periodgranite_Periodconf : in Swagger.Nullable_UString; Com_Periodadobe_Periodgranite_Periodconf_Periodui_Periodcore : in Swagger.Nullable_UString; Com_Periodadobe_Periodgranite_Periodcors : in Swagger.Nullable_UString; Com_Periodadobe_Periodgranite_Periodcrx_Explorer : in Swagger.Nullable_UString; Com_Periodadobe_Periodgranite_Periodcrxde_Lite : in Swagger.Nullable_UString; Com_Periodadobe_Periodgranite_Periodcrypto_Periodconfig : in Swagger.Nullable_UString; Com_Periodadobe_Periodgranite_Periodcrypto_Periodextension : in Swagger.Nullable_UString; Com_Periodadobe_Periodgranite_Periodcrypto_Periodfile : in Swagger.Nullable_UString; Com_Periodadobe_Periodgranite_Periodcrypto_Periodjcr : in Swagger.Nullable_UString; Com_Periodadobe_Periodgranite_Periodcsrf : in Swagger.Nullable_UString; Com_Periodadobe_Periodgranite_Perioddistribution_Periodcore : in Swagger.Nullable_UString; Com_Periodadobe_Periodgranite_Perioddropwizard_Periodmetrics : in Swagger.Nullable_UString; Com_Periodadobe_Periodgranite_Periodfrags_Periodimpl : in Swagger.Nullable_UString; Com_Periodadobe_Periodgranite_Periodgibson : in Swagger.Nullable_UString; Com_Periodadobe_Periodgranite_Periodinfocollector : in Swagger.Nullable_UString; Com_Periodadobe_Periodgranite_Periodinstaller_Periodfactory_Periodpackages : in Swagger.Nullable_UString; Com_Periodadobe_Periodgranite_Periodjetty_Periodssl : in Swagger.Nullable_UString; Com_Periodadobe_Periodgranite_Periodjobs_Periodasync : in Swagger.Nullable_UString; Com_Periodadobe_Periodgranite_Periodmaintenance_Periodoak : in Swagger.Nullable_UString; Com_Periodadobe_Periodgranite_Periodmonitoring_Periodcore : in Swagger.Nullable_UString; Com_Periodadobe_Periodgranite_Periodqueries : in Swagger.Nullable_UString; Com_Periodadobe_Periodgranite_Periodreplication_Periodhc_Periodimpl : in Swagger.Nullable_UString; Com_Periodadobe_Periodgranite_Periodrepository_Periodchecker : in Swagger.Nullable_UString; Com_Periodadobe_Periodgranite_Periodrepository_Periodhc_Periodimpl : in Swagger.Nullable_UString; Com_Periodadobe_Periodgranite_Periodrest_Periodassets : in Swagger.Nullable_UString; Com_Periodadobe_Periodgranite_Periodsecurity_Periodui : in Swagger.Nullable_UString; Com_Periodadobe_Periodgranite_Periodstartup : in Swagger.Nullable_UString; Com_Periodadobe_Periodgranite_Periodtagsoup : in Swagger.Nullable_UString; Com_Periodadobe_Periodgranite_Periodtaskmanagement_Periodcore : in Swagger.Nullable_UString; Com_Periodadobe_Periodgranite_Periodtaskmanagement_Periodworkflow : in Swagger.Nullable_UString; Com_Periodadobe_Periodgranite_Periodui_Periodclientlibs_Periodcompiler_Periodless : in Swagger.Nullable_UString; Com_Periodadobe_Periodgranite_Periodui_Periodclientlibs_Periodprocessor_Periodgcc : in Swagger.Nullable_UString; Com_Periodadobe_Periodgranite_Periodwebconsole_Periodplugins : in Swagger.Nullable_UString; Com_Periodadobe_Periodgranite_Periodworkflow_Periodconsole : in Swagger.Nullable_UString; Com_Periodadobe_Periodxmp_Periodworker_Periodfiles_Periodnative_Periodfragment_Periodlinux : in Swagger.Nullable_UString; Com_Periodadobe_Periodxmp_Periodworker_Periodfiles_Periodnative_Periodfragment_Periodmacosx : in Swagger.Nullable_UString; Com_Periodadobe_Periodxmp_Periodworker_Periodfiles_Periodnative_Periodfragment_Periodwin : in Swagger.Nullable_UString; Com_Periodday_Periodcommons_Periodosgi_Periodwrapper_Periodsimple_Jndi : in Swagger.Nullable_UString; Com_Periodday_Periodcq_Periodcq_Authhandler : in Swagger.Nullable_UString; Com_Periodday_Periodcq_Periodcq_Compat_Configupdate : in Swagger.Nullable_UString; Com_Periodday_Periodcq_Periodcq_Licensebranding : in Swagger.Nullable_UString; Com_Periodday_Periodcq_Periodcq_Notifcation_Impl : in Swagger.Nullable_UString; Com_Periodday_Periodcq_Periodcq_Replication_Audit : in Swagger.Nullable_UString; Com_Periodday_Periodcq_Periodcq_Search_Ext : in Swagger.Nullable_UString; Com_Periodday_Periodcq_Perioddam_Periodcq_Dam_Annotation_Print : in Swagger.Nullable_UString; Com_Periodday_Periodcq_Perioddam_Periodcq_Dam_Asset_Usage : in Swagger.Nullable_UString; Com_Periodday_Periodcq_Perioddam_Periodcq_Dam_S7dam : in Swagger.Nullable_UString; Com_Periodday_Periodcq_Perioddam_Periodcq_Dam_Similaritysearch : in Swagger.Nullable_UString; Com_Periodday_Periodcq_Perioddam_Perioddam_Webdav_Support : in Swagger.Nullable_UString; Com_Periodday_Periodcq_Periodpre_Upgrade_Tasks : in Swagger.Nullable_UString; Com_Periodday_Periodcq_Periodreplication_Periodextensions : in Swagger.Nullable_UString; Com_Periodday_Periodcq_Periodwcm_Periodcq_Msm_Core : in Swagger.Nullable_UString; Com_Periodday_Periodcq_Periodwcm_Periodcq_Wcm_Translation : in Swagger.Nullable_UString; Day_Commons_Jrawio : in Swagger.Nullable_UString; Org_Periodapache_Periodaries_Periodjmx_Periodwhiteboard : in Swagger.Nullable_UString; Org_Periodapache_Periodfelix_Periodhttp_Periodsslfilter : in Swagger.Nullable_UString; Org_Periodapache_Periodfelix_Periodorg_Periodapache_Periodfelix_Periodthreaddump : in Swagger.Nullable_UString; Org_Periodapache_Periodfelix_Periodwebconsole_Periodplugins_Periodds : in Swagger.Nullable_UString; Org_Periodapache_Periodfelix_Periodwebconsole_Periodplugins_Periodevent : in Swagger.Nullable_UString; Org_Periodapache_Periodfelix_Periodwebconsole_Periodplugins_Periodmemoryusage : in Swagger.Nullable_UString; Org_Periodapache_Periodfelix_Periodwebconsole_Periodplugins_Periodpackageadmin : in Swagger.Nullable_UString; Org_Periodapache_Periodjackrabbit_Periodoak_Auth_Ldap : in Swagger.Nullable_UString; Org_Periodapache_Periodjackrabbit_Periodoak_Segment_Tar : in Swagger.Nullable_UString; Org_Periodapache_Periodjackrabbit_Periodoak_Solr_Osgi : in Swagger.Nullable_UString; Org_Periodapache_Periodsling_Periodbundleresource_Periodimpl : in Swagger.Nullable_UString; Org_Periodapache_Periodsling_Periodcommons_Periodfsclassloader : in Swagger.Nullable_UString; Org_Periodapache_Periodsling_Periodcommons_Periodlog_Periodwebconsole : in Swagger.Nullable_UString; Org_Periodapache_Periodsling_Perioddatasource : in Swagger.Nullable_UString; Org_Periodapache_Periodsling_Perioddiscovery_Periodbase : in Swagger.Nullable_UString; Org_Periodapache_Periodsling_Perioddiscovery_Periodoak : in Swagger.Nullable_UString; Org_Periodapache_Periodsling_Perioddiscovery_Periodsupport : in Swagger.Nullable_UString; Org_Periodapache_Periodsling_Perioddistribution_Periodapi : in Swagger.Nullable_UString; Org_Periodapache_Periodsling_Perioddistribution_Periodcore : in Swagger.Nullable_UString; Org_Periodapache_Periodsling_Periodextensions_Periodwebconsolesecurityprovider : in Swagger.Nullable_UString; Org_Periodapache_Periodsling_Periodhc_Periodwebconsole : in Swagger.Nullable_UString; Org_Periodapache_Periodsling_Periodinstaller_Periodconsole : in Swagger.Nullable_UString; Org_Periodapache_Periodsling_Periodinstaller_Periodprovider_Periodfile : in Swagger.Nullable_UString; Org_Periodapache_Periodsling_Periodinstaller_Periodprovider_Periodjcr : in Swagger.Nullable_UString; Org_Periodapache_Periodsling_Periodjcr_Perioddavex : in Swagger.Nullable_UString; Org_Periodapache_Periodsling_Periodjcr_Periodresourcesecurity : in Swagger.Nullable_UString; Org_Periodapache_Periodsling_Periodjmx_Periodprovider : in Swagger.Nullable_UString; Org_Periodapache_Periodsling_Periodlaunchpad_Periodinstaller : in Swagger.Nullable_UString; Org_Periodapache_Periodsling_Periodmodels_Periodimpl : in Swagger.Nullable_UString; Org_Periodapache_Periodsling_Periodrepoinit_Periodparser : in Swagger.Nullable_UString; Org_Periodapache_Periodsling_Periodresource_Periodinventory : in Swagger.Nullable_UString; Org_Periodapache_Periodsling_Periodresourceresolver : in Swagger.Nullable_UString; Org_Periodapache_Periodsling_Periodscripting_Periodjavascript : in Swagger.Nullable_UString; Org_Periodapache_Periodsling_Periodscripting_Periodjst : in Swagger.Nullable_UString; Org_Periodapache_Periodsling_Periodscripting_Periodsightly_Periodjs_Periodprovider : in Swagger.Nullable_UString; Org_Periodapache_Periodsling_Periodscripting_Periodsightly_Periodmodels_Periodprovider : in Swagger.Nullable_UString; Org_Periodapache_Periodsling_Periodsecurity : in Swagger.Nullable_UString; Org_Periodapache_Periodsling_Periodservlets_Periodcompat : in Swagger.Nullable_UString; Org_Periodapache_Periodsling_Periodservlets_Periodget : in Swagger.Nullable_UString; Org_Periodapache_Periodsling_Periodstartupfilter_Perioddisabler : in Swagger.Nullable_UString; Org_Periodapache_Periodsling_Periodtracer : in Swagger.Nullable_UString; We_Periodretail_Periodclient_Periodapp_Periodcore : in Swagger.Nullable_UString; Result : out .Models.ComAdobeGraniteApicontrollerFilterResolverHookFactoryInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Granite_Apicontroller_Filter_Resolver_Hook_Factory; -- overriding procedure Com_Adobe_Granite_Auth_Cert_Impl_Client_Cert_Auth_Handler (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Path : in Swagger.Nullable_UString; Service_Periodranking : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeGraniteAuthCertImplClientCertAuthHandlerInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Granite_Auth_Cert_Impl_Client_Cert_Auth_Handler; -- overriding procedure Com_Adobe_Granite_Auth_Ims (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Configid : in Swagger.Nullable_UString; Scope : in Swagger.Nullable_UString; Result : out .Models.ComAdobeGraniteAuthImsInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Granite_Auth_Ims; -- overriding procedure Com_Adobe_Granite_Auth_Ims_Impl_External_User_Id_Mapping_Provider_Extension (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Oauth_Periodprovider_Periodid : in Swagger.Nullable_UString; Result : out .Models.ComAdobeGraniteAuthImsImplExternalUserIdMappingProviderExtensionInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Granite_Auth_Ims_Impl_External_User_Id_Mapping_Provider_Extension; -- overriding procedure Com_Adobe_Granite_Auth_Ims_Impl_I_M_S_Access_Token_Request_Customizer_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Auth_Periodims_Periodclient_Periodsecret : in Swagger.Nullable_UString; Customizer_Periodtype : in Swagger.Nullable_UString; Result : out .Models.ComAdobeGraniteAuthImsImplIMSAccessTokenRequestCustomizerImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Granite_Auth_Ims_Impl_I_M_S_Access_Token_Request_Customizer_Impl; -- overriding procedure Com_Adobe_Granite_Auth_Ims_Impl_I_M_S_Instance_Credentials_Validator (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Oauth_Periodprovider_Periodid : in Swagger.Nullable_UString; Result : out .Models.ComAdobeGraniteAuthImsImplIMSInstanceCredentialsValidatorInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Granite_Auth_Ims_Impl_I_M_S_Instance_Credentials_Validator; -- overriding procedure Com_Adobe_Granite_Auth_Ims_Impl_I_M_S_Provider_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Oauth_Periodprovider_Periodid : in Swagger.Nullable_UString; Oauth_Periodprovider_Periodims_Periodauthorization_Periodurl : in Swagger.Nullable_UString; Oauth_Periodprovider_Periodims_Periodtoken_Periodurl : in Swagger.Nullable_UString; Oauth_Periodprovider_Periodims_Periodprofile_Periodurl : in Swagger.Nullable_UString; Oauth_Periodprovider_Periodims_Periodextended_Perioddetails_Periodurls : in Swagger.UString_Vectors.Vector; Oauth_Periodprovider_Periodims_Periodvalidate_Periodtoken_Periodurl : in Swagger.Nullable_UString; Oauth_Periodprovider_Periodims_Periodsession_Periodproperty : in Swagger.Nullable_UString; Oauth_Periodprovider_Periodims_Periodservice_Periodtoken_Periodclient_Periodid : in Swagger.Nullable_UString; Oauth_Periodprovider_Periodims_Periodservice_Periodtoken_Periodclient_Periodsecret : in Swagger.Nullable_UString; Oauth_Periodprovider_Periodims_Periodservice_Periodtoken : in Swagger.Nullable_UString; Ims_Periodorg_Periodref : in Swagger.Nullable_UString; Ims_Periodgroup_Periodmapping : in Swagger.UString_Vectors.Vector; Oauth_Periodprovider_Periodims_Periodonly_Periodlicense_Periodgroup : in Swagger.Nullable_Boolean; Result : out .Models.ComAdobeGraniteAuthImsImplIMSProviderImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Granite_Auth_Ims_Impl_I_M_S_Provider_Impl; -- overriding procedure Com_Adobe_Granite_Auth_Ims_Impl_Ims_Config_Provider_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Oauth_Periodconfigmanager_Periodims_Periodconfigid : in Swagger.Nullable_UString; Ims_Periodowning_Entity : in Swagger.Nullable_UString; Aem_Periodinstance_Id : in Swagger.Nullable_UString; Ims_Periodservice_Code : in Swagger.Nullable_UString; Result : out .Models.ComAdobeGraniteAuthImsImplImsConfigProviderImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Granite_Auth_Ims_Impl_Ims_Config_Provider_Impl; -- overriding procedure Com_Adobe_Granite_Auth_Oauth_Accesstoken_Provider (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Name : in Swagger.Nullable_UString; Auth_Periodtoken_Periodprovider_Periodtitle : in Swagger.Nullable_UString; Auth_Periodtoken_Periodprovider_Perioddefault_Periodclaims : in Swagger.UString_Vectors.Vector; Auth_Periodtoken_Periodprovider_Periodendpoint : in Swagger.Nullable_UString; Auth_Periodaccess_Periodtoken_Periodrequest : in Swagger.Nullable_UString; Auth_Periodtoken_Periodprovider_Periodkeypair_Periodalias : in Swagger.Nullable_UString; Auth_Periodtoken_Periodprovider_Periodconn_Periodtimeout : in Swagger.Nullable_Integer; Auth_Periodtoken_Periodprovider_Periodso_Periodtimeout : in Swagger.Nullable_Integer; Auth_Periodtoken_Periodprovider_Periodclient_Periodid : in Swagger.Nullable_UString; Auth_Periodtoken_Periodprovider_Periodscope : in Swagger.Nullable_UString; Auth_Periodtoken_Periodprovider_Periodreuse_Periodaccess_Periodtoken : in Swagger.Nullable_Boolean; Auth_Periodtoken_Periodprovider_Periodrelaxed_Periodssl : in Swagger.Nullable_Boolean; Token_Periodrequest_Periodcustomizer_Periodtype : in Swagger.Nullable_UString; Auth_Periodtoken_Periodvalidator_Periodtype : in Swagger.Nullable_UString; Result : out .Models.ComAdobeGraniteAuthOauthAccesstokenProviderInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Granite_Auth_Oauth_Accesstoken_Provider; -- overriding procedure Com_Adobe_Granite_Auth_Oauth_Impl_Bearer_Authentication_Handler (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Path : in Swagger.Nullable_UString; Oauth_Periodclient_Ids_Periodallowed : in Swagger.UString_Vectors.Vector; Auth_Periodbearer_Periodsync_Periodims : in Swagger.Nullable_Boolean; Auth_Periodtoken_Request_Parameter : in Swagger.Nullable_UString; Oauth_Periodbearer_Periodconfigid : in Swagger.Nullable_UString; Oauth_Periodjwt_Periodsupport : in Swagger.Nullable_Boolean; Result : out .Models.ComAdobeGraniteAuthOauthImplBearerAuthenticationHandlerInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Granite_Auth_Oauth_Impl_Bearer_Authentication_Handler; -- overriding procedure Com_Adobe_Granite_Auth_Oauth_Impl_Default_Token_Validator_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Auth_Periodtoken_Periodvalidator_Periodtype : in Swagger.Nullable_UString; Result : out .Models.ComAdobeGraniteAuthOauthImplDefaultTokenValidatorImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Granite_Auth_Oauth_Impl_Default_Token_Validator_Impl; -- overriding procedure Com_Adobe_Granite_Auth_Oauth_Impl_Facebook_Provider_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Oauth_Periodprovider_Periodid : in Swagger.Nullable_UString; Result : out .Models.ComAdobeGraniteAuthOauthImplFacebookProviderImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Granite_Auth_Oauth_Impl_Facebook_Provider_Impl; -- overriding procedure Com_Adobe_Granite_Auth_Oauth_Impl_Github_Provider_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Oauth_Periodprovider_Periodid : in Swagger.Nullable_UString; Oauth_Periodprovider_Periodgithub_Periodauthorization_Periodurl : in Swagger.Nullable_UString; Oauth_Periodprovider_Periodgithub_Periodtoken_Periodurl : in Swagger.Nullable_UString; Oauth_Periodprovider_Periodgithub_Periodprofile_Periodurl : in Swagger.Nullable_UString; Result : out .Models.ComAdobeGraniteAuthOauthImplGithubProviderImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Granite_Auth_Oauth_Impl_Github_Provider_Impl; -- overriding procedure Com_Adobe_Granite_Auth_Oauth_Impl_Granite_Provider (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Oauth_Periodprovider_Periodid : in Swagger.Nullable_UString; Oauth_Periodprovider_Periodgranite_Periodauthorization_Periodurl : in Swagger.Nullable_UString; Oauth_Periodprovider_Periodgranite_Periodtoken_Periodurl : in Swagger.Nullable_UString; Oauth_Periodprovider_Periodgranite_Periodprofile_Periodurl : in Swagger.Nullable_UString; Oauth_Periodprovider_Periodgranite_Periodextended_Perioddetails_Periodurls : in Swagger.Nullable_UString; Result : out .Models.ComAdobeGraniteAuthOauthImplGraniteProviderInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Granite_Auth_Oauth_Impl_Granite_Provider; -- overriding procedure Com_Adobe_Granite_Auth_Oauth_Impl_Helper_Provider_Config_Manager (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Oauth_Periodcookie_Periodlogin_Periodtimeout : in Swagger.Nullable_UString; Oauth_Periodcookie_Periodmax_Periodage : in Swagger.Nullable_UString; Result : out .Models.ComAdobeGraniteAuthOauthImplHelperProviderConfigManagerInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Granite_Auth_Oauth_Impl_Helper_Provider_Config_Manager; -- overriding procedure Com_Adobe_Granite_Auth_Oauth_Impl_Helper_Provider_Config_Manager_Internal (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Oauth_Periodcookie_Periodlogin_Periodtimeout : in Swagger.Nullable_UString; Oauth_Periodcookie_Periodmax_Periodage : in Swagger.Nullable_UString; Result : out .Models.ComAdobeGraniteAuthOauthImplHelperProviderConfigManagerInternalInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Granite_Auth_Oauth_Impl_Helper_Provider_Config_Manager_Internal; -- overriding procedure Com_Adobe_Granite_Auth_Oauth_Impl_O_Auth_Authentication_Handler (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Path : in Swagger.Nullable_UString; Result : out .Models.ComAdobeGraniteAuthOauthImplOAuthAuthenticationHandlerInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Granite_Auth_Oauth_Impl_O_Auth_Authentication_Handler; -- overriding procedure Com_Adobe_Granite_Auth_Oauth_Impl_Twitter_Provider_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Oauth_Periodprovider_Periodid : in Swagger.Nullable_UString; Result : out .Models.ComAdobeGraniteAuthOauthImplTwitterProviderImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Granite_Auth_Oauth_Impl_Twitter_Provider_Impl; -- overriding procedure Com_Adobe_Granite_Auth_Oauth_Provider (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Oauth_Periodconfig_Periodid : in Swagger.Nullable_UString; Oauth_Periodclient_Periodid : in Swagger.Nullable_UString; Oauth_Periodclient_Periodsecret : in Swagger.Nullable_UString; Oauth_Periodscope : in Swagger.UString_Vectors.Vector; Oauth_Periodconfig_Periodprovider_Periodid : in Swagger.Nullable_UString; Oauth_Periodcreate_Periodusers : in Swagger.Nullable_Boolean; Oauth_Perioduserid_Periodproperty : in Swagger.Nullable_UString; Force_Periodstrict_Periodusername_Periodmatching : in Swagger.Nullable_Boolean; Oauth_Periodencode_Perioduserids : in Swagger.Nullable_Boolean; Oauth_Periodhash_Perioduserids : in Swagger.Nullable_Boolean; Oauth_Periodcall_Back_Url : in Swagger.Nullable_UString; Oauth_Periodaccess_Periodtoken_Periodpersist : in Swagger.Nullable_Boolean; Oauth_Periodaccess_Periodtoken_Periodpersist_Periodcookie : in Swagger.Nullable_Boolean; Oauth_Periodcsrf_Periodstate_Periodprotection : in Swagger.Nullable_Boolean; Oauth_Periodredirect_Periodrequest_Periodparams : in Swagger.Nullable_Boolean; Oauth_Periodconfig_Periodsiblings_Periodallow : in Swagger.Nullable_Boolean; Result : out .Models.ComAdobeGraniteAuthOauthProviderInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Granite_Auth_Oauth_Provider; -- overriding procedure Com_Adobe_Granite_Auth_Requirement_Impl_Default_Requirement_Handler (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Supported_Paths : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeGraniteAuthRequirementImplDefaultRequirementHandlerInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Granite_Auth_Requirement_Impl_Default_Requirement_Handler; -- overriding procedure Com_Adobe_Granite_Auth_Saml_Saml_Authentication_Handler (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Path : in Swagger.UString_Vectors.Vector; Service_Periodranking : in Swagger.Nullable_Integer; Idp_Url : in Swagger.Nullable_UString; Idp_Cert_Alias : in Swagger.Nullable_UString; Idp_Http_Redirect : in Swagger.Nullable_Boolean; Service_Provider_Entity_Id : in Swagger.Nullable_UString; Assertion_Consumer_Service_U_R_L : in Swagger.Nullable_UString; Sp_Private_Key_Alias : in Swagger.Nullable_UString; Key_Store_Password : in Swagger.Nullable_UString; Default_Redirect_Url : in Swagger.Nullable_UString; User_I_D_Attribute : in Swagger.Nullable_UString; Use_Encryption : in Swagger.Nullable_Boolean; Create_User : in Swagger.Nullable_Boolean; User_Intermediate_Path : in Swagger.Nullable_UString; Add_Group_Memberships : in Swagger.Nullable_Boolean; Group_Membership_Attribute : in Swagger.Nullable_UString; Default_Groups : in Swagger.UString_Vectors.Vector; Name_Id_Format : in Swagger.Nullable_UString; Synchronize_Attributes : in Swagger.UString_Vectors.Vector; Handle_Logout : in Swagger.Nullable_Boolean; Logout_Url : in Swagger.Nullable_UString; Clock_Tolerance : in Swagger.Nullable_Integer; Digest_Method : in Swagger.Nullable_UString; Signature_Method : in Swagger.Nullable_UString; Identity_Sync_Type : in Swagger.Nullable_UString; Idp_Identifier : in Swagger.Nullable_UString; Result : out .Models.ComAdobeGraniteAuthSamlSamlAuthenticationHandlerInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Granite_Auth_Saml_Saml_Authentication_Handler; -- overriding procedure Com_Adobe_Granite_Auth_Sso_Impl_Sso_Authentication_Handler (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Path : in Swagger.Nullable_UString; Service_Periodranking : in Swagger.Nullable_Integer; Jaas_Periodcontrol_Flag : in Swagger.Nullable_UString; Jaas_Periodrealm_Name : in Swagger.Nullable_UString; Jaas_Periodranking : in Swagger.Nullable_Integer; Headers : in Swagger.UString_Vectors.Vector; Cookies : in Swagger.UString_Vectors.Vector; Parameters : in Swagger.UString_Vectors.Vector; Usermap : in Swagger.UString_Vectors.Vector; Format : in Swagger.Nullable_UString; Trusted_Credentials_Attribute : in Swagger.Nullable_UString; Result : out .Models.ComAdobeGraniteAuthSsoImplSsoAuthenticationHandlerInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Granite_Auth_Sso_Impl_Sso_Authentication_Handler; -- overriding procedure Com_Adobe_Granite_Bundles_Hc_Impl_Code_Cache_Health_Check (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Hc_Periodtags : in Swagger.UString_Vectors.Vector; Minimum_Periodcode_Periodcache_Periodsize : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeGraniteBundlesHcImplCodeCacheHealthCheckInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Granite_Bundles_Hc_Impl_Code_Cache_Health_Check; -- overriding procedure Com_Adobe_Granite_Bundles_Hc_Impl_Crxde_Support_Bundle_Health_Check (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Hc_Periodtags : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeGraniteBundlesHcImplCrxdeSupportBundleHealthCheckInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Granite_Bundles_Hc_Impl_Crxde_Support_Bundle_Health_Check; -- overriding procedure Com_Adobe_Granite_Bundles_Hc_Impl_Dav_Ex_Bundle_Health_Check (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Hc_Periodtags : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeGraniteBundlesHcImplDavExBundleHealthCheckInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Granite_Bundles_Hc_Impl_Dav_Ex_Bundle_Health_Check; -- overriding procedure Com_Adobe_Granite_Bundles_Hc_Impl_Inactive_Bundles_Health_Check (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Hc_Periodtags : in Swagger.UString_Vectors.Vector; Ignored_Periodbundles : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeGraniteBundlesHcImplInactiveBundlesHealthCheckInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Granite_Bundles_Hc_Impl_Inactive_Bundles_Health_Check; -- overriding procedure Com_Adobe_Granite_Bundles_Hc_Impl_Jobs_Health_Check (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Hc_Periodtags : in Swagger.UString_Vectors.Vector; Max_Periodqueued_Periodjobs : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeGraniteBundlesHcImplJobsHealthCheckInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Granite_Bundles_Hc_Impl_Jobs_Health_Check; -- overriding procedure Com_Adobe_Granite_Bundles_Hc_Impl_Sling_Get_Servlet_Health_Check (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Hc_Periodtags : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeGraniteBundlesHcImplSlingGetServletHealthCheckInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Granite_Bundles_Hc_Impl_Sling_Get_Servlet_Health_Check; -- overriding procedure Com_Adobe_Granite_Bundles_Hc_Impl_Sling_Java_Script_Handler_Health_Check (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Hc_Periodtags : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeGraniteBundlesHcImplSlingJavaScriptHandlerHealthCheckInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Granite_Bundles_Hc_Impl_Sling_Java_Script_Handler_Health_Check; -- overriding procedure Com_Adobe_Granite_Bundles_Hc_Impl_Sling_Jsp_Script_Handler_Health_Check (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Hc_Periodtags : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeGraniteBundlesHcImplSlingJspScriptHandlerHealthCheckInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Granite_Bundles_Hc_Impl_Sling_Jsp_Script_Handler_Health_Check; -- overriding procedure Com_Adobe_Granite_Bundles_Hc_Impl_Sling_Referrer_Filter_Health_Check (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Hc_Periodtags : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeGraniteBundlesHcImplSlingReferrerFilterHealthCheckInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Granite_Bundles_Hc_Impl_Sling_Referrer_Filter_Health_Check; -- overriding procedure Com_Adobe_Granite_Bundles_Hc_Impl_Web_Dav_Bundle_Health_Check (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Hc_Periodtags : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeGraniteBundlesHcImplWebDavBundleHealthCheckInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Granite_Bundles_Hc_Impl_Web_Dav_Bundle_Health_Check; -- overriding procedure Com_Adobe_Granite_Comments_Internal_Comment_Replication_Content_Filter_Fac (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Replicate_Periodcomment_Periodresource_Types : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeGraniteCommentsInternalCommentReplicationContentFilterFacInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Granite_Comments_Internal_Comment_Replication_Content_Filter_Fac; -- overriding procedure Com_Adobe_Granite_Compatrouter_Impl_Compat_Switching_Service_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Compatgroups : in Swagger.UString_Vectors.Vector; Enabled : in Swagger.Nullable_Boolean; Result : out .Models.ComAdobeGraniteCompatrouterImplCompatSwitchingServiceImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Granite_Compatrouter_Impl_Compat_Switching_Service_Impl; -- overriding procedure Com_Adobe_Granite_Compatrouter_Impl_Routing_Config (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Id : in Swagger.Nullable_UString; Compat_Path : in Swagger.Nullable_UString; New_Path : in Swagger.Nullable_UString; Result : out .Models.ComAdobeGraniteCompatrouterImplRoutingConfigInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Granite_Compatrouter_Impl_Routing_Config; -- overriding procedure Com_Adobe_Granite_Compatrouter_Impl_Switch_Mapping_Config (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Group : in Swagger.Nullable_UString; Ids : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeGraniteCompatrouterImplSwitchMappingConfigInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Granite_Compatrouter_Impl_Switch_Mapping_Config; -- overriding procedure Com_Adobe_Granite_Conf_Impl_Runtime_Aware_Configuration_Resource_Resolving (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Enabled : in Swagger.Nullable_Boolean; Fallback_Paths : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeGraniteConfImplRuntimeAwareConfigurationResourceResolvingInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Granite_Conf_Impl_Runtime_Aware_Configuration_Resource_Resolving; -- overriding procedure Com_Adobe_Granite_Contexthub_Impl_Context_Hub_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Com_Periodadobe_Periodgranite_Periodcontexthub_Periodsilent_Mode : in Swagger.Nullable_Boolean; Com_Periodadobe_Periodgranite_Periodcontexthub_Periodshow_Ui : in Swagger.Nullable_Boolean; Result : out .Models.ComAdobeGraniteContexthubImplContextHubImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Granite_Contexthub_Impl_Context_Hub_Impl; -- overriding procedure Com_Adobe_Granite_Cors_Impl_C_O_R_S_Policy_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Alloworigin : in Swagger.UString_Vectors.Vector; Alloworiginregexp : in Swagger.UString_Vectors.Vector; Allowedpaths : in Swagger.UString_Vectors.Vector; Exposedheaders : in Swagger.UString_Vectors.Vector; Maxage : in Swagger.Nullable_Integer; Supportedheaders : in Swagger.UString_Vectors.Vector; Supportedmethods : in Swagger.UString_Vectors.Vector; Supportscredentials : in Swagger.Nullable_Boolean; Result : out .Models.ComAdobeGraniteCorsImplCORSPolicyImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Granite_Cors_Impl_C_O_R_S_Policy_Impl; -- overriding procedure Com_Adobe_Granite_Csrf_Impl_C_S_R_F_Filter (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Filter_Periodmethods : in Swagger.UString_Vectors.Vector; Filter_Periodenable_Periodsafe_Perioduser_Periodagents : in Swagger.Nullable_Boolean; Filter_Periodsafe_Perioduser_Periodagents : in Swagger.UString_Vectors.Vector; Filter_Periodexcluded_Periodpaths : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeGraniteCsrfImplCSRFFilterInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Granite_Csrf_Impl_C_S_R_F_Filter; -- overriding procedure Com_Adobe_Granite_Csrf_Impl_C_S_R_F_Servlet (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Csrf_Periodtoken_Periodexpires_Periodin : in Swagger.Nullable_Integer; Sling_Periodauth_Periodrequirements : in Swagger.Nullable_UString; Result : out .Models.ComAdobeGraniteCsrfImplCSRFServletInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Granite_Csrf_Impl_C_S_R_F_Servlet; -- overriding procedure Com_Adobe_Granite_Distribution_Core_Impl_Crypto_Distribution_Transport_Se (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Name : in Swagger.Nullable_UString; Username : in Swagger.Nullable_UString; Encrypted_Password : in Swagger.Nullable_UString; Result : out .Models.ComAdobeGraniteDistributionCoreImplCryptoDistributionTransportSeInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Granite_Distribution_Core_Impl_Crypto_Distribution_Transport_Se; -- overriding procedure Com_Adobe_Granite_Distribution_Core_Impl_Diff_Diff_Changes_Observer (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Enabled : in Swagger.Nullable_Boolean; Agent_Name : in Swagger.Nullable_UString; Diff_Path : in Swagger.Nullable_UString; Observed_Path : in Swagger.Nullable_UString; Service_Name : in Swagger.Nullable_UString; Property_Names : in Swagger.Nullable_UString; Distribution_Delay : in Swagger.Nullable_Integer; Service_User_Periodtarget : in Swagger.Nullable_UString; Result : out .Models.ComAdobeGraniteDistributionCoreImplDiffDiffChangesObserverInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Granite_Distribution_Core_Impl_Diff_Diff_Changes_Observer; -- overriding procedure Com_Adobe_Granite_Distribution_Core_Impl_Diff_Diff_Event_Listener (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Diff_Path : in Swagger.Nullable_UString; Service_Name : in Swagger.Nullable_UString; Service_User_Periodtarget : in Swagger.Nullable_UString; Result : out .Models.ComAdobeGraniteDistributionCoreImplDiffDiffEventListenerInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Granite_Distribution_Core_Impl_Diff_Diff_Event_Listener; -- overriding procedure Com_Adobe_Granite_Distribution_Core_Impl_Distribution_To_Replication_Even (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Importer_Periodname : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeGraniteDistributionCoreImplDistributionToReplicationEvenInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Granite_Distribution_Core_Impl_Distribution_To_Replication_Even; -- overriding procedure Com_Adobe_Granite_Distribution_Core_Impl_Replication_Adapters_Replicat (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Provider_Name : in Swagger.Nullable_UString; Forward_Periodrequests : in Swagger.Nullable_Boolean; Result : out .Models.ComAdobeGraniteDistributionCoreImplReplicationAdaptersReplicatInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Granite_Distribution_Core_Impl_Replication_Adapters_Replicat; -- overriding procedure Com_Adobe_Granite_Distribution_Core_Impl_Replication_Distribution_Trans (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Forward_Periodrequests : in Swagger.Nullable_Boolean; Result : out .Models.ComAdobeGraniteDistributionCoreImplReplicationDistributionTransInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Granite_Distribution_Core_Impl_Replication_Distribution_Trans; -- overriding procedure Com_Adobe_Granite_Distribution_Core_Impl_Transport_Access_Token_Distribu (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Name : in Swagger.Nullable_UString; Service_Name : in Swagger.Nullable_UString; User_Id : in Swagger.Nullable_UString; Access_Token_Provider_Periodtarget : in Swagger.Nullable_UString; Result : out .Models.ComAdobeGraniteDistributionCoreImplTransportAccessTokenDistribuInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Granite_Distribution_Core_Impl_Transport_Access_Token_Distribu; -- overriding procedure Com_Adobe_Granite_Frags_Impl_Check_Http_Header_Flag (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Feature_Periodname : in Swagger.Nullable_UString; Feature_Perioddescription : in Swagger.Nullable_UString; Http_Periodheader_Periodname : in Swagger.Nullable_UString; Http_Periodheader_Periodvaluepattern : in Swagger.Nullable_UString; Result : out .Models.ComAdobeGraniteFragsImplCheckHttpHeaderFlagInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Granite_Frags_Impl_Check_Http_Header_Flag; -- overriding procedure Com_Adobe_Granite_Frags_Impl_Random_Feature (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Feature_Periodname : in Swagger.Nullable_UString; Feature_Perioddescription : in Swagger.Nullable_UString; Active_Periodpercentage : in Swagger.Nullable_UString; Cookie_Periodname : in Swagger.Nullable_UString; Cookie_Periodmax_Age : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeGraniteFragsImplRandomFeatureInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Granite_Frags_Impl_Random_Feature; -- overriding procedure Com_Adobe_Granite_Httpcache_File_File_Cache_Store (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Com_Periodadobe_Periodgranite_Periodhttpcache_Periodfile_Perioddocument_Root : in Swagger.Nullable_UString; Com_Periodadobe_Periodgranite_Periodhttpcache_Periodfile_Periodinclude_Host : in Swagger.Nullable_UString; Result : out .Models.ComAdobeGraniteHttpcacheFileFileCacheStoreInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Granite_Httpcache_File_File_Cache_Store; -- overriding procedure Com_Adobe_Granite_Httpcache_Impl_Outer_Cache_Filter (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Com_Periodadobe_Periodgranite_Periodhttpcache_Periodurl_Periodpaths : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeGraniteHttpcacheImplOuterCacheFilterInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Granite_Httpcache_Impl_Outer_Cache_Filter; -- overriding procedure Com_Adobe_Granite_I18n_Impl_Bundle_Pseudo_Translations (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Pseudo_Periodpatterns : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeGraniteI18nImplBundlePseudoTranslationsInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Granite_I18n_Impl_Bundle_Pseudo_Translations; -- overriding procedure Com_Adobe_Granite_I18n_Impl_Preferences_Locale_Resolver_Service (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Security_Periodpreferences_Periodname : in Swagger.Nullable_UString; Result : out .Models.ComAdobeGraniteI18nImplPreferencesLocaleResolverServiceInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Granite_I18n_Impl_Preferences_Locale_Resolver_Service; -- overriding procedure Com_Adobe_Granite_Infocollector_Info_Collector (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Granite_Periodinfocollector_Periodinclude_Thread_Dumps : in Swagger.Nullable_Boolean; Granite_Periodinfocollector_Periodinclude_Heap_Dump : in Swagger.Nullable_Boolean; Result : out .Models.ComAdobeGraniteInfocollectorInfoCollectorInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Granite_Infocollector_Info_Collector; -- overriding procedure Com_Adobe_Granite_Jetty_Ssl_Internal_Granite_Ssl_Connector_Factory (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Com_Periodadobe_Periodgranite_Periodjetty_Periodssl_Periodport : in Swagger.Nullable_Integer; Com_Periodadobe_Periodgranite_Periodjetty_Periodssl_Periodkeystore_Perioduser : in Swagger.Nullable_UString; Com_Periodadobe_Periodgranite_Periodjetty_Periodssl_Periodkeystore_Periodpassword : in Swagger.Nullable_UString; Com_Periodadobe_Periodgranite_Periodjetty_Periodssl_Periodciphersuites_Periodexcluded : in Swagger.UString_Vectors.Vector; Com_Periodadobe_Periodgranite_Periodjetty_Periodssl_Periodciphersuites_Periodincluded : in Swagger.UString_Vectors.Vector; Com_Periodadobe_Periodgranite_Periodjetty_Periodssl_Periodclient_Periodcertificate : in Swagger.Nullable_UString; Result : out .Models.ComAdobeGraniteJettySslInternalGraniteSslConnectorFactoryInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Granite_Jetty_Ssl_Internal_Granite_Ssl_Connector_Factory; -- overriding procedure Com_Adobe_Granite_License_Impl_License_Check_Filter (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Check_Internval : in Swagger.Nullable_Integer; Exclude_Ids : in Swagger.UString_Vectors.Vector; Encrypt_Ping : in Swagger.Nullable_Boolean; Result : out .Models.ComAdobeGraniteLicenseImplLicenseCheckFilterInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Granite_License_Impl_License_Check_Filter; -- overriding procedure Com_Adobe_Granite_Logging_Impl_Log_Analyser_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Messages_Periodqueue_Periodsize : in Swagger.Nullable_Integer; Logger_Periodconfig : in Swagger.UString_Vectors.Vector; Messages_Periodsize : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeGraniteLoggingImplLogAnalyserImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Granite_Logging_Impl_Log_Analyser_Impl; -- overriding procedure Com_Adobe_Granite_Logging_Impl_Log_Error_Health_Check (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Hc_Periodtags : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeGraniteLoggingImplLogErrorHealthCheckInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Granite_Logging_Impl_Log_Error_Health_Check; -- overriding procedure Com_Adobe_Granite_Maintenance_Crx_Impl_Data_Store_Garbage_Collection_Task (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Granite_Periodmaintenance_Periodmandatory : in Swagger.Nullable_Boolean; Job_Periodtopics : in Swagger.Nullable_UString; Result : out .Models.ComAdobeGraniteMaintenanceCrxImplDataStoreGarbageCollectionTaskInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Granite_Maintenance_Crx_Impl_Data_Store_Garbage_Collection_Task; -- overriding procedure Com_Adobe_Granite_Maintenance_Crx_Impl_Lucene_Binaries_Cleanup_Task (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Job_Periodtopics : in Swagger.Nullable_UString; Result : out .Models.ComAdobeGraniteMaintenanceCrxImplLuceneBinariesCleanupTaskInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Granite_Maintenance_Crx_Impl_Lucene_Binaries_Cleanup_Task; -- overriding procedure Com_Adobe_Granite_Maintenance_Crx_Impl_Revision_Cleanup_Task (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Full_Periodgc_Perioddays : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeGraniteMaintenanceCrxImplRevisionCleanupTaskInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Granite_Maintenance_Crx_Impl_Revision_Cleanup_Task; -- overriding procedure Com_Adobe_Granite_Monitoring_Impl_Script_Config_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Script_Periodfilename : in Swagger.Nullable_UString; Script_Perioddisplay : in Swagger.Nullable_UString; Script_Periodpath : in Swagger.Nullable_UString; Script_Periodplatform : in Swagger.UString_Vectors.Vector; Interval : in Swagger.Nullable_Integer; Jmxdomain : in Swagger.Nullable_UString; Result : out .Models.ComAdobeGraniteMonitoringImplScriptConfigImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Granite_Monitoring_Impl_Script_Config_Impl; -- overriding procedure Com_Adobe_Granite_Oauth_Server_Auth_Impl_O_Auth2_Server_Authentication_Han (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Path : in Swagger.Nullable_UString; Jaas_Periodcontrol_Flag : in Swagger.Nullable_UString; Jaas_Periodrealm_Name : in Swagger.Nullable_UString; Jaas_Periodranking : in Swagger.Nullable_Integer; Oauth_Periodoffline_Periodvalidation : in Swagger.Nullable_Boolean; Result : out .Models.ComAdobeGraniteOauthServerAuthImplOAuth2ServerAuthenticationHanInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Granite_Oauth_Server_Auth_Impl_O_Auth2_Server_Authentication_Han; -- overriding procedure Com_Adobe_Granite_Oauth_Server_Impl_Access_Token_Cleanup_Task (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Scheduler_Periodexpression : in Swagger.Nullable_UString; Result : out .Models.ComAdobeGraniteOauthServerImplAccessTokenCleanupTaskInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Granite_Oauth_Server_Impl_Access_Token_Cleanup_Task; -- overriding procedure Com_Adobe_Granite_Oauth_Server_Impl_O_Auth2_Client_Revocation_Servlet (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Oauth_Periodclient_Periodrevocation_Periodactive : in Swagger.Nullable_Boolean; Result : out .Models.ComAdobeGraniteOauthServerImplOAuth2ClientRevocationServletInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Granite_Oauth_Server_Impl_O_Auth2_Client_Revocation_Servlet; -- overriding procedure Com_Adobe_Granite_Oauth_Server_Impl_O_Auth2_Revocation_Endpoint_Servlet (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Sling_Periodservlet_Periodpaths : in Swagger.Nullable_UString; Oauth_Periodrevocation_Periodactive : in Swagger.Nullable_Boolean; Result : out .Models.ComAdobeGraniteOauthServerImplOAuth2RevocationEndpointServletInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Granite_Oauth_Server_Impl_O_Auth2_Revocation_Endpoint_Servlet; -- overriding procedure Com_Adobe_Granite_Oauth_Server_Impl_O_Auth2_Token_Endpoint_Servlet (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Oauth_Periodissuer : in Swagger.Nullable_UString; Oauth_Periodaccess_Periodtoken_Periodexpires_Periodin : in Swagger.Nullable_UString; Osgi_Periodhttp_Periodwhiteboard_Periodservlet_Periodpattern : in Swagger.Nullable_UString; Osgi_Periodhttp_Periodwhiteboard_Periodcontext_Periodselect : in Swagger.Nullable_UString; Result : out .Models.ComAdobeGraniteOauthServerImplOAuth2TokenEndpointServletInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Granite_Oauth_Server_Impl_O_Auth2_Token_Endpoint_Servlet; -- overriding procedure Com_Adobe_Granite_Oauth_Server_Impl_O_Auth2_Token_Revocation_Servlet (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Oauth_Periodtoken_Periodrevocation_Periodactive : in Swagger.Nullable_Boolean; Result : out .Models.ComAdobeGraniteOauthServerImplOAuth2TokenRevocationServletInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Granite_Oauth_Server_Impl_O_Auth2_Token_Revocation_Servlet; -- overriding procedure Com_Adobe_Granite_Offloading_Impl_Offloading_Configurator (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Offloading_Periodtransporter : in Swagger.Nullable_UString; Offloading_Periodcleanup_Periodpayload : in Swagger.Nullable_Boolean; Result : out .Models.ComAdobeGraniteOffloadingImplOffloadingConfiguratorInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Granite_Offloading_Impl_Offloading_Configurator; -- overriding procedure Com_Adobe_Granite_Offloading_Impl_Offloading_Job_Cloner (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Offloading_Periodjobcloner_Periodenabled : in Swagger.Nullable_Boolean; Result : out .Models.ComAdobeGraniteOffloadingImplOffloadingJobClonerInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Granite_Offloading_Impl_Offloading_Job_Cloner; -- overriding procedure Com_Adobe_Granite_Offloading_Impl_Offloading_Job_Offloader (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Offloading_Periodoffloader_Periodenabled : in Swagger.Nullable_Boolean; Result : out .Models.ComAdobeGraniteOffloadingImplOffloadingJobOffloaderInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Granite_Offloading_Impl_Offloading_Job_Offloader; -- overriding procedure Com_Adobe_Granite_Offloading_Impl_Transporter_Offloading_Agent_Manager (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Offloading_Periodagentmanager_Periodenabled : in Swagger.Nullable_Boolean; Result : out .Models.ComAdobeGraniteOffloadingImplTransporterOffloadingAgentManagerInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Granite_Offloading_Impl_Transporter_Offloading_Agent_Manager; -- overriding procedure Com_Adobe_Granite_Offloading_Impl_Transporter_Offloading_Default_Transpo (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Default_Periodtransport_Periodagent_To_Worker_Periodprefix : in Swagger.Nullable_UString; Default_Periodtransport_Periodagent_To_Master_Periodprefix : in Swagger.Nullable_UString; Default_Periodtransport_Periodinput_Periodpackage : in Swagger.Nullable_UString; Default_Periodtransport_Periodoutput_Periodpackage : in Swagger.Nullable_UString; Default_Periodtransport_Periodreplication_Periodsynchronous : in Swagger.Nullable_Boolean; Default_Periodtransport_Periodcontentpackage : in Swagger.Nullable_Boolean; Offloading_Periodtransporter_Perioddefault_Periodenabled : in Swagger.Nullable_Boolean; Result : out .Models.ComAdobeGraniteOffloadingImplTransporterOffloadingDefaultTranspoInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Granite_Offloading_Impl_Transporter_Offloading_Default_Transpo; -- overriding procedure Com_Adobe_Granite_Omnisearch_Impl_Core_Omni_Search_Service_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Omnisearch_Periodsuggestion_Periodrequiretext_Periodmin : in Swagger.Nullable_Integer; Omnisearch_Periodsuggestion_Periodspellcheck_Periodrequire : in Swagger.Nullable_Boolean; Result : out .Models.ComAdobeGraniteOmnisearchImplCoreOmniSearchServiceImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Granite_Omnisearch_Impl_Core_Omni_Search_Service_Impl; -- overriding procedure Com_Adobe_Granite_Optout_Impl_Opt_Out_Service_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Optout_Periodcookies : in Swagger.UString_Vectors.Vector; Optout_Periodheaders : in Swagger.UString_Vectors.Vector; Optout_Periodwhitelist_Periodcookies : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeGraniteOptoutImplOptOutServiceImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Granite_Optout_Impl_Opt_Out_Service_Impl; -- overriding procedure Com_Adobe_Granite_Queries_Impl_Hc_Async_Index_Health_Check (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Indexing_Periodcritical_Periodthreshold : in Swagger.Nullable_Integer; Indexing_Periodwarn_Periodthreshold : in Swagger.Nullable_Integer; Hc_Periodtags : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeGraniteQueriesImplHcAsyncIndexHealthCheckInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Granite_Queries_Impl_Hc_Async_Index_Health_Check; -- overriding procedure Com_Adobe_Granite_Queries_Impl_Hc_Large_Index_Health_Check (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Large_Periodindex_Periodcritical_Periodthreshold : in Swagger.Nullable_Integer; Large_Periodindex_Periodwarn_Periodthreshold : in Swagger.Nullable_Integer; Hc_Periodtags : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeGraniteQueriesImplHcLargeIndexHealthCheckInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Granite_Queries_Impl_Hc_Large_Index_Health_Check; -- overriding procedure Com_Adobe_Granite_Queries_Impl_Hc_Queries_Status_Health_Check (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Hc_Periodtags : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeGraniteQueriesImplHcQueriesStatusHealthCheckInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Granite_Queries_Impl_Hc_Queries_Status_Health_Check; -- overriding procedure Com_Adobe_Granite_Queries_Impl_Hc_Query_Health_Check_Metrics (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Get_Period : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeGraniteQueriesImplHcQueryHealthCheckMetricsInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Granite_Queries_Impl_Hc_Query_Health_Check_Metrics; -- overriding procedure Com_Adobe_Granite_Queries_Impl_Hc_Query_Limits_Health_Check (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Hc_Periodtags : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeGraniteQueriesImplHcQueryLimitsHealthCheckInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Granite_Queries_Impl_Hc_Query_Limits_Health_Check; -- overriding procedure Com_Adobe_Granite_Replication_Hc_Impl_Replication_Queue_Health_Check (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Number_Periodof_Periodretries_Periodallowed : in Swagger.Nullable_Integer; Hc_Periodtags : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeGraniteReplicationHcImplReplicationQueueHealthCheckInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Granite_Replication_Hc_Impl_Replication_Queue_Health_Check; -- overriding procedure Com_Adobe_Granite_Replication_Hc_Impl_Replication_Transport_Users_Health_C (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Hc_Periodtags : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeGraniteReplicationHcImplReplicationTransportUsersHealthCInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Granite_Replication_Hc_Impl_Replication_Transport_Users_Health_C; -- overriding procedure Com_Adobe_Granite_Repository_Hc_Impl_Authorizable_Node_Name_Health_Check (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Hc_Periodtags : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeGraniteRepositoryHcImplAuthorizableNodeNameHealthCheckInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Granite_Repository_Hc_Impl_Authorizable_Node_Name_Health_Check; -- overriding procedure Com_Adobe_Granite_Repository_Hc_Impl_Content_Sling_Sling_Content_Health_C (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Hc_Periodtags : in Swagger.UString_Vectors.Vector; Exclude_Periodsearch_Periodpath : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeGraniteRepositoryHcImplContentSlingSlingContentHealthCInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Granite_Repository_Hc_Impl_Content_Sling_Sling_Content_Health_C; -- overriding procedure Com_Adobe_Granite_Repository_Hc_Impl_Continuous_R_G_C_Health_Check (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Hc_Periodtags : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeGraniteRepositoryHcImplContinuousRGCHealthCheckInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Granite_Repository_Hc_Impl_Continuous_R_G_C_Health_Check; -- overriding procedure Com_Adobe_Granite_Repository_Hc_Impl_Default_Access_User_Profile_Health_Che (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Hc_Periodtags : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeGraniteRepositoryHcImplDefaultAccessUserProfileHealthCheInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Granite_Repository_Hc_Impl_Default_Access_User_Profile_Health_Che; -- overriding procedure Com_Adobe_Granite_Repository_Hc_Impl_Default_Logins_Health_Check (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Hc_Periodtags : in Swagger.UString_Vectors.Vector; Account_Periodlogins : in Swagger.UString_Vectors.Vector; Console_Periodlogins : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeGraniteRepositoryHcImplDefaultLoginsHealthCheckInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Granite_Repository_Hc_Impl_Default_Logins_Health_Check; -- overriding procedure Com_Adobe_Granite_Repository_Hc_Impl_Disk_Space_Health_Check (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Hc_Periodtags : in Swagger.UString_Vectors.Vector; Disk_Periodspace_Periodwarn_Periodthreshold : in Swagger.Nullable_Integer; Disk_Periodspace_Perioderror_Periodthreshold : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeGraniteRepositoryHcImplDiskSpaceHealthCheckInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Granite_Repository_Hc_Impl_Disk_Space_Health_Check; -- overriding procedure Com_Adobe_Granite_Repository_Hc_Impl_Observation_Queue_Length_Health_Check (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Hc_Periodtags : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeGraniteRepositoryHcImplObservationQueueLengthHealthCheckInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Granite_Repository_Hc_Impl_Observation_Queue_Length_Health_Check; -- overriding procedure Com_Adobe_Granite_Repository_Impl_Commit_Stats_Config (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Enabled : in Swagger.Nullable_Boolean; Interval_Seconds : in Swagger.Nullable_Integer; Commits_Per_Interval_Threshold : in Swagger.Nullable_Integer; Max_Location_Length : in Swagger.Nullable_Integer; Max_Details_Shown : in Swagger.Nullable_Integer; Min_Details_Percentage : in Swagger.Nullable_Integer; Thread_Matchers : in Swagger.UString_Vectors.Vector; Max_Greedy_Depth : in Swagger.Nullable_Integer; Greedy_Stack_Matchers : in Swagger.Nullable_UString; Stack_Filters : in Swagger.UString_Vectors.Vector; Stack_Matchers : in Swagger.UString_Vectors.Vector; Stack_Categorizers : in Swagger.UString_Vectors.Vector; Stack_Shorteners : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeGraniteRepositoryImplCommitStatsConfigInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Granite_Repository_Impl_Commit_Stats_Config; -- overriding procedure Com_Adobe_Granite_Repository_Service_User_Configuration (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Service_Periodranking : in Swagger.Nullable_Integer; Serviceusers_Periodsimple_Subject_Population : in Swagger.Nullable_Boolean; Serviceusers_Periodlist : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeGraniteRepositoryServiceUserConfigurationInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Granite_Repository_Service_User_Configuration; -- overriding procedure Com_Adobe_Granite_Requests_Logging_Impl_Hc_Requests_Status_Health_Check_Im (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Hc_Periodtags : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeGraniteRequestsLoggingImplHcRequestsStatusHealthCheckImInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Granite_Requests_Logging_Impl_Hc_Requests_Status_Health_Check_Im; -- overriding procedure Com_Adobe_Granite_Resourcestatus_Impl_Composite_Status_Type (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Name : in Swagger.Nullable_UString; Types : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeGraniteResourcestatusImplCompositeStatusTypeInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Granite_Resourcestatus_Impl_Composite_Status_Type; -- overriding procedure Com_Adobe_Granite_Resourcestatus_Impl_Status_Resource_Provider_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Provider_Periodroot : in Swagger.Nullable_UString; Result : out .Models.ComAdobeGraniteResourcestatusImplStatusResourceProviderImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Granite_Resourcestatus_Impl_Status_Resource_Provider_Impl; -- overriding procedure Com_Adobe_Granite_Rest_Assets_Impl_Asset_Content_Disposition_Filter (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Mime_Periodallow_Empty : in Swagger.Nullable_Boolean; Mime_Periodallowed : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeGraniteRestAssetsImplAssetContentDispositionFilterInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Granite_Rest_Assets_Impl_Asset_Content_Disposition_Filter; -- overriding procedure Com_Adobe_Granite_Rest_Impl_Api_Endpoint_Resource_Provider_Factory_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Provider_Periodroots : in Swagger.Nullable_UString; Result : out .Models.ComAdobeGraniteRestImplApiEndpointResourceProviderFactoryImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Granite_Rest_Impl_Api_Endpoint_Resource_Provider_Factory_Impl; -- overriding procedure Com_Adobe_Granite_Rest_Impl_Servlet_Default_G_E_T_Servlet (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Default_Periodlimit : in Swagger.Nullable_Integer; Use_Periodabsolute_Perioduri : in Swagger.Nullable_Boolean; Result : out .Models.ComAdobeGraniteRestImplServletDefaultGETServletInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Granite_Rest_Impl_Servlet_Default_G_E_T_Servlet; -- overriding procedure Com_Adobe_Granite_Security_User_Ui_Internal_Servlets_S_S_L_Configuration_S (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Hc_Periodtags : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeGraniteSecurityUserUiInternalServletsSSLConfigurationSInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Granite_Security_User_Ui_Internal_Servlets_S_S_L_Configuration_S; -- overriding procedure Com_Adobe_Granite_Security_User_User_Properties_Service (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Adapter_Periodcondition : in Swagger.Nullable_UString; Granite_Perioduserproperties_Periodnodetypes : in Swagger.UString_Vectors.Vector; Granite_Perioduserproperties_Periodresourcetypes : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeGraniteSecurityUserUserPropertiesServiceInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Granite_Security_User_User_Properties_Service; -- overriding procedure Com_Adobe_Granite_Socialgraph_Impl_Social_Graph_Factory_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Group2member_Periodrelationship_Periodoutgoing : in Swagger.Nullable_UString; Group2member_Periodexcluded_Periodoutgoing : in Swagger.UString_Vectors.Vector; Group2member_Periodrelationship_Periodincoming : in Swagger.Nullable_UString; Group2member_Periodexcluded_Periodincoming : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeGraniteSocialgraphImplSocialGraphFactoryImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Granite_Socialgraph_Impl_Social_Graph_Factory_Impl; -- overriding procedure Com_Adobe_Granite_System_Monitoring_Impl_System_Stats_M_Bean_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Scheduler_Periodexpression : in Swagger.Nullable_UString; Jmx_Periodobjectname : in Swagger.Nullable_UString; Result : out .Models.ComAdobeGraniteSystemMonitoringImplSystemStatsMBeanImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Granite_System_Monitoring_Impl_System_Stats_M_Bean_Impl; -- overriding procedure Com_Adobe_Granite_Taskmanagement_Impl_Jcr_Task_Adapter_Factory (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Adapter_Periodcondition : in Swagger.Nullable_UString; Result : out .Models.ComAdobeGraniteTaskmanagementImplJcrTaskAdapterFactoryInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Granite_Taskmanagement_Impl_Jcr_Task_Adapter_Factory; -- overriding procedure Com_Adobe_Granite_Taskmanagement_Impl_Jcr_Task_Archive_Service (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Archiving_Periodenabled : in Swagger.Nullable_Boolean; Scheduler_Periodexpression : in Swagger.Nullable_UString; Archive_Periodsince_Perioddays_Periodcompleted : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeGraniteTaskmanagementImplJcrTaskArchiveServiceInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Granite_Taskmanagement_Impl_Jcr_Task_Archive_Service; -- overriding procedure Com_Adobe_Granite_Taskmanagement_Impl_Purge_Task_Purge_Maintenance_Task (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Purge_Completed : in Swagger.Nullable_Boolean; Completed_Age : in Swagger.Nullable_Integer; Purge_Active : in Swagger.Nullable_Boolean; Active_Age : in Swagger.Nullable_Integer; Save_Threshold : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeGraniteTaskmanagementImplPurgeTaskPurgeMaintenanceTaskInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Granite_Taskmanagement_Impl_Purge_Task_Purge_Maintenance_Task; -- overriding procedure Com_Adobe_Granite_Taskmanagement_Impl_Service_Task_Manager_Adapter_Factor (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Adapter_Periodcondition : in Swagger.Nullable_UString; Taskmanager_Periodadmingroups : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeGraniteTaskmanagementImplServiceTaskManagerAdapterFactorInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Granite_Taskmanagement_Impl_Service_Task_Manager_Adapter_Factor; -- overriding procedure Com_Adobe_Granite_Threaddump_Thread_Dump_Collector (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Scheduler_Periodperiod : in Swagger.Nullable_Integer; Scheduler_Periodrun_On : in Swagger.Nullable_UString; Granite_Periodthreaddump_Periodenabled : in Swagger.Nullable_Boolean; Granite_Periodthreaddump_Perioddumps_Per_File : in Swagger.Nullable_Integer; Granite_Periodthreaddump_Periodenable_Gzip_Compression : in Swagger.Nullable_Boolean; Granite_Periodthreaddump_Periodenable_Directories_Compression : in Swagger.Nullable_Boolean; Granite_Periodthreaddump_Periodenable_J_Stack : in Swagger.Nullable_Boolean; Granite_Periodthreaddump_Periodmax_Backup_Days : in Swagger.Nullable_Integer; Granite_Periodthreaddump_Periodbackup_Clean_Trigger : in Swagger.Nullable_UString; Result : out .Models.ComAdobeGraniteThreaddumpThreadDumpCollectorInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Granite_Threaddump_Thread_Dump_Collector; -- overriding procedure Com_Adobe_Granite_Translation_Connector_Msft_Core_Impl_Microsoft_Transl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Translation_Factory : in Swagger.Nullable_UString; Default_Connector_Label : in Swagger.Nullable_UString; Default_Connector_Attribution : in Swagger.Nullable_UString; Default_Connector_Workspace_Id : in Swagger.Nullable_UString; Default_Connector_Subscription_Key : in Swagger.Nullable_UString; Language_Map_Location : in Swagger.Nullable_UString; Category_Map_Location : in Swagger.Nullable_UString; Retry_Attempts : in Swagger.Nullable_Integer; Timeout_Count : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeGraniteTranslationConnectorMsftCoreImplMicrosoftTranslInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Granite_Translation_Connector_Msft_Core_Impl_Microsoft_Transl; -- overriding procedure Com_Adobe_Granite_Translation_Core_Impl_Translation_Manager_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Default_Connector_Name : in Swagger.Nullable_UString; Default_Category : in Swagger.Nullable_UString; Result : out .Models.ComAdobeGraniteTranslationCoreImplTranslationManagerImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Granite_Translation_Core_Impl_Translation_Manager_Impl; -- overriding procedure Com_Adobe_Granite_Ui_Clientlibs_Impl_Html_Library_Manager_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Htmllibmanager_Periodtiming : in Swagger.Nullable_Boolean; Htmllibmanager_Perioddebug_Periodinit_Periodjs : in Swagger.Nullable_UString; Htmllibmanager_Periodminify : in Swagger.Nullable_Boolean; Htmllibmanager_Perioddebug : in Swagger.Nullable_Boolean; Htmllibmanager_Periodgzip : in Swagger.Nullable_Boolean; Htmllibmanager_Periodmax_Data_Uri_Size : in Swagger.Nullable_Integer; Htmllibmanager_Periodmaxage : in Swagger.Nullable_Integer; Htmllibmanager_Periodforce_C_Q_Url_Info : in Swagger.Nullable_Boolean; Htmllibmanager_Perioddefaultthemename : in Swagger.Nullable_UString; Htmllibmanager_Perioddefaultuserthemename : in Swagger.Nullable_UString; Htmllibmanager_Periodclientmanager : in Swagger.Nullable_UString; Htmllibmanager_Periodpath_Periodlist : in Swagger.UString_Vectors.Vector; Htmllibmanager_Periodexcluded_Periodpath_Periodlist : in Swagger.UString_Vectors.Vector; Htmllibmanager_Periodprocessor_Periodjs : in Swagger.UString_Vectors.Vector; Htmllibmanager_Periodprocessor_Periodcss : in Swagger.UString_Vectors.Vector; Htmllibmanager_Periodlongcache_Periodpatterns : in Swagger.UString_Vectors.Vector; Htmllibmanager_Periodlongcache_Periodformat : in Swagger.Nullable_UString; Htmllibmanager_Perioduse_File_System_Output_Cache : in Swagger.Nullable_Boolean; Htmllibmanager_Periodfile_System_Output_Cache_Location : in Swagger.Nullable_UString; Htmllibmanager_Perioddisable_Periodreplacement : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeGraniteUiClientlibsImplHtmlLibraryManagerImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Granite_Ui_Clientlibs_Impl_Html_Library_Manager_Impl; -- overriding procedure Com_Adobe_Granite_Workflow_Console_Frags_Workflow_Withdraw_Feature (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Enabled : in Swagger.Nullable_Boolean; Result : out .Models.ComAdobeGraniteWorkflowConsoleFragsWorkflowWithdrawFeatureInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Granite_Workflow_Console_Frags_Workflow_Withdraw_Feature; -- overriding procedure Com_Adobe_Granite_Workflow_Console_Publish_Workflow_Publish_Event_Service (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Granite_Periodworkflow_Period_Workflow_Publish_Event_Service_Periodenabled : in Swagger.Nullable_Boolean; Result : out .Models.ComAdobeGraniteWorkflowConsolePublishWorkflowPublishEventServiceInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Granite_Workflow_Console_Publish_Workflow_Publish_Event_Service; -- overriding procedure Com_Adobe_Granite_Workflow_Core_Jcr_Workflow_Bucket_Manager (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Bucket_Size : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeGraniteWorkflowCoreJcrWorkflowBucketManagerInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Granite_Workflow_Core_Jcr_Workflow_Bucket_Manager; -- overriding procedure Com_Adobe_Granite_Workflow_Core_Job_External_Process_Job_Handler (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Default_Periodtimeout : in Swagger.Nullable_Integer; Max_Periodtimeout : in Swagger.Nullable_Integer; Default_Periodperiod : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeGraniteWorkflowCoreJobExternalProcessJobHandlerInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Granite_Workflow_Core_Job_External_Process_Job_Handler; -- overriding procedure Com_Adobe_Granite_Workflow_Core_Job_Job_Handler (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Job_Periodtopics : in Swagger.UString_Vectors.Vector; Allow_Periodself_Periodprocess_Periodtermination : in Swagger.Nullable_Boolean; Result : out .Models.ComAdobeGraniteWorkflowCoreJobJobHandlerInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Granite_Workflow_Core_Job_Job_Handler; -- overriding procedure Com_Adobe_Granite_Workflow_Core_Offloading_Workflow_Offloading_Job_Consum (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Job_Periodtopics : in Swagger.Nullable_UString; Result : out .Models.ComAdobeGraniteWorkflowCoreOffloadingWorkflowOffloadingJobConsumInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Granite_Workflow_Core_Offloading_Workflow_Offloading_Job_Consum; -- overriding procedure Com_Adobe_Granite_Workflow_Core_Payload_Map_Cache (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Get_System_Workflow_Models : in Swagger.UString_Vectors.Vector; Get_Package_Root_Path : in Swagger.Nullable_UString; Result : out .Models.ComAdobeGraniteWorkflowCorePayloadMapCacheInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Granite_Workflow_Core_Payload_Map_Cache; -- overriding procedure Com_Adobe_Granite_Workflow_Core_Payloadmap_Payload_Move_Listener (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Payload_Periodmove_Periodwhite_Periodlist : in Swagger.UString_Vectors.Vector; Payload_Periodmove_Periodhandle_Periodfrom_Periodworkflow_Periodprocess : in Swagger.Nullable_Boolean; Result : out .Models.ComAdobeGraniteWorkflowCorePayloadmapPayloadMoveListenerInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Granite_Workflow_Core_Payloadmap_Payload_Move_Listener; -- overriding procedure Com_Adobe_Granite_Workflow_Core_Workflow_Config (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Periodworkflow_Periodconfig_Periodworkflow_Periodpackages_Periodroot_Periodpath : in Swagger.UString_Vectors.Vector; Cq_Periodworkflow_Periodconfig_Periodworkflow_Periodprocess_Periodlegacy_Periodmode : in Swagger.Nullable_Boolean; Cq_Periodworkflow_Periodconfig_Periodallow_Periodlocking : in Swagger.Nullable_Boolean; Result : out .Models.ComAdobeGraniteWorkflowCoreWorkflowConfigInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Granite_Workflow_Core_Workflow_Config; -- overriding procedure Com_Adobe_Granite_Workflow_Core_Workflow_Session_Factory (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Granite_Periodworkflowinbox_Periodsort_Periodproperty_Name : in Swagger.Nullable_UString; Granite_Periodworkflowinbox_Periodsort_Periodorder : in Swagger.Nullable_UString; Cq_Periodworkflow_Periodjob_Periodretry : in Swagger.Nullable_Integer; Cq_Periodworkflow_Periodsuperuser : in Swagger.UString_Vectors.Vector; Granite_Periodworkflow_Periodinbox_Query_Size : in Swagger.Nullable_Integer; Granite_Periodworkflow_Periodadmin_User_Group_Filter : in Swagger.Nullable_Boolean; Granite_Periodworkflow_Periodenforce_Workitem_Assignee_Permissions : in Swagger.Nullable_Boolean; Granite_Periodworkflow_Periodenforce_Workflow_Initiator_Permissions : in Swagger.Nullable_Boolean; Granite_Periodworkflow_Periodinject_Tenant_Id_In_Job_Topics : in Swagger.Nullable_Boolean; Granite_Periodworkflow_Periodmax_Purge_Save_Threshold : in Swagger.Nullable_Integer; Granite_Periodworkflow_Periodmax_Purge_Query_Count : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeGraniteWorkflowCoreWorkflowSessionFactoryInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Granite_Workflow_Core_Workflow_Session_Factory; -- overriding procedure Com_Adobe_Granite_Workflow_Purge_Scheduler (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Scheduledpurge_Periodname : in Swagger.Nullable_UString; Scheduledpurge_Periodworkflow_Status : in Swagger.Nullable_UString; Scheduledpurge_Periodmodel_Ids : in Swagger.UString_Vectors.Vector; Scheduledpurge_Perioddaysold : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeGraniteWorkflowPurgeSchedulerInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Granite_Workflow_Purge_Scheduler; -- overriding procedure Com_Adobe_Octopus_Ncomm_Bootstrap (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Max_Connections : in Swagger.Nullable_Integer; Max_Requests : in Swagger.Nullable_Integer; Request_Timeout : in Swagger.Nullable_Integer; Request_Retries : in Swagger.Nullable_Integer; Launch_Timeout : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeOctopusNcommBootstrapInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Octopus_Ncomm_Bootstrap; -- overriding procedure Com_Adobe_Social_Integrations_Livefyre_User_Pingforpull_Impl_Ping_Pull_S (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Communities_Periodintegration_Periodlivefyre_Periodsling_Periodevent_Periodfilter : in Swagger.Nullable_UString; Result : out .Models.ComAdobeSocialIntegrationsLivefyreUserPingforpullImplPingPullSInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Social_Integrations_Livefyre_User_Pingforpull_Impl_Ping_Pull_S; -- overriding procedure Com_Adobe_Xmp_Worker_Files_Ncomm_X_M_P_Files_N_Comm (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Max_Connections : in Swagger.Nullable_UString; Max_Requests : in Swagger.Nullable_UString; Request_Timeout : in Swagger.Nullable_UString; Log_Dir : in Swagger.Nullable_UString; Result : out .Models.ComAdobeXmpWorkerFilesNcommXMPFilesNCommInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Adobe_Xmp_Worker_Files_Ncomm_X_M_P_Files_N_Comm; -- overriding procedure Com_Day_Commons_Datasource_Jdbcpool_Jdbc_Pool_Service (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Jdbc_Perioddriver_Periodclass : in Swagger.Nullable_UString; Jdbc_Periodconnection_Perioduri : in Swagger.Nullable_UString; Jdbc_Periodusername : in Swagger.Nullable_UString; Jdbc_Periodpassword : in Swagger.Nullable_UString; Jdbc_Periodvalidation_Periodquery : in Swagger.Nullable_UString; Default_Periodreadonly : in Swagger.Nullable_Boolean; Default_Periodautocommit : in Swagger.Nullable_Boolean; Pool_Periodsize : in Swagger.Nullable_Integer; Pool_Periodmax_Periodwait_Periodmsec : in Swagger.Nullable_Integer; Datasource_Periodname : in Swagger.Nullable_UString; Datasource_Periodsvc_Periodproperties : in Swagger.UString_Vectors.Vector; Result : out .Models.ComDayCommonsDatasourceJdbcpoolJdbcPoolServiceInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Commons_Datasource_Jdbcpool_Jdbc_Pool_Service; -- overriding procedure Com_Day_Commons_Httpclient (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Proxy_Periodenabled : in Swagger.Nullable_Boolean; Proxy_Periodhost : in Swagger.Nullable_UString; Proxy_Perioduser : in Swagger.Nullable_UString; Proxy_Periodpassword : in Swagger.Nullable_UString; Proxy_Periodntlm_Periodhost : in Swagger.Nullable_UString; Proxy_Periodntlm_Perioddomain : in Swagger.Nullable_UString; Proxy_Periodexceptions : in Swagger.UString_Vectors.Vector; Result : out .Models.ComDayCommonsHttpclientInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Commons_Httpclient; -- overriding procedure Com_Day_Cq_Analytics_Impl_Store_Properties_Change_Listener (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Periodstore_Periodlistener_Periodadditional_Store_Paths : in Swagger.UString_Vectors.Vector; Result : out .Models.ComDayCqAnalyticsImplStorePropertiesChangeListenerInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Analytics_Impl_Store_Properties_Change_Listener; -- overriding procedure Com_Day_Cq_Analytics_Sitecatalyst_Impl_Exporter_Classifications_Exporte (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Allowed_Periodpaths : in Swagger.UString_Vectors.Vector; Cq_Periodanalytics_Periodsaint_Periodexporter_Periodpagesize : in Swagger.Nullable_Integer; Result : out .Models.ComDayCqAnalyticsSitecatalystImplExporterClassificationsExporteInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Analytics_Sitecatalyst_Impl_Exporter_Classifications_Exporte; -- overriding procedure Com_Day_Cq_Analytics_Sitecatalyst_Impl_Importer_Report_Importer (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Report_Periodfetch_Periodattempts : in Swagger.Nullable_Integer; Report_Periodfetch_Perioddelay : in Swagger.Nullable_Integer; Result : out .Models.ComDayCqAnalyticsSitecatalystImplImporterReportImporterInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Analytics_Sitecatalyst_Impl_Importer_Report_Importer; -- overriding procedure Com_Day_Cq_Analytics_Sitecatalyst_Impl_Sitecatalyst_Adapter_Factory (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Periodanalytics_Periodadapterfactory_Periodcontextstores : in Swagger.UString_Vectors.Vector; Result : out .Models.ComDayCqAnalyticsSitecatalystImplSitecatalystAdapterFactoryInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Analytics_Sitecatalyst_Impl_Sitecatalyst_Adapter_Factory; -- overriding procedure Com_Day_Cq_Analytics_Sitecatalyst_Impl_Sitecatalyst_Http_Client_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Periodanalytics_Periodsitecatalyst_Periodservice_Perioddatacenter_Periodurl : in Swagger.UString_Vectors.Vector; Devhostnamepatterns : in Swagger.UString_Vectors.Vector; Connection_Periodtimeout : in Swagger.Nullable_Integer; Socket_Periodtimeout : in Swagger.Nullable_Integer; Result : out .Models.ComDayCqAnalyticsSitecatalystImplSitecatalystHttpClientImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Analytics_Sitecatalyst_Impl_Sitecatalyst_Http_Client_Impl; -- overriding procedure Com_Day_Cq_Analytics_Testandtarget_Impl_Account_Options_Updater (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Periodanalytics_Periodtestandtarget_Periodaccountoptionsupdater_Periodenabled : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqAnalyticsTestandtargetImplAccountOptionsUpdaterInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Analytics_Testandtarget_Impl_Account_Options_Updater; -- overriding procedure Com_Day_Cq_Analytics_Testandtarget_Impl_Delete_Author_Activity_Listener (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Periodanalytics_Periodtestandtarget_Perioddeleteauthoractivitylistener_Periodenabled : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqAnalyticsTestandtargetImplDeleteAuthorActivityListenerInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Analytics_Testandtarget_Impl_Delete_Author_Activity_Listener; -- overriding procedure Com_Day_Cq_Analytics_Testandtarget_Impl_Push_Author_Campaign_Page_Listener (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Periodanalytics_Periodtestandtarget_Periodpushauthorcampaignpagelistener_Periodenabled : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqAnalyticsTestandtargetImplPushAuthorCampaignPageListenerInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Analytics_Testandtarget_Impl_Push_Author_Campaign_Page_Listener; -- overriding procedure Com_Day_Cq_Analytics_Testandtarget_Impl_Segment_Importer (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Periodanalytics_Periodtestandtarget_Periodsegmentimporter_Periodenabled : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqAnalyticsTestandtargetImplSegmentImporterInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Analytics_Testandtarget_Impl_Segment_Importer; -- overriding procedure Com_Day_Cq_Analytics_Testandtarget_Impl_Service_Web_Service_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Endpoint_Uri : in Swagger.Nullable_UString; Connection_Timeout : in Swagger.Nullable_Integer; Socket_Timeout : in Swagger.Nullable_Integer; Result : out .Models.ComDayCqAnalyticsTestandtargetImplServiceWebServiceImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Analytics_Testandtarget_Impl_Service_Web_Service_Impl; -- overriding procedure Com_Day_Cq_Analytics_Testandtarget_Impl_Servlets_Admin_Server_Servlet (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Testandtarget_Periodendpoint_Periodurl : in Swagger.Nullable_UString; Result : out .Models.ComDayCqAnalyticsTestandtargetImplServletsAdminServerServletInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Analytics_Testandtarget_Impl_Servlets_Admin_Server_Servlet; -- overriding procedure Com_Day_Cq_Analytics_Testandtarget_Impl_Testandtarget_Http_Client_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Periodanalytics_Periodtestandtarget_Periodapi_Periodurl : in Swagger.Nullable_UString; Cq_Periodanalytics_Periodtestandtarget_Periodtimeout : in Swagger.Nullable_Integer; Cq_Periodanalytics_Periodtestandtarget_Periodsockettimeout : in Swagger.Nullable_Integer; Cq_Periodanalytics_Periodtestandtarget_Periodrecommendations_Periodurl_Periodreplace : in Swagger.Nullable_UString; Cq_Periodanalytics_Periodtestandtarget_Periodrecommendations_Periodurl_Periodreplacewith : in Swagger.Nullable_UString; Result : out .Models.ComDayCqAnalyticsTestandtargetImplTestandtargetHttpClientImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Analytics_Testandtarget_Impl_Testandtarget_Http_Client_Impl; -- overriding procedure Com_Day_Cq_Auth_Impl_Cug_Cug_Support_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cug_Periodexempted_Periodprincipals : in Swagger.UString_Vectors.Vector; Cug_Periodenabled : in Swagger.Nullable_Boolean; Cug_Periodprincipals_Periodregex : in Swagger.Nullable_UString; Cug_Periodprincipals_Periodreplacement : in Swagger.Nullable_UString; Result : out .Models.ComDayCqAuthImplCugCugSupportImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Auth_Impl_Cug_Cug_Support_Impl; -- overriding procedure Com_Day_Cq_Auth_Impl_Login_Selector_Handler (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Path : in Swagger.Nullable_UString; Service_Periodranking : in Swagger.Nullable_Integer; Auth_Periodloginselector_Periodmappings : in Swagger.UString_Vectors.Vector; Auth_Periodloginselector_Periodchangepw_Periodmappings : in Swagger.UString_Vectors.Vector; Auth_Periodloginselector_Perioddefaultloginpage : in Swagger.Nullable_UString; Auth_Periodloginselector_Perioddefaultchangepwpage : in Swagger.Nullable_UString; Auth_Periodloginselector_Periodhandle : in Swagger.UString_Vectors.Vector; Auth_Periodloginselector_Periodhandle_Periodall_Periodextensions : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqAuthImplLoginSelectorHandlerInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Auth_Impl_Login_Selector_Handler; -- overriding procedure Com_Day_Cq_Commons_Impl_Externalizer_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Externalizer_Perioddomains : in Swagger.UString_Vectors.Vector; Externalizer_Periodhost : in Swagger.Nullable_UString; Externalizer_Periodcontextpath : in Swagger.Nullable_UString; Externalizer_Periodencodedpath : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqCommonsImplExternalizerImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Commons_Impl_Externalizer_Impl; -- overriding procedure Com_Day_Cq_Commons_Servlets_Root_Mapping_Servlet (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Rootmapping_Periodtarget : in Swagger.Nullable_UString; Result : out .Models.ComDayCqCommonsServletsRootMappingServletInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Commons_Servlets_Root_Mapping_Servlet; -- overriding procedure Com_Day_Cq_Compat_Codeupgrade_Impl_Code_Upgrade_Execution_Condition_Checke (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Codeupgradetasks : in Swagger.UString_Vectors.Vector; Codeupgradetaskfilters : in Swagger.UString_Vectors.Vector; Result : out .Models.ComDayCqCompatCodeupgradeImplCodeUpgradeExecutionConditionCheckeInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Compat_Codeupgrade_Impl_Code_Upgrade_Execution_Condition_Checke; -- overriding procedure Com_Day_Cq_Compat_Codeupgrade_Impl_Upgrade_Task_Ignore_List (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Upgrade_Task_Ignore_List : in Swagger.UString_Vectors.Vector; Result : out .Models.ComDayCqCompatCodeupgradeImplUpgradeTaskIgnoreListInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Compat_Codeupgrade_Impl_Upgrade_Task_Ignore_List; -- overriding procedure Com_Day_Cq_Compat_Codeupgrade_Impl_Version_Range_Task_Ignorelist (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Effective_Bundle_List_Path : in Swagger.Nullable_UString; Result : out .Models.ComDayCqCompatCodeupgradeImplVersionRangeTaskIgnorelistInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Compat_Codeupgrade_Impl_Version_Range_Task_Ignorelist; -- overriding procedure Com_Day_Cq_Contentsync_Impl_Content_Sync_Manager_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Contentsync_Periodfallback_Periodauthorizable : in Swagger.Nullable_UString; Contentsync_Periodfallback_Periodupdateuser : in Swagger.Nullable_UString; Result : out .Models.ComDayCqContentsyncImplContentSyncManagerImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Contentsync_Impl_Content_Sync_Manager_Impl; -- overriding procedure Com_Day_Cq_Dam_Commons_Handler_Standard_Image_Handler (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Large_File_Threshold : in Swagger.Nullable_Integer; Large_Comment_Threshold : in Swagger.Nullable_Integer; Cq_Perioddam_Periodenable_Periodext_Periodmeta_Periodextraction : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqDamCommonsHandlerStandardImageHandlerInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Dam_Commons_Handler_Standard_Image_Handler; -- overriding procedure Com_Day_Cq_Dam_Commons_Metadata_Xmp_Filter_Black_White (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Xmp_Periodfilter_Periodapply_Whitelist : in Swagger.Nullable_Boolean; Xmp_Periodfilter_Periodwhitelist : in Swagger.UString_Vectors.Vector; Xmp_Periodfilter_Periodapply_Blacklist : in Swagger.Nullable_Boolean; Xmp_Periodfilter_Periodblacklist : in Swagger.UString_Vectors.Vector; Result : out .Models.ComDayCqDamCommonsMetadataXmpFilterBlackWhiteInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Dam_Commons_Metadata_Xmp_Filter_Black_White; -- overriding procedure Com_Day_Cq_Dam_Commons_Util_Impl_Asset_Cache_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Large_Periodfile_Periodmin : in Swagger.Nullable_Integer; Cache_Periodapply : in Swagger.Nullable_Boolean; Mime_Periodtypes : in Swagger.UString_Vectors.Vector; Result : out .Models.ComDayCqDamCommonsUtilImplAssetCacheImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Dam_Commons_Util_Impl_Asset_Cache_Impl; -- overriding procedure Com_Day_Cq_Dam_Core_Impl_Annotation_Pdf_Annotation_Pdf_Config (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Perioddam_Periodconfig_Periodannotation_Periodpdf_Perioddocument_Periodwidth : in Swagger.Nullable_Integer; Cq_Perioddam_Periodconfig_Periodannotation_Periodpdf_Perioddocument_Periodheight : in Swagger.Nullable_Integer; Cq_Perioddam_Periodconfig_Periodannotation_Periodpdf_Perioddocument_Periodpadding_Periodhorizontal : in Swagger.Nullable_Integer; Cq_Perioddam_Periodconfig_Periodannotation_Periodpdf_Perioddocument_Periodpadding_Periodvertical : in Swagger.Nullable_Integer; Cq_Perioddam_Periodconfig_Periodannotation_Periodpdf_Periodfont_Periodsize : in Swagger.Nullable_Integer; Cq_Perioddam_Periodconfig_Periodannotation_Periodpdf_Periodfont_Periodcolor : in Swagger.Nullable_UString; Cq_Perioddam_Periodconfig_Periodannotation_Periodpdf_Periodfont_Periodfamily : in Swagger.Nullable_UString; Cq_Perioddam_Periodconfig_Periodannotation_Periodpdf_Periodfont_Periodlight : in Swagger.Nullable_UString; Cq_Perioddam_Periodconfig_Periodannotation_Periodpdf_Periodmargin_Text_Image : in Swagger.Nullable_Integer; Cq_Perioddam_Periodconfig_Periodannotation_Periodpdf_Periodmin_Image_Height : in Swagger.Nullable_Integer; Cq_Perioddam_Periodconfig_Periodannotation_Periodpdf_Periodreview_Status_Periodwidth : in Swagger.Nullable_Integer; Cq_Perioddam_Periodconfig_Periodannotation_Periodpdf_Periodreview_Status_Periodcolor_Periodapproved : in Swagger.Nullable_UString; Cq_Perioddam_Periodconfig_Periodannotation_Periodpdf_Periodreview_Status_Periodcolor_Periodrejected : in Swagger.Nullable_UString; Cq_Perioddam_Periodconfig_Periodannotation_Periodpdf_Periodreview_Status_Periodcolor_Periodchanges_Requested : in Swagger.Nullable_UString; Cq_Perioddam_Periodconfig_Periodannotation_Periodpdf_Periodannotation_Marker_Periodwidth : in Swagger.Nullable_Integer; Cq_Perioddam_Periodconfig_Periodannotation_Periodpdf_Periodasset_Periodminheight : in Swagger.Nullable_Integer; Result : out .Models.ComDayCqDamCoreImplAnnotationPdfAnnotationPdfConfigInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Dam_Core_Impl_Annotation_Pdf_Annotation_Pdf_Config; -- overriding procedure Com_Day_Cq_Dam_Core_Impl_Asset_Move_Listener (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Enabled : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqDamCoreImplAssetMoveListenerInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Dam_Core_Impl_Asset_Move_Listener; -- overriding procedure Com_Day_Cq_Dam_Core_Impl_Assethome_Asset_Home_Page_Configuration (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Is_Enabled : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqDamCoreImplAssethomeAssetHomePageConfigurationInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Dam_Core_Impl_Assethome_Asset_Home_Page_Configuration; -- overriding procedure Com_Day_Cq_Dam_Core_Impl_Assetlinkshare_Adhoc_Asset_Share_Proxy_Servlet (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Perioddam_Periodadhoc_Periodasset_Periodshare_Periodprezip_Periodmaxcontentsize : in Swagger.Nullable_Integer; Result : out .Models.ComDayCqDamCoreImplAssetlinkshareAdhocAssetShareProxyServletInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Dam_Core_Impl_Assetlinkshare_Adhoc_Asset_Share_Proxy_Servlet; -- overriding procedure Com_Day_Cq_Dam_Core_Impl_Cache_C_Q_Buffered_Image_Cache (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Perioddam_Periodimage_Periodcache_Periodmax_Periodmemory : in Swagger.Nullable_Integer; Cq_Perioddam_Periodimage_Periodcache_Periodmax_Periodage : in Swagger.Nullable_Integer; Cq_Perioddam_Periodimage_Periodcache_Periodmax_Perioddimension : in Swagger.Nullable_UString; Result : out .Models.ComDayCqDamCoreImplCacheCQBufferedImageCacheInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Dam_Core_Impl_Cache_C_Q_Buffered_Image_Cache; -- overriding procedure Com_Day_Cq_Dam_Core_Impl_Dam_Change_Event_Listener (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Changeeventlistener_Periodobserved_Periodpaths : in Swagger.UString_Vectors.Vector; Result : out .Models.ComDayCqDamCoreImplDamChangeEventListenerInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Dam_Core_Impl_Dam_Change_Event_Listener; -- overriding procedure Com_Day_Cq_Dam_Core_Impl_Dam_Event_Purge_Service (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Scheduler_Periodexpression : in Swagger.Nullable_UString; Max_Saved_Activities : in Swagger.Nullable_Integer; Save_Interval : in Swagger.Nullable_Integer; Enable_Activity_Purge : in Swagger.Nullable_Boolean; Event_Types : in Swagger.Nullable_UString; Result : out .Models.ComDayCqDamCoreImplDamEventPurgeServiceInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Dam_Core_Impl_Dam_Event_Purge_Service; -- overriding procedure Com_Day_Cq_Dam_Core_Impl_Dam_Event_Recorder_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Event_Periodfilter : in Swagger.Nullable_UString; Event_Periodqueue_Periodlength : in Swagger.Nullable_Integer; Eventrecorder_Periodenabled : in Swagger.Nullable_Boolean; Eventrecorder_Periodblacklist : in Swagger.UString_Vectors.Vector; Eventrecorder_Periodeventtypes : in Swagger.Nullable_UString; Result : out .Models.ComDayCqDamCoreImplDamEventRecorderImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Dam_Core_Impl_Dam_Event_Recorder_Impl; -- overriding procedure Com_Day_Cq_Dam_Core_Impl_Event_Dam_Event_Audit_Listener (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Event_Periodfilter : in Swagger.Nullable_UString; Enabled : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqDamCoreImplEventDamEventAuditListenerInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Dam_Core_Impl_Event_Dam_Event_Audit_Listener; -- overriding procedure Com_Day_Cq_Dam_Core_Impl_Expiry_Notification_Job_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Perioddam_Periodexpiry_Periodnotification_Periodscheduler_Periodistimebased : in Swagger.Nullable_Boolean; Cq_Perioddam_Periodexpiry_Periodnotification_Periodscheduler_Periodtimebased_Periodrule : in Swagger.Nullable_UString; Cq_Perioddam_Periodexpiry_Periodnotification_Periodscheduler_Periodperiod_Periodrule : in Swagger.Nullable_Integer; Send_Email : in Swagger.Nullable_Boolean; Asset_Expired_Limit : in Swagger.Nullable_Integer; Prior_Notification_Seconds : in Swagger.Nullable_Integer; Cq_Perioddam_Periodexpiry_Periodnotification_Periodurl_Periodprotocol : in Swagger.Nullable_UString; Result : out .Models.ComDayCqDamCoreImplExpiryNotificationJobImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Dam_Core_Impl_Expiry_Notification_Job_Impl; -- overriding procedure Com_Day_Cq_Dam_Core_Impl_Foldermetadataschema_Folder_Metadata_Schema_Feat (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Is_Enabled : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqDamCoreImplFoldermetadataschemaFolderMetadataSchemaFeatInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Dam_Core_Impl_Foldermetadataschema_Folder_Metadata_Schema_Feat; -- overriding procedure Com_Day_Cq_Dam_Core_Impl_Gfx_Commons_Gfx_Renderer (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Skip_Periodbufferedcache : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqDamCoreImplGfxCommonsGfxRendererInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Dam_Core_Impl_Gfx_Commons_Gfx_Renderer; -- overriding procedure Com_Day_Cq_Dam_Core_Impl_Handler_E_P_S_Format_Handler (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Mimetype : in Swagger.Nullable_UString; Result : out .Models.ComDayCqDamCoreImplHandlerEPSFormatHandlerInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Dam_Core_Impl_Handler_E_P_S_Format_Handler; -- overriding procedure Com_Day_Cq_Dam_Core_Impl_Handler_Indesign_Format_Handler (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Mimetype : in Swagger.UString_Vectors.Vector; Result : out .Models.ComDayCqDamCoreImplHandlerIndesignFormatHandlerInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Dam_Core_Impl_Handler_Indesign_Format_Handler; -- overriding procedure Com_Day_Cq_Dam_Core_Impl_Handler_Jpeg_Handler (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Perioddam_Periodenable_Periodext_Periodmeta_Periodextraction : in Swagger.Nullable_Boolean; Large_File_Threshold : in Swagger.Nullable_Integer; Large_Comment_Threshold : in Swagger.Nullable_Integer; Result : out .Models.ComDayCqDamCoreImplHandlerJpegHandlerInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Dam_Core_Impl_Handler_Jpeg_Handler; -- overriding procedure Com_Day_Cq_Dam_Core_Impl_Handler_Xmp_N_Comm_X_M_P_Handler (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Xmphandler_Periodcq_Periodformats : in Swagger.UString_Vectors.Vector; Result : out .Models.ComDayCqDamCoreImplHandlerXmpNCommXMPHandlerInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Dam_Core_Impl_Handler_Xmp_N_Comm_X_M_P_Handler; -- overriding procedure Com_Day_Cq_Dam_Core_Impl_Jmx_Asset_Index_Update_Monitor (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Jmx_Periodobjectname : in Swagger.Nullable_UString; Property_Periodmeasure_Periodenabled : in Swagger.Nullable_Boolean; Property_Periodname : in Swagger.Nullable_UString; Property_Periodmax_Periodwait_Periodms : in Swagger.Nullable_Integer; Property_Periodmax_Periodrate : in Swagger.Number; Fulltext_Periodmeasure_Periodenabled : in Swagger.Nullable_Boolean; Fulltext_Periodname : in Swagger.Nullable_UString; Fulltext_Periodmax_Periodwait_Periodms : in Swagger.Nullable_Integer; Fulltext_Periodmax_Periodrate : in Swagger.Number; Result : out .Models.ComDayCqDamCoreImplJmxAssetIndexUpdateMonitorInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Dam_Core_Impl_Jmx_Asset_Index_Update_Monitor; -- overriding procedure Com_Day_Cq_Dam_Core_Impl_Jmx_Asset_Migration_M_Bean_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Jmx_Periodobjectname : in Swagger.Nullable_UString; Result : out .Models.ComDayCqDamCoreImplJmxAssetMigrationMBeanImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Dam_Core_Impl_Jmx_Asset_Migration_M_Bean_Impl; -- overriding procedure Com_Day_Cq_Dam_Core_Impl_Jmx_Asset_Update_Monitor_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Jmx_Periodobjectname : in Swagger.Nullable_UString; Active : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqDamCoreImplJmxAssetUpdateMonitorImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Dam_Core_Impl_Jmx_Asset_Update_Monitor_Impl; -- overriding procedure Com_Day_Cq_Dam_Core_Impl_Jobs_Metadataexport_Async_Metadata_Export_Config (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Operation : in Swagger.Nullable_UString; Email_Enabled : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqDamCoreImplJobsMetadataexportAsyncMetadataExportConfigInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Dam_Core_Impl_Jobs_Metadataexport_Async_Metadata_Export_Config; -- overriding procedure Com_Day_Cq_Dam_Core_Impl_Jobs_Metadataimport_Async_Metadata_Import_Config (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Operation : in Swagger.Nullable_UString; Operation_Icon : in Swagger.Nullable_UString; Topic_Name : in Swagger.Nullable_UString; Email_Enabled : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqDamCoreImplJobsMetadataimportAsyncMetadataImportConfigInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Dam_Core_Impl_Jobs_Metadataimport_Async_Metadata_Import_Config; -- overriding procedure Com_Day_Cq_Dam_Core_Impl_Lightbox_Lightbox_Servlet (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Sling_Periodservlet_Periodpaths : in Swagger.Nullable_UString; Sling_Periodservlet_Periodmethods : in Swagger.UString_Vectors.Vector; Cq_Perioddam_Periodenable_Periodanonymous : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqDamCoreImplLightboxLightboxServletInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Dam_Core_Impl_Lightbox_Lightbox_Servlet; -- overriding procedure Com_Day_Cq_Dam_Core_Impl_Metadata_Editor_Select_Component_Handler (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Granite_Data : in Swagger.UString_Vectors.Vector; Result : out .Models.ComDayCqDamCoreImplMetadataEditorSelectComponentHandlerInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Dam_Core_Impl_Metadata_Editor_Select_Component_Handler; -- overriding procedure Com_Day_Cq_Dam_Core_Impl_Mime_Type_Asset_Upload_Restriction_Helper (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Perioddam_Periodallow_Periodall_Periodmime : in Swagger.Nullable_Boolean; Cq_Perioddam_Periodallowed_Periodasset_Periodmimes : in Swagger.UString_Vectors.Vector; Result : out .Models.ComDayCqDamCoreImplMimeTypeAssetUploadRestrictionHelperInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Dam_Core_Impl_Mime_Type_Asset_Upload_Restriction_Helper; -- overriding procedure Com_Day_Cq_Dam_Core_Impl_Mime_Type_Dam_Mime_Type_Service_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Perioddam_Perioddetect_Periodasset_Periodmime_Periodfrom_Periodcontent : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqDamCoreImplMimeTypeDamMimeTypeServiceImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Dam_Core_Impl_Mime_Type_Dam_Mime_Type_Service_Impl; -- overriding procedure Com_Day_Cq_Dam_Core_Impl_Missing_Metadata_Notification_Job (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Perioddam_Periodmissingmetadata_Periodnotification_Periodscheduler_Periodistimebased : in Swagger.Nullable_Boolean; Cq_Perioddam_Periodmissingmetadata_Periodnotification_Periodscheduler_Periodtimebased_Periodrule : in Swagger.Nullable_UString; Cq_Perioddam_Periodmissingmetadata_Periodnotification_Periodscheduler_Periodperiod_Periodrule : in Swagger.Nullable_Integer; Cq_Perioddam_Periodmissingmetadata_Periodnotification_Periodrecipient : in Swagger.Nullable_UString; Result : out .Models.ComDayCqDamCoreImplMissingMetadataNotificationJobInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Dam_Core_Impl_Missing_Metadata_Notification_Job; -- overriding procedure Com_Day_Cq_Dam_Core_Impl_Process_Send_Transient_Workflow_Completed_Email_Pr (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Process_Periodlabel : in Swagger.Nullable_UString; Notify on _Complete : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqDamCoreImplProcessSendTransientWorkflowCompletedEmailPrInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Dam_Core_Impl_Process_Send_Transient_Workflow_Completed_Email_Pr; -- overriding procedure Com_Day_Cq_Dam_Core_Impl_Process_Text_Extraction_Process (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Mime_Types : in Swagger.UString_Vectors.Vector; Max_Extract : in Swagger.Nullable_Integer; Result : out .Models.ComDayCqDamCoreImplProcessTextExtractionProcessInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Dam_Core_Impl_Process_Text_Extraction_Process; -- overriding procedure Com_Day_Cq_Dam_Core_Impl_Rendition_Maker_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Xmp_Periodpropagate : in Swagger.Nullable_Boolean; Xmp_Periodexcludes : in Swagger.UString_Vectors.Vector; Result : out .Models.ComDayCqDamCoreImplRenditionMakerImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Dam_Core_Impl_Rendition_Maker_Impl; -- overriding procedure Com_Day_Cq_Dam_Core_Impl_Reports_Report_Export_Service (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Query_Batch_Size : in Swagger.Nullable_Integer; Result : out .Models.ComDayCqDamCoreImplReportsReportExportServiceInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Dam_Core_Impl_Reports_Report_Export_Service; -- overriding procedure Com_Day_Cq_Dam_Core_Impl_Reports_Report_Purge_Service (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Scheduler_Periodexpression : in Swagger.Nullable_UString; Max_Saved_Reports : in Swagger.Nullable_Integer; Time_Duration : in Swagger.Nullable_Integer; Enable_Report_Purge : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqDamCoreImplReportsReportPurgeServiceInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Dam_Core_Impl_Reports_Report_Purge_Service; -- overriding procedure Com_Day_Cq_Dam_Core_Impl_Servlet_Asset_Download_Servlet (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Enabled : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqDamCoreImplServletAssetDownloadServletInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Dam_Core_Impl_Servlet_Asset_Download_Servlet; -- overriding procedure Com_Day_Cq_Dam_Core_Impl_Servlet_Asset_Status_Servlet (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Perioddam_Periodbatch_Periodstatus_Periodmaxassets : in Swagger.Nullable_Integer; Result : out .Models.ComDayCqDamCoreImplServletAssetStatusServletInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Dam_Core_Impl_Servlet_Asset_Status_Servlet; -- overriding procedure Com_Day_Cq_Dam_Core_Impl_Servlet_Asset_X_M_P_Search_Servlet (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Perioddam_Periodbatch_Periodindesign_Periodmaxassets : in Swagger.Nullable_Integer; Result : out .Models.ComDayCqDamCoreImplServletAssetXMPSearchServletInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Dam_Core_Impl_Servlet_Asset_X_M_P_Search_Servlet; -- overriding procedure Com_Day_Cq_Dam_Core_Impl_Servlet_Batch_Metadata_Servlet (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Perioddam_Periodbatch_Periodmetadata_Periodasset_Perioddefault : in Swagger.UString_Vectors.Vector; Cq_Perioddam_Periodbatch_Periodmetadata_Periodcollection_Perioddefault : in Swagger.UString_Vectors.Vector; Cq_Perioddam_Periodbatch_Periodmetadata_Periodmaxresources : in Swagger.Nullable_Integer; Result : out .Models.ComDayCqDamCoreImplServletBatchMetadataServletInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Dam_Core_Impl_Servlet_Batch_Metadata_Servlet; -- overriding procedure Com_Day_Cq_Dam_Core_Impl_Servlet_Binary_Provider_Servlet (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Sling_Periodservlet_Periodresource_Types : in Swagger.UString_Vectors.Vector; Sling_Periodservlet_Periodmethods : in Swagger.UString_Vectors.Vector; Cq_Perioddam_Perioddrm_Periodenable : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqDamCoreImplServletBinaryProviderServletInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Dam_Core_Impl_Servlet_Binary_Provider_Servlet; -- overriding procedure Com_Day_Cq_Dam_Core_Impl_Servlet_Collection_Servlet (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Perioddam_Periodbatch_Periodcollection_Periodproperties : in Swagger.UString_Vectors.Vector; Cq_Perioddam_Periodbatch_Periodcollection_Periodmaxcollections : in Swagger.Nullable_Integer; Result : out .Models.ComDayCqDamCoreImplServletCollectionServletInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Dam_Core_Impl_Servlet_Collection_Servlet; -- overriding procedure Com_Day_Cq_Dam_Core_Impl_Servlet_Collections_Servlet (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Perioddam_Periodbatch_Periodcollections_Periodproperties : in Swagger.UString_Vectors.Vector; Cq_Perioddam_Periodbatch_Periodcollections_Periodlimit : in Swagger.Nullable_Integer; Result : out .Models.ComDayCqDamCoreImplServletCollectionsServletInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Dam_Core_Impl_Servlet_Collections_Servlet; -- overriding procedure Com_Day_Cq_Dam_Core_Impl_Servlet_Companion_Servlet (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; More _Info : in Swagger.Nullable_UString; Slashmnt_Slashoverlay_Slashdam_Slashgui_Slashcontent_Slashassets_Slashmoreinfo_Periodhtml_Slash_Dollar_Left_Curly_Bracketpath_Right_Curly_Bracket : in Swagger.Nullable_UString; Result : out .Models.ComDayCqDamCoreImplServletCompanionServletInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Dam_Core_Impl_Servlet_Companion_Servlet; -- overriding procedure Com_Day_Cq_Dam_Core_Impl_Servlet_Create_Asset_Servlet (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Detect_Duplicate : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqDamCoreImplServletCreateAssetServletInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Dam_Core_Impl_Servlet_Create_Asset_Servlet; -- overriding procedure Com_Day_Cq_Dam_Core_Impl_Servlet_Dam_Content_Disposition_Filter (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Periodmime_Periodtype_Periodblacklist : in Swagger.UString_Vectors.Vector; Cq_Perioddam_Periodempty_Periodmime : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqDamCoreImplServletDamContentDispositionFilterInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Dam_Core_Impl_Servlet_Dam_Content_Disposition_Filter; -- overriding procedure Com_Day_Cq_Dam_Core_Impl_Servlet_Guid_Lookup_Filter (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Perioddam_Periodcore_Periodguidlookupfilter_Periodenabled : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqDamCoreImplServletGuidLookupFilterInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Dam_Core_Impl_Servlet_Guid_Lookup_Filter; -- overriding procedure Com_Day_Cq_Dam_Core_Impl_Servlet_Health_Check_Servlet (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Perioddam_Periodsync_Periodworkflow_Periodid : in Swagger.Nullable_UString; Cq_Perioddam_Periodsync_Periodfolder_Periodtypes : in Swagger.UString_Vectors.Vector; Result : out .Models.ComDayCqDamCoreImplServletHealthCheckServletInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Dam_Core_Impl_Servlet_Health_Check_Servlet; -- overriding procedure Com_Day_Cq_Dam_Core_Impl_Servlet_Metadata_Get_Servlet (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Sling_Periodservlet_Periodresource_Types : in Swagger.Nullable_UString; Sling_Periodservlet_Periodmethods : in Swagger.Nullable_UString; Sling_Periodservlet_Periodextensions : in Swagger.Nullable_UString; Sling_Periodservlet_Periodselectors : in Swagger.Nullable_UString; Result : out .Models.ComDayCqDamCoreImplServletMetadataGetServletInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Dam_Core_Impl_Servlet_Metadata_Get_Servlet; -- overriding procedure Com_Day_Cq_Dam_Core_Impl_Servlet_Multiple_License_Accept_Servlet (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Perioddam_Perioddrm_Periodenable : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqDamCoreImplServletMultipleLicenseAcceptServletInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Dam_Core_Impl_Servlet_Multiple_License_Accept_Servlet; -- overriding procedure Com_Day_Cq_Dam_Core_Impl_Servlet_Resource_Collection_Servlet (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Sling_Periodservlet_Periodresource_Types : in Swagger.UString_Vectors.Vector; Sling_Periodservlet_Periodmethods : in Swagger.Nullable_UString; Sling_Periodservlet_Periodselectors : in Swagger.Nullable_UString; Download_Periodconfig : in Swagger.Nullable_UString; View_Periodselector : in Swagger.Nullable_UString; Send_Email : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqDamCoreImplServletResourceCollectionServletInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Dam_Core_Impl_Servlet_Resource_Collection_Servlet; -- overriding procedure Com_Day_Cq_Dam_Core_Impl_Ui_Preview_Folder_Preview_Updater_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Create_Preview_Enabled : in Swagger.Nullable_Boolean; Update_Preview_Enabled : in Swagger.Nullable_Boolean; Queue_Size : in Swagger.Nullable_Integer; Folder_Preview_Rendition_Regex : in Swagger.Nullable_UString; Result : out .Models.ComDayCqDamCoreImplUiPreviewFolderPreviewUpdaterImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Dam_Core_Impl_Ui_Preview_Folder_Preview_Updater_Impl; -- overriding procedure Com_Day_Cq_Dam_Core_Impl_Unzip_Unzip_Config (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Perioddam_Periodconfig_Periodunzip_Periodmaxuncompressedsize : in Swagger.Nullable_Integer; Cq_Perioddam_Periodconfig_Periodunzip_Periodencoding : in Swagger.Nullable_UString; Result : out .Models.ComDayCqDamCoreImplUnzipUnzipConfigInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Dam_Core_Impl_Unzip_Unzip_Config; -- overriding procedure Com_Day_Cq_Dam_Core_Process_Exif_Tool_Extract_Metadata_Process (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Process_Periodlabel : in Swagger.Nullable_UString; Cq_Perioddam_Periodenable_Periodsha1 : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqDamCoreProcessExifToolExtractMetadataProcessInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Dam_Core_Process_Exif_Tool_Extract_Metadata_Process; -- overriding procedure Com_Day_Cq_Dam_Core_Process_Extract_Metadata_Process (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Process_Periodlabel : in Swagger.Nullable_UString; Cq_Perioddam_Periodenable_Periodsha1 : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqDamCoreProcessExtractMetadataProcessInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Dam_Core_Process_Extract_Metadata_Process; -- overriding procedure Com_Day_Cq_Dam_Core_Process_Metadata_Processor_Process (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Process_Periodlabel : in Swagger.Nullable_UString; Cq_Perioddam_Periodenable_Periodsha1 : in Swagger.Nullable_Boolean; Cq_Perioddam_Periodmetadata_Periodxssprotected_Periodproperties : in Swagger.UString_Vectors.Vector; Result : out .Models.ComDayCqDamCoreProcessMetadataProcessorProcessInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Dam_Core_Process_Metadata_Processor_Process; -- overriding procedure Com_Day_Cq_Dam_Handler_Ffmpeg_Locator_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Executable_Periodsearchpath : in Swagger.UString_Vectors.Vector; Result : out .Models.ComDayCqDamHandlerFfmpegLocatorImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Dam_Handler_Ffmpeg_Locator_Impl; -- overriding procedure Com_Day_Cq_Dam_Handler_Gibson_Fontmanager_Impl_Font_Manager_Service_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Event_Periodfilter : in Swagger.Nullable_UString; Fontmgr_Periodsystem_Periodfont_Perioddir : in Swagger.UString_Vectors.Vector; Fontmgr_Periodadobe_Periodfont_Perioddir : in Swagger.Nullable_UString; Fontmgr_Periodcustomer_Periodfont_Perioddir : in Swagger.Nullable_UString; Result : out .Models.ComDayCqDamHandlerGibsonFontmanagerImplFontManagerServiceImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Dam_Handler_Gibson_Fontmanager_Impl_Font_Manager_Service_Impl; -- overriding procedure Com_Day_Cq_Dam_Handler_Standard_Pdf_Pdf_Handler (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Raster_Periodannotation : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqDamHandlerStandardPdfPdfHandlerInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Dam_Handler_Standard_Pdf_Pdf_Handler; -- overriding procedure Com_Day_Cq_Dam_Handler_Standard_Ps_Post_Script_Handler (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Raster_Periodannotation : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqDamHandlerStandardPsPostScriptHandlerInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Dam_Handler_Standard_Ps_Post_Script_Handler; -- overriding procedure Com_Day_Cq_Dam_Handler_Standard_Psd_Psd_Handler (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Large_File_Threshold : in Swagger.Nullable_Integer; Result : out .Models.ComDayCqDamHandlerStandardPsdPsdHandlerInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Dam_Handler_Standard_Psd_Psd_Handler; -- overriding procedure Com_Day_Cq_Dam_Ids_Impl_I_D_S_Job_Processor (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Enable_Periodmultisession : in Swagger.Nullable_Boolean; Ids_Periodcc_Periodenable : in Swagger.Nullable_Boolean; Enable_Periodretry : in Swagger.Nullable_Boolean; Enable_Periodretry_Periodscripterror : in Swagger.Nullable_Boolean; Externalizer_Perioddomain_Periodcqhost : in Swagger.Nullable_UString; Externalizer_Perioddomain_Periodhttp : in Swagger.Nullable_UString; Result : out .Models.ComDayCqDamIdsImplIDSJobProcessorInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Dam_Ids_Impl_I_D_S_Job_Processor; -- overriding procedure Com_Day_Cq_Dam_Ids_Impl_I_D_S_Pool_Manager_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Max_Perioderrors_Periodto_Periodblacklist : in Swagger.Nullable_Integer; Retry_Periodinterval_Periodto_Periodwhitelist : in Swagger.Nullable_Integer; Connect_Periodtimeout : in Swagger.Nullable_Integer; Socket_Periodtimeout : in Swagger.Nullable_Integer; Process_Periodlabel : in Swagger.Nullable_UString; Connection_Perioduse_Periodmax : in Swagger.Nullable_Integer; Result : out .Models.ComDayCqDamIdsImplIDSPoolManagerImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Dam_Ids_Impl_I_D_S_Pool_Manager_Impl; -- overriding procedure Com_Day_Cq_Dam_Indd_Impl_Handler_Indesign_X_M_P_Handler (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Process_Periodlabel : in Swagger.Nullable_UString; Extract_Periodpages : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqDamInddImplHandlerIndesignXMPHandlerInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Dam_Indd_Impl_Handler_Indesign_X_M_P_Handler; -- overriding procedure Com_Day_Cq_Dam_Indd_Impl_Servlet_Snippet_Creation_Servlet (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Snippetcreation_Periodmaxcollections : in Swagger.Nullable_Integer; Result : out .Models.ComDayCqDamInddImplServletSnippetCreationServletInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Dam_Indd_Impl_Servlet_Snippet_Creation_Servlet; -- overriding procedure Com_Day_Cq_Dam_Indd_Process_I_N_D_D_Media_Extract_Process (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Process_Periodlabel : in Swagger.Nullable_UString; Cq_Perioddam_Periodindd_Periodpages_Periodregex : in Swagger.Nullable_UString; Ids_Periodjob_Perioddecoupled : in Swagger.Nullable_Boolean; Ids_Periodjob_Periodworkflow_Periodmodel : in Swagger.Nullable_UString; Result : out .Models.ComDayCqDamInddProcessINDDMediaExtractProcessInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Dam_Indd_Process_I_N_D_D_Media_Extract_Process; -- overriding procedure Com_Day_Cq_Dam_Performance_Internal_Asset_Performance_Data_Handler_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Batch_Periodcommit_Periodsize : in Swagger.Nullable_Integer; Result : out .Models.ComDayCqDamPerformanceInternalAssetPerformanceDataHandlerImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Dam_Performance_Internal_Asset_Performance_Data_Handler_Impl; -- overriding procedure Com_Day_Cq_Dam_Performance_Internal_Asset_Performance_Report_Sync_Job (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Scheduler_Periodexpression : in Swagger.Nullable_UString; Result : out .Models.ComDayCqDamPerformanceInternalAssetPerformanceReportSyncJobInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Dam_Performance_Internal_Asset_Performance_Report_Sync_Job; -- overriding procedure Com_Day_Cq_Dam_Pim_Impl_Sourcing_Upload_Process_Product_Assets_Upload_Pro (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Delete_Periodzip_Periodfile : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqDamPimImplSourcingUploadProcessProductAssetsUploadProInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Dam_Pim_Impl_Sourcing_Upload_Process_Product_Assets_Upload_Pro; -- overriding procedure Com_Day_Cq_Dam_S7dam_Common_Analytics_Impl_S7dam_Dynamic_Media_Config_Even (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Perioddam_Periods7dam_Perioddynamicmediaconfigeventlistener_Periodenabled : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqDamS7damCommonAnalyticsImplS7damDynamicMediaConfigEvenInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Dam_S7dam_Common_Analytics_Impl_S7dam_Dynamic_Media_Config_Even; -- overriding procedure Com_Day_Cq_Dam_S7dam_Common_Analytics_Impl_Site_Catalyst_Report_Runner (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Scheduler_Periodexpression : in Swagger.Nullable_UString; Scheduler_Periodconcurrent : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqDamS7damCommonAnalyticsImplSiteCatalystReportRunnerInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Dam_S7dam_Common_Analytics_Impl_Site_Catalyst_Report_Runner; -- overriding procedure Com_Day_Cq_Dam_S7dam_Common_Post_Servlets_Set_Create_Handler (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Sling_Periodpost_Periodoperation : in Swagger.Nullable_UString; Sling_Periodservlet_Periodmethods : in Swagger.Nullable_UString; Result : out .Models.ComDayCqDamS7damCommonPostServletsSetCreateHandlerInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Dam_S7dam_Common_Post_Servlets_Set_Create_Handler; -- overriding procedure Com_Day_Cq_Dam_S7dam_Common_Post_Servlets_Set_Modify_Handler (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Sling_Periodpost_Periodoperation : in Swagger.Nullable_UString; Sling_Periodservlet_Periodmethods : in Swagger.Nullable_UString; Result : out .Models.ComDayCqDamS7damCommonPostServletsSetModifyHandlerInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Dam_S7dam_Common_Post_Servlets_Set_Modify_Handler; -- overriding procedure Com_Day_Cq_Dam_S7dam_Common_Process_Video_Thumbnail_Download_Process (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Process_Periodlabel : in Swagger.Nullable_UString; Result : out .Models.ComDayCqDamS7damCommonProcessVideoThumbnailDownloadProcessInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Dam_S7dam_Common_Process_Video_Thumbnail_Download_Process; -- overriding procedure Com_Day_Cq_Dam_S7dam_Common_S7dam_Dam_Change_Event_Listener (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Perioddam_Periods7dam_Perioddamchangeeventlistener_Periodenabled : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqDamS7damCommonS7damDamChangeEventListenerInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Dam_S7dam_Common_S7dam_Dam_Change_Event_Listener; -- overriding procedure Com_Day_Cq_Dam_S7dam_Common_Servlets_S7dam_Product_Info_Servlet (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Sling_Periodservlet_Periodpaths : in Swagger.Nullable_UString; Sling_Periodservlet_Periodmethods : in Swagger.Nullable_UString; Result : out .Models.ComDayCqDamS7damCommonServletsS7damProductInfoServletInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Dam_S7dam_Common_Servlets_S7dam_Product_Info_Servlet; -- overriding procedure Com_Day_Cq_Dam_S7dam_Common_Video_Impl_Video_Proxy_Client_Service_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Perioddam_Periods7dam_Periodvideoproxyclientservice_Periodmultipartupload_Periodminsize_Periodname : in Swagger.Nullable_Integer; Cq_Perioddam_Periods7dam_Periodvideoproxyclientservice_Periodmultipartupload_Periodpartsize_Periodname : in Swagger.Nullable_Integer; Cq_Perioddam_Periods7dam_Periodvideoproxyclientservice_Periodmultipartupload_Periodnumthread_Periodname : in Swagger.Nullable_Integer; Cq_Perioddam_Periods7dam_Periodvideoproxyclientservice_Periodhttp_Periodreadtimeout_Periodname : in Swagger.Nullable_Integer; Cq_Perioddam_Periods7dam_Periodvideoproxyclientservice_Periodhttp_Periodconnectiontimeout_Periodname : in Swagger.Nullable_Integer; Cq_Perioddam_Periods7dam_Periodvideoproxyclientservice_Periodhttp_Periodmaxretrycount_Periodname : in Swagger.Nullable_Integer; Cq_Perioddam_Periods7dam_Periodvideoproxyclientservice_Perioduploadprogress_Periodinterval_Periodname : in Swagger.Nullable_Integer; Result : out .Models.ComDayCqDamS7damCommonVideoImplVideoProxyClientServiceImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Dam_S7dam_Common_Video_Impl_Video_Proxy_Client_Service_Impl; -- overriding procedure Com_Day_Cq_Dam_Scene7_Impl_Scene7_A_P_I_Client_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Perioddam_Periodscene7_Periodapiclient_Periodrecordsperpage_Periodnofilter_Periodname : in Swagger.Nullable_Integer; Cq_Perioddam_Periodscene7_Periodapiclient_Periodrecordsperpage_Periodwithfilter_Periodname : in Swagger.Nullable_Integer; Result : out .Models.ComDayCqDamScene7ImplScene7APIClientImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Dam_Scene7_Impl_Scene7_A_P_I_Client_Impl; -- overriding procedure Com_Day_Cq_Dam_Scene7_Impl_Scene7_Asset_Mime_Type_Service_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Perioddam_Periodscene7_Periodassetmimetypeservice_Periodmapping : in Swagger.UString_Vectors.Vector; Result : out .Models.ComDayCqDamScene7ImplScene7AssetMimeTypeServiceImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Dam_Scene7_Impl_Scene7_Asset_Mime_Type_Service_Impl; -- overriding procedure Com_Day_Cq_Dam_Scene7_Impl_Scene7_Configuration_Event_Listener (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Perioddam_Periodscene7_Periodconfigurationeventlistener_Periodenabled : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqDamScene7ImplScene7ConfigurationEventListenerInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Dam_Scene7_Impl_Scene7_Configuration_Event_Listener; -- overriding procedure Com_Day_Cq_Dam_Scene7_Impl_Scene7_Dam_Change_Event_Listener (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Perioddam_Periodscene7_Perioddamchangeeventlistener_Periodenabled : in Swagger.Nullable_Boolean; Cq_Perioddam_Periodscene7_Perioddamchangeeventlistener_Periodobserved_Periodpaths : in Swagger.UString_Vectors.Vector; Result : out .Models.ComDayCqDamScene7ImplScene7DamChangeEventListenerInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Dam_Scene7_Impl_Scene7_Dam_Change_Event_Listener; -- overriding procedure Com_Day_Cq_Dam_Scene7_Impl_Scene7_Flash_Templates_Service_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Scene7_Flash_Templates_Periodrti : in Swagger.Nullable_UString; Scene7_Flash_Templates_Periodrsi : in Swagger.Nullable_UString; Scene7_Flash_Templates_Periodrb : in Swagger.Nullable_UString; Scene7_Flash_Templates_Periodrurl : in Swagger.Nullable_UString; Scene7_Flash_Template_Periodurl_Format_Parameter : in Swagger.Nullable_UString; Result : out .Models.ComDayCqDamScene7ImplScene7FlashTemplatesServiceImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Dam_Scene7_Impl_Scene7_Flash_Templates_Service_Impl; -- overriding procedure Com_Day_Cq_Dam_Scene7_Impl_Scene7_Upload_Service_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Perioddam_Periodscene7_Perioduploadservice_Periodactivejobtimeout_Periodlabel : in Swagger.Nullable_Integer; Cq_Perioddam_Periodscene7_Perioduploadservice_Periodconnectionmaxperroute_Periodlabel : in Swagger.Nullable_Integer; Result : out .Models.ComDayCqDamScene7ImplScene7UploadServiceImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Dam_Scene7_Impl_Scene7_Upload_Service_Impl; -- overriding procedure Com_Day_Cq_Dam_Stock_Integration_Impl_Cache_Stock_Cache_Configuration_Ser (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Get_Cache_Expiration_Unit : in Swagger.Nullable_UString; Get_Cache_Expiration_Value : in Swagger.Nullable_Integer; Result : out .Models.ComDayCqDamStockIntegrationImplCacheStockCacheConfigurationSerInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Dam_Stock_Integration_Impl_Cache_Stock_Cache_Configuration_Ser; -- overriding procedure Com_Day_Cq_Dam_Stock_Integration_Impl_Configuration_Stock_Configuration (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Name : in Swagger.Nullable_UString; Locale : in Swagger.Nullable_UString; Ims_Config : in Swagger.Nullable_UString; Result : out .Models.ComDayCqDamStockIntegrationImplConfigurationStockConfigurationInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Dam_Stock_Integration_Impl_Configuration_Stock_Configuration; -- overriding procedure Com_Day_Cq_Dam_Video_Impl_Servlet_Video_Test_Servlet (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Enabled : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqDamVideoImplServletVideoTestServletInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Dam_Video_Impl_Servlet_Video_Test_Servlet; -- overriding procedure Com_Day_Cq_Extwidget_Servlets_Image_Sprite_Servlet (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Max_Width : in Swagger.Nullable_Integer; Max_Height : in Swagger.Nullable_Integer; Result : out .Models.ComDayCqExtwidgetServletsImageSpriteServletInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Extwidget_Servlets_Image_Sprite_Servlet; -- overriding procedure Com_Day_Cq_Image_Internal_Font_Font_Helper (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Fontpath : in Swagger.UString_Vectors.Vector; Oversampling_Factor : in Swagger.Nullable_Integer; Result : out .Models.ComDayCqImageInternalFontFontHelperInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Image_Internal_Font_Font_Helper; -- overriding procedure Com_Day_Cq_Jcrclustersupport_Cluster_Start_Level_Controller (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cluster_Periodlevel_Periodenable : in Swagger.Nullable_Boolean; Cluster_Periodmaster_Periodlevel : in Swagger.Nullable_Integer; Cluster_Periodslave_Periodlevel : in Swagger.Nullable_Integer; Result : out .Models.ComDayCqJcrclustersupportClusterStartLevelControllerInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Jcrclustersupport_Cluster_Start_Level_Controller; -- overriding procedure Com_Day_Cq_Mailer_Default_Mail_Service (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Smtp_Periodhost : in Swagger.Nullable_UString; Smtp_Periodport : in Swagger.Nullable_Integer; Smtp_Perioduser : in Swagger.Nullable_UString; Smtp_Periodpassword : in Swagger.Nullable_UString; From_Periodaddress : in Swagger.Nullable_UString; Smtp_Periodssl : in Swagger.Nullable_Boolean; Smtp_Periodstarttls : in Swagger.Nullable_Boolean; Debug_Periodemail : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqMailerDefaultMailServiceInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Mailer_Default_Mail_Service; -- overriding procedure Com_Day_Cq_Mailer_Impl_Cq_Mailing_Service (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Max_Periodrecipient_Periodcount : in Swagger.Nullable_UString; Result : out .Models.ComDayCqMailerImplCqMailingServiceInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Mailer_Impl_Cq_Mailing_Service; -- overriding procedure Com_Day_Cq_Mailer_Impl_Email_Cq_Email_Template_Factory (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Mailer_Periodemail_Periodcharset : in Swagger.Nullable_UString; Result : out .Models.ComDayCqMailerImplEmailCqEmailTemplateFactoryInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Mailer_Impl_Email_Cq_Email_Template_Factory; -- overriding procedure Com_Day_Cq_Mailer_Impl_Email_Cq_Retriever_Template_Factory (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Mailer_Periodemail_Periodembed : in Swagger.Nullable_Boolean; Mailer_Periodemail_Periodcharset : in Swagger.Nullable_UString; Mailer_Periodemail_Periodretriever_User_I_D : in Swagger.Nullable_UString; Mailer_Periodemail_Periodretriever_User_P_W_D : in Swagger.Nullable_UString; Result : out .Models.ComDayCqMailerImplEmailCqRetrieverTemplateFactoryInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Mailer_Impl_Email_Cq_Retriever_Template_Factory; -- overriding procedure Com_Day_Cq_Mcm_Campaign_Impl_Integration_Config_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Aem_Periodmcm_Periodcampaign_Periodform_Constraints : in Swagger.UString_Vectors.Vector; Aem_Periodmcm_Periodcampaign_Periodpublic_Url : in Swagger.Nullable_UString; Aem_Periodmcm_Periodcampaign_Periodrelaxed_S_S_L : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqMcmCampaignImplIntegrationConfigImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Mcm_Campaign_Impl_Integration_Config_Impl; -- overriding procedure Com_Day_Cq_Mcm_Campaign_Importer_Personalized_Text_Handler_Factory (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Service_Periodranking : in Swagger.Nullable_Integer; Tagpattern : in Swagger.Nullable_UString; Result : out .Models.ComDayCqMcmCampaignImporterPersonalizedTextHandlerFactoryInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Mcm_Campaign_Importer_Personalized_Text_Handler_Factory; -- overriding procedure Com_Day_Cq_Mcm_Core_Newsletter_Newsletter_Email_Service_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; From_Periodaddress : in Swagger.Nullable_UString; Sender_Periodhost : in Swagger.Nullable_UString; Max_Periodbounce_Periodcount : in Swagger.Nullable_UString; Result : out .Models.ComDayCqMcmCoreNewsletterNewsletterEmailServiceImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Mcm_Core_Newsletter_Newsletter_Email_Service_Impl; -- overriding procedure Com_Day_Cq_Mcm_Impl_M_C_M_Configuration (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Experience_Periodindirection : in Swagger.UString_Vectors.Vector; Touchpoint_Periodindirection : in Swagger.UString_Vectors.Vector; Result : out .Models.ComDayCqMcmImplMCMConfigurationInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Mcm_Impl_M_C_M_Configuration; -- overriding procedure Com_Day_Cq_Mcm_Landingpage_Parser_Taghandlers_Cta_Click_Through_Componen (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Service_Periodranking : in Swagger.Nullable_Integer; Tagpattern : in Swagger.Nullable_UString; Component_Periodresource_Type : in Swagger.Nullable_UString; Result : out .Models.ComDayCqMcmLandingpageParserTaghandlersCtaClickThroughComponenInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Mcm_Landingpage_Parser_Taghandlers_Cta_Click_Through_Componen; -- overriding procedure Com_Day_Cq_Mcm_Landingpage_Parser_Taghandlers_Cta_Graphical_Click_Throug (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Service_Periodranking : in Swagger.Nullable_Integer; Tagpattern : in Swagger.Nullable_UString; Component_Periodresource_Type : in Swagger.Nullable_UString; Result : out .Models.ComDayCqMcmLandingpageParserTaghandlersCtaGraphicalClickThrougInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Mcm_Landingpage_Parser_Taghandlers_Cta_Graphical_Click_Throug; -- overriding procedure Com_Day_Cq_Mcm_Landingpage_Parser_Taghandlers_Cta_Lead_Form_C_T_A_Component (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Service_Periodranking : in Swagger.Nullable_Integer; Tagpattern : in Swagger.Nullable_UString; Result : out .Models.ComDayCqMcmLandingpageParserTaghandlersCtaLeadFormCTAComponentInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Mcm_Landingpage_Parser_Taghandlers_Cta_Lead_Form_C_T_A_Component; -- overriding procedure Com_Day_Cq_Mcm_Landingpage_Parser_Taghandlers_Mbox_M_Box_Experience_Tag_Ha (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Service_Periodranking : in Swagger.Nullable_Integer; Tagpattern : in Swagger.Nullable_UString; Result : out .Models.ComDayCqMcmLandingpageParserTaghandlersMboxMBoxExperienceTagHaInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Mcm_Landingpage_Parser_Taghandlers_Mbox_M_Box_Experience_Tag_Ha; -- overriding procedure Com_Day_Cq_Mcm_Landingpage_Parser_Taghandlers_Mbox_Target_Component_Tag_H (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Service_Periodranking : in Swagger.Nullable_Integer; Tagpattern : in Swagger.Nullable_UString; Component_Periodresource_Type : in Swagger.Nullable_UString; Result : out .Models.ComDayCqMcmLandingpageParserTaghandlersMboxTargetComponentTagHInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Mcm_Landingpage_Parser_Taghandlers_Mbox_Target_Component_Tag_H; -- overriding procedure Com_Day_Cq_Notification_Impl_Notification_Service_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Event_Periodfilter : in Swagger.Nullable_UString; Result : out .Models.ComDayCqNotificationImplNotificationServiceImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Notification_Impl_Notification_Service_Impl; -- overriding procedure Com_Day_Cq_Personalization_Impl_Servlets_Targeting_Configuration_Servlet (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Forcelocation : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqPersonalizationImplServletsTargetingConfigurationServletInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Personalization_Impl_Servlets_Targeting_Configuration_Servlet; -- overriding procedure Com_Day_Cq_Polling_Importer_Impl_Managed_Poll_Config_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Id : in Swagger.Nullable_UString; Enabled : in Swagger.Nullable_Boolean; Reference : in Swagger.Nullable_Boolean; Interval : in Swagger.Nullable_Integer; Expression : in Swagger.Nullable_UString; Source : in Swagger.Nullable_UString; Target : in Swagger.Nullable_UString; Login : in Swagger.Nullable_UString; Password : in Swagger.Nullable_UString; Result : out .Models.ComDayCqPollingImporterImplManagedPollConfigImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Polling_Importer_Impl_Managed_Poll_Config_Impl; -- overriding procedure Com_Day_Cq_Polling_Importer_Impl_Managed_Polling_Importer_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Importer_Perioduser : in Swagger.Nullable_UString; Result : out .Models.ComDayCqPollingImporterImplManagedPollingImporterImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Polling_Importer_Impl_Managed_Polling_Importer_Impl; -- overriding procedure Com_Day_Cq_Polling_Importer_Impl_Polling_Importer_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Importer_Periodmin_Periodinterval : in Swagger.Nullable_Integer; Importer_Perioduser : in Swagger.Nullable_UString; Exclude_Periodpaths : in Swagger.UString_Vectors.Vector; Include_Periodpaths : in Swagger.UString_Vectors.Vector; Result : out .Models.ComDayCqPollingImporterImplPollingImporterImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Polling_Importer_Impl_Polling_Importer_Impl; -- overriding procedure Com_Day_Cq_Replication_Audit_Replication_Event_Listener (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Service_Periodranking : in Swagger.Nullable_Integer; Result : out .Models.ComDayCqReplicationAuditReplicationEventListenerInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Replication_Audit_Replication_Event_Listener; -- overriding procedure Com_Day_Cq_Replication_Content_Static_Content_Builder (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Host : in Swagger.Nullable_UString; Port : in Swagger.Nullable_Integer; Result : out .Models.ComDayCqReplicationContentStaticContentBuilderInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Replication_Content_Static_Content_Builder; -- overriding procedure Com_Day_Cq_Replication_Impl_Agent_Manager_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Job_Periodtopics : in Swagger.Nullable_UString; Service_User_Periodtarget : in Swagger.Nullable_UString; Agent_Provider_Periodtarget : in Swagger.Nullable_UString; Result : out .Models.ComDayCqReplicationImplAgentManagerImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Replication_Impl_Agent_Manager_Impl; -- overriding procedure Com_Day_Cq_Replication_Impl_Content_Durbo_Binary_Less_Content_Builder (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Binary_Periodthreshold : in Swagger.Nullable_Integer; Result : out .Models.ComDayCqReplicationImplContentDurboBinaryLessContentBuilderInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Replication_Impl_Content_Durbo_Binary_Less_Content_Builder; -- overriding procedure Com_Day_Cq_Replication_Impl_Content_Durbo_Durbo_Import_Configuration_Prov (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Preserve_Periodhierarchy_Periodnodes : in Swagger.Nullable_Boolean; Ignore_Periodversioning : in Swagger.Nullable_Boolean; Import_Periodacl : in Swagger.Nullable_Boolean; Save_Periodthreshold : in Swagger.Nullable_Integer; Preserve_Perioduser_Periodpaths : in Swagger.Nullable_Boolean; Preserve_Perioduuid : in Swagger.Nullable_Boolean; Preserve_Perioduuid_Periodnodetypes : in Swagger.UString_Vectors.Vector; Preserve_Perioduuid_Periodsubtrees : in Swagger.UString_Vectors.Vector; Auto_Periodcommit : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqReplicationImplContentDurboDurboImportConfigurationProvInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Replication_Impl_Content_Durbo_Durbo_Import_Configuration_Prov; -- overriding procedure Com_Day_Cq_Replication_Impl_Replication_Content_Factory_Provider_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Replication_Periodcontent_Perioduse_File_Storage : in Swagger.Nullable_Boolean; Replication_Periodcontent_Periodmax_Commit_Attempts : in Swagger.Nullable_Integer; Result : out .Models.ComDayCqReplicationImplReplicationContentFactoryProviderImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Replication_Impl_Replication_Content_Factory_Provider_Impl; -- overriding procedure Com_Day_Cq_Replication_Impl_Replication_Receiver_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Receiver_Periodtmpfile_Periodthreshold : in Swagger.Nullable_Integer; Receiver_Periodpackages_Perioduse_Periodinstall : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqReplicationImplReplicationReceiverImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Replication_Impl_Replication_Receiver_Impl; -- overriding procedure Com_Day_Cq_Replication_Impl_Replicator_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Distribute_Events : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqReplicationImplReplicatorImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Replication_Impl_Replicator_Impl; -- overriding procedure Com_Day_Cq_Replication_Impl_Reverse_Replicator (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Scheduler_Periodperiod : in Swagger.Nullable_Integer; Result : out .Models.ComDayCqReplicationImplReverseReplicatorInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Replication_Impl_Reverse_Replicator; -- overriding procedure Com_Day_Cq_Replication_Impl_Transport_Binary_Less_Transport_Handler (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Disabled_Periodcipher_Periodsuites : in Swagger.UString_Vectors.Vector; Enabled_Periodcipher_Periodsuites : in Swagger.UString_Vectors.Vector; Result : out .Models.ComDayCqReplicationImplTransportBinaryLessTransportHandlerInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Replication_Impl_Transport_Binary_Less_Transport_Handler; -- overriding procedure Com_Day_Cq_Replication_Impl_Transport_Http (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Disabled_Periodcipher_Periodsuites : in Swagger.UString_Vectors.Vector; Enabled_Periodcipher_Periodsuites : in Swagger.UString_Vectors.Vector; Result : out .Models.ComDayCqReplicationImplTransportHttpInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Replication_Impl_Transport_Http; -- overriding procedure Com_Day_Cq_Reporting_Impl_Cache_Cache_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Repcache_Periodenable : in Swagger.Nullable_Boolean; Repcache_Periodttl : in Swagger.Nullable_Integer; Repcache_Periodmax : in Swagger.Nullable_Integer; Result : out .Models.ComDayCqReportingImplCacheCacheImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Reporting_Impl_Cache_Cache_Impl; -- overriding procedure Com_Day_Cq_Reporting_Impl_Config_Service_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Repconf_Periodtimezone : in Swagger.Nullable_UString; Repconf_Periodlocale : in Swagger.Nullable_UString; Repconf_Periodsnapshots : in Swagger.Nullable_UString; Repconf_Periodrepdir : in Swagger.Nullable_UString; Repconf_Periodhourofday : in Swagger.Nullable_Integer; Repconf_Periodminofhour : in Swagger.Nullable_Integer; Repconf_Periodmaxrows : in Swagger.Nullable_Integer; Repconf_Periodfakedata : in Swagger.Nullable_Boolean; Repconf_Periodsnapshotuser : in Swagger.Nullable_UString; Repconf_Periodenforcesnapshotuser : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqReportingImplConfigServiceImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Reporting_Impl_Config_Service_Impl; -- overriding procedure Com_Day_Cq_Reporting_Impl_R_Log_Analyzer (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Request_Periodlog_Periodoutput : in Swagger.Nullable_UString; Result : out .Models.ComDayCqReportingImplRLogAnalyzerInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Reporting_Impl_R_Log_Analyzer; -- overriding procedure Com_Day_Cq_Rewriter_Linkchecker_Impl_Link_Checker_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Scheduler_Periodperiod : in Swagger.Nullable_Integer; Scheduler_Periodconcurrent : in Swagger.Nullable_Boolean; Service_Periodbad_Link_Tolerance_Interval : in Swagger.Nullable_Integer; Service_Periodcheck_Override_Patterns : in Swagger.UString_Vectors.Vector; Service_Periodcache_Broken_Internal_Links : in Swagger.Nullable_Boolean; Service_Periodspecial_Link_Prefix : in Swagger.UString_Vectors.Vector; Service_Periodspecial_Link_Patterns : in Swagger.UString_Vectors.Vector; Result : out .Models.ComDayCqRewriterLinkcheckerImplLinkCheckerImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Rewriter_Linkchecker_Impl_Link_Checker_Impl; -- overriding procedure Com_Day_Cq_Rewriter_Linkchecker_Impl_Link_Checker_Task (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Scheduler_Periodperiod : in Swagger.Nullable_Integer; Scheduler_Periodconcurrent : in Swagger.Nullable_Boolean; Good_Link_Test_Interval : in Swagger.Nullable_Integer; Bad_Link_Test_Interval : in Swagger.Nullable_Integer; Link_Unused_Interval : in Swagger.Nullable_Integer; Connection_Periodtimeout : in Swagger.Nullable_Integer; Result : out .Models.ComDayCqRewriterLinkcheckerImplLinkCheckerTaskInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Rewriter_Linkchecker_Impl_Link_Checker_Task; -- overriding procedure Com_Day_Cq_Rewriter_Linkchecker_Impl_Link_Checker_Transformer_Factory (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Linkcheckertransformer_Perioddisable_Rewriting : in Swagger.Nullable_Boolean; Linkcheckertransformer_Perioddisable_Checking : in Swagger.Nullable_Boolean; Linkcheckertransformer_Periodmap_Cache_Size : in Swagger.Nullable_Integer; Linkcheckertransformer_Periodstrict_Extension_Check : in Swagger.Nullable_Boolean; Linkcheckertransformer_Periodstrip_Htmlt_Extension : in Swagger.Nullable_Boolean; Linkcheckertransformer_Periodrewrite_Elements : in Swagger.UString_Vectors.Vector; Linkcheckertransformer_Periodstrip_Extension_Path_Blacklist : in Swagger.UString_Vectors.Vector; Result : out .Models.ComDayCqRewriterLinkcheckerImplLinkCheckerTransformerFactoryInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Rewriter_Linkchecker_Impl_Link_Checker_Transformer_Factory; -- overriding procedure Com_Day_Cq_Rewriter_Linkchecker_Impl_Link_Info_Storage_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Service_Periodmax_Links_Per_Host : in Swagger.Nullable_Integer; Service_Periodsave_External_Link_References : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqRewriterLinkcheckerImplLinkInfoStorageImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Rewriter_Linkchecker_Impl_Link_Info_Storage_Impl; -- overriding procedure Com_Day_Cq_Rewriter_Processor_Impl_Html_Parser_Factory (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Htmlparser_Periodprocess_Tags : in Swagger.UString_Vectors.Vector; Htmlparser_Periodpreserve_Camel_Case : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqRewriterProcessorImplHtmlParserFactoryInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Rewriter_Processor_Impl_Html_Parser_Factory; -- overriding procedure Com_Day_Cq_Search_Impl_Builder_Query_Builder_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Excerpt_Periodproperties : in Swagger.UString_Vectors.Vector; Cache_Periodmax_Periodentries : in Swagger.Nullable_Integer; Cache_Periodentry_Periodlifetime : in Swagger.Nullable_Integer; Xpath_Periodunion : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqSearchImplBuilderQueryBuilderImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Search_Impl_Builder_Query_Builder_Impl; -- overriding procedure Com_Day_Cq_Search_Suggest_Impl_Suggestion_Index_Manager_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Path_Builder_Periodtarget : in Swagger.Nullable_UString; Suggest_Periodbasepath : in Swagger.Nullable_UString; Result : out .Models.ComDayCqSearchSuggestImplSuggestionIndexManagerImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Search_Suggest_Impl_Suggestion_Index_Manager_Impl; -- overriding procedure Com_Day_Cq_Searchpromote_Impl_Publish_Search_Promote_Config_Handler (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Periodsearchpromote_Periodconfighandler_Periodenabled : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqSearchpromoteImplPublishSearchPromoteConfigHandlerInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Searchpromote_Impl_Publish_Search_Promote_Config_Handler; -- overriding procedure Com_Day_Cq_Searchpromote_Impl_Search_Promote_Service_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Periodsearchpromote_Periodconfiguration_Periodserver_Perioduri : in Swagger.Nullable_UString; Cq_Periodsearchpromote_Periodconfiguration_Periodenvironment : in Swagger.Nullable_UString; Connection_Periodtimeout : in Swagger.Nullable_Integer; Socket_Periodtimeout : in Swagger.Nullable_Integer; Result : out .Models.ComDayCqSearchpromoteImplSearchPromoteServiceImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Searchpromote_Impl_Search_Promote_Service_Impl; -- overriding procedure Com_Day_Cq_Security_A_C_L_Setup (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Periodaclsetup_Periodrules : in Swagger.UString_Vectors.Vector; Result : out .Models.ComDayCqSecurityACLSetupInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Security_A_C_L_Setup; -- overriding procedure Com_Day_Cq_Statistics_Impl_Statistics_Service_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Scheduler_Periodperiod : in Swagger.Nullable_Integer; Scheduler_Periodconcurrent : in Swagger.Nullable_Boolean; Path : in Swagger.Nullable_UString; Workspace : in Swagger.Nullable_UString; Keywords_Path : in Swagger.Nullable_UString; Async_Entries : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqStatisticsImplStatisticsServiceImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Statistics_Impl_Statistics_Service_Impl; -- overriding procedure Com_Day_Cq_Tagging_Impl_Jcr_Tag_Manager_Factory_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Validation_Periodenabled : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqTaggingImplJcrTagManagerFactoryImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Tagging_Impl_Jcr_Tag_Manager_Factory_Impl; -- overriding procedure Com_Day_Cq_Tagging_Impl_Search_Tag_Predicate_Evaluator (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Ignore_Path : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqTaggingImplSearchTagPredicateEvaluatorInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Tagging_Impl_Search_Tag_Predicate_Evaluator; -- overriding procedure Com_Day_Cq_Tagging_Impl_Tag_Garbage_Collector (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Scheduler_Periodexpression : in Swagger.Nullable_UString; Result : out .Models.ComDayCqTaggingImplTagGarbageCollectorInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Tagging_Impl_Tag_Garbage_Collector; -- overriding procedure Com_Day_Cq_Wcm_Contentsync_Impl_Handler_Pages_Update_Handler (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Periodpagesupdatehandler_Periodimageresourcetypes : in Swagger.UString_Vectors.Vector; Result : out .Models.ComDayCqWcmContentsyncImplHandlerPagesUpdateHandlerInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Wcm_Contentsync_Impl_Handler_Pages_Update_Handler; -- overriding procedure Com_Day_Cq_Wcm_Contentsync_Impl_Rewriter_Path_Rewriter_Transformer_Factor (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Periodcontentsync_Periodpathrewritertransformer_Periodmapping_Periodlinks : in Swagger.UString_Vectors.Vector; Cq_Periodcontentsync_Periodpathrewritertransformer_Periodmapping_Periodclientlibs : in Swagger.UString_Vectors.Vector; Cq_Periodcontentsync_Periodpathrewritertransformer_Periodmapping_Periodimages : in Swagger.UString_Vectors.Vector; Cq_Periodcontentsync_Periodpathrewritertransformer_Periodattribute_Periodpattern : in Swagger.Nullable_UString; Cq_Periodcontentsync_Periodpathrewritertransformer_Periodclientlibrary_Periodpattern : in Swagger.Nullable_UString; Cq_Periodcontentsync_Periodpathrewritertransformer_Periodclientlibrary_Periodreplace : in Swagger.Nullable_UString; Result : out .Models.ComDayCqWcmContentsyncImplRewriterPathRewriterTransformerFactorInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Wcm_Contentsync_Impl_Rewriter_Path_Rewriter_Transformer_Factor; -- overriding procedure Com_Day_Cq_Wcm_Core_Impl_Authoring_U_I_Mode_Service_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Authoring_U_I_Mode_Service_Perioddefault : in Swagger.Nullable_UString; Result : out .Models.ComDayCqWcmCoreImplAuthoringUIModeServiceImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Wcm_Core_Impl_Authoring_U_I_Mode_Service_Impl; -- overriding procedure Com_Day_Cq_Wcm_Core_Impl_Commands_W_C_M_Command_Servlet (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Wcmcommandservlet_Perioddelete_Whitelist : in Swagger.UString_Vectors.Vector; Result : out .Models.ComDayCqWcmCoreImplCommandsWCMCommandServletInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Wcm_Core_Impl_Commands_W_C_M_Command_Servlet; -- overriding procedure Com_Day_Cq_Wcm_Core_Impl_Devicedetection_Device_Identification_Mode_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Dim_Perioddefault_Periodmode : in Swagger.Nullable_UString; Dim_Periodappcache_Periodenabled : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqWcmCoreImplDevicedetectionDeviceIdentificationModeImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Wcm_Core_Impl_Devicedetection_Device_Identification_Mode_Impl; -- overriding procedure Com_Day_Cq_Wcm_Core_Impl_Event_Page_Event_Audit_Listener (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Configured : in Swagger.Nullable_UString; Result : out .Models.ComDayCqWcmCoreImplEventPageEventAuditListenerInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Wcm_Core_Impl_Event_Page_Event_Audit_Listener; -- overriding procedure Com_Day_Cq_Wcm_Core_Impl_Event_Page_Post_Processor (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Paths : in Swagger.UString_Vectors.Vector; Result : out .Models.ComDayCqWcmCoreImplEventPagePostProcessorInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Wcm_Core_Impl_Event_Page_Post_Processor; -- overriding procedure Com_Day_Cq_Wcm_Core_Impl_Event_Repository_Change_Event_Listener (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Paths : in Swagger.UString_Vectors.Vector; Excluded_Paths : in Swagger.UString_Vectors.Vector; Result : out .Models.ComDayCqWcmCoreImplEventRepositoryChangeEventListenerInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Wcm_Core_Impl_Event_Repository_Change_Event_Listener; -- overriding procedure Com_Day_Cq_Wcm_Core_Impl_Event_Template_Post_Processor (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Paths : in Swagger.Nullable_UString; Result : out .Models.ComDayCqWcmCoreImplEventTemplatePostProcessorInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Wcm_Core_Impl_Event_Template_Post_Processor; -- overriding procedure Com_Day_Cq_Wcm_Core_Impl_Language_Manager_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Langmgr_Periodlist_Periodpath : in Swagger.Nullable_UString; Langmgr_Periodcountry_Perioddefault : in Swagger.UString_Vectors.Vector; Result : out .Models.ComDayCqWcmCoreImplLanguageManagerImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Wcm_Core_Impl_Language_Manager_Impl; -- overriding procedure Com_Day_Cq_Wcm_Core_Impl_Link_Checker_Configuration_Factory_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Link_Periodexpired_Periodprefix : in Swagger.Nullable_UString; Link_Periodexpired_Periodremove : in Swagger.Nullable_Boolean; Link_Periodexpired_Periodsuffix : in Swagger.Nullable_UString; Link_Periodinvalid_Periodprefix : in Swagger.Nullable_UString; Link_Periodinvalid_Periodremove : in Swagger.Nullable_Boolean; Link_Periodinvalid_Periodsuffix : in Swagger.Nullable_UString; Link_Periodpredated_Periodprefix : in Swagger.Nullable_UString; Link_Periodpredated_Periodremove : in Swagger.Nullable_Boolean; Link_Periodpredated_Periodsuffix : in Swagger.Nullable_UString; Link_Periodwcmmodes : in Swagger.UString_Vectors.Vector; Result : out .Models.ComDayCqWcmCoreImplLinkCheckerConfigurationFactoryImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Wcm_Core_Impl_Link_Checker_Configuration_Factory_Impl; -- overriding procedure Com_Day_Cq_Wcm_Core_Impl_Page_Page_Info_Aggregator_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Page_Periodinfo_Periodprovider_Periodproperty_Periodregex_Perioddefault : in Swagger.Nullable_UString; Page_Periodinfo_Periodprovider_Periodproperty_Periodname : in Swagger.Nullable_UString; Result : out .Models.ComDayCqWcmCoreImplPagePageInfoAggregatorImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Wcm_Core_Impl_Page_Page_Info_Aggregator_Impl; -- overriding procedure Com_Day_Cq_Wcm_Core_Impl_Page_Page_Manager_Factory_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Illegal_Char_Mapping : in Swagger.Nullable_UString; Page_Sub_Tree_Activation_Check : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqWcmCoreImplPagePageManagerFactoryImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Wcm_Core_Impl_Page_Page_Manager_Factory_Impl; -- overriding procedure Com_Day_Cq_Wcm_Core_Impl_References_Content_Content_Reference_Config (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Content_Reference_Config_Periodresource_Types : in Swagger.UString_Vectors.Vector; Result : out .Models.ComDayCqWcmCoreImplReferencesContentContentReferenceConfigInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Wcm_Core_Impl_References_Content_Content_Reference_Config; -- overriding procedure Com_Day_Cq_Wcm_Core_Impl_Servlets_Contentfinder_Asset_View_Handler (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Dam_Periodshowexpired : in Swagger.Nullable_Boolean; Dam_Periodshowhidden : in Swagger.Nullable_Boolean; Tag_Title_Search : in Swagger.Nullable_Boolean; Guess_Total : in Swagger.Nullable_UString; Dam_Periodexpiry_Property : in Swagger.Nullable_UString; Result : out .Models.ComDayCqWcmCoreImplServletsContentfinderAssetViewHandlerInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Wcm_Core_Impl_Servlets_Contentfinder_Asset_View_Handler; -- overriding procedure Com_Day_Cq_Wcm_Core_Impl_Servlets_Contentfinder_Connector_Connector_Vie (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Item_Periodresource_Periodtypes : in Swagger.UString_Vectors.Vector; Result : out .Models.ComDayCqWcmCoreImplServletsContentfinderConnectorConnectorVieInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Wcm_Core_Impl_Servlets_Contentfinder_Connector_Connector_Vie; -- overriding procedure Com_Day_Cq_Wcm_Core_Impl_Servlets_Contentfinder_Page_View_Handler (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Guess_Total : in Swagger.Nullable_UString; Tag_Title_Search : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqWcmCoreImplServletsContentfinderPageViewHandlerInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Wcm_Core_Impl_Servlets_Contentfinder_Page_View_Handler; -- overriding procedure Com_Day_Cq_Wcm_Core_Impl_Servlets_Find_Replace_Servlet (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Scope : in Swagger.UString_Vectors.Vector; Result : out .Models.ComDayCqWcmCoreImplServletsFindReplaceServletInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Wcm_Core_Impl_Servlets_Find_Replace_Servlet; -- overriding procedure Com_Day_Cq_Wcm_Core_Impl_Servlets_Reference_Search_Servlet (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Referencesearchservlet_Periodmax_References_Per_Page : in Swagger.Nullable_Integer; Referencesearchservlet_Periodmax_Pages : in Swagger.Nullable_Integer; Result : out .Models.ComDayCqWcmCoreImplServletsReferenceSearchServletInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Wcm_Core_Impl_Servlets_Reference_Search_Servlet; -- overriding procedure Com_Day_Cq_Wcm_Core_Impl_Servlets_Thumbnail_Servlet (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Workspace : in Swagger.Nullable_UString; Dimensions : in Swagger.UString_Vectors.Vector; Result : out .Models.ComDayCqWcmCoreImplServletsThumbnailServletInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Wcm_Core_Impl_Servlets_Thumbnail_Servlet; -- overriding procedure Com_Day_Cq_Wcm_Core_Impl_Utils_Default_Page_Name_Validator (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Non_Valid_Chars : in Swagger.Nullable_UString; Result : out .Models.ComDayCqWcmCoreImplUtilsDefaultPageNameValidatorInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Wcm_Core_Impl_Utils_Default_Page_Name_Validator; -- overriding procedure Com_Day_Cq_Wcm_Core_Impl_Variants_Page_Variants_Provider_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Default_Periodexternalizer_Perioddomain : in Swagger.Nullable_UString; Result : out .Models.ComDayCqWcmCoreImplVariantsPageVariantsProviderImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Wcm_Core_Impl_Variants_Page_Variants_Provider_Impl; -- overriding procedure Com_Day_Cq_Wcm_Core_Impl_Version_Manager_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Versionmanager_Periodcreate_Version_On_Activation : in Swagger.Nullable_Boolean; Versionmanager_Periodpurging_Enabled : in Swagger.Nullable_Boolean; Versionmanager_Periodpurge_Paths : in Swagger.UString_Vectors.Vector; Versionmanager_Periodiv_Paths : in Swagger.UString_Vectors.Vector; Versionmanager_Periodmax_Age_Days : in Swagger.Nullable_Integer; Versionmanager_Periodmax_Number_Versions : in Swagger.Nullable_Integer; Versionmanager_Periodmin_Number_Versions : in Swagger.Nullable_Integer; Result : out .Models.ComDayCqWcmCoreImplVersionManagerImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Wcm_Core_Impl_Version_Manager_Impl; -- overriding procedure Com_Day_Cq_Wcm_Core_Impl_Version_Purge_Task (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Versionpurge_Periodpaths : in Swagger.UString_Vectors.Vector; Versionpurge_Periodrecursive : in Swagger.Nullable_Boolean; Versionpurge_Periodmax_Versions : in Swagger.Nullable_Integer; Versionpurge_Periodmin_Versions : in Swagger.Nullable_Integer; Versionpurge_Periodmax_Age_Days : in Swagger.Nullable_Integer; Result : out .Models.ComDayCqWcmCoreImplVersionPurgeTaskInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Wcm_Core_Impl_Version_Purge_Task; -- overriding procedure Com_Day_Cq_Wcm_Core_Impl_W_C_M_Debug_Filter (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Wcmdbgfilter_Periodenabled : in Swagger.Nullable_Boolean; Wcmdbgfilter_Periodjsp_Debug : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqWcmCoreImplWCMDebugFilterInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Wcm_Core_Impl_W_C_M_Debug_Filter; -- overriding procedure Com_Day_Cq_Wcm_Core_Impl_W_C_M_Developer_Mode_Filter (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Wcmdevmodefilter_Periodenabled : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqWcmCoreImplWCMDeveloperModeFilterInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Wcm_Core_Impl_W_C_M_Developer_Mode_Filter; -- overriding procedure Com_Day_Cq_Wcm_Core_Impl_Warp_Time_Warp_Filter (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Filter_Periodorder : in Swagger.Nullable_UString; Filter_Periodscope : in Swagger.Nullable_UString; Result : out .Models.ComDayCqWcmCoreImplWarpTimeWarpFilterInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Wcm_Core_Impl_Warp_Time_Warp_Filter; -- overriding procedure Com_Day_Cq_Wcm_Core_Mvt_M_V_T_Statistics_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Mvtstatistics_Periodtrackingurl : in Swagger.Nullable_UString; Result : out .Models.ComDayCqWcmCoreMvtMVTStatisticsImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Wcm_Core_Mvt_M_V_T_Statistics_Impl; -- overriding procedure Com_Day_Cq_Wcm_Core_Stats_Page_View_Statistics_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Pageviewstatistics_Periodtrackingurl : in Swagger.Nullable_UString; Pageviewstatistics_Periodtrackingscript_Periodenabled : in Swagger.Nullable_UString; Result : out .Models.ComDayCqWcmCoreStatsPageViewStatisticsImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Wcm_Core_Stats_Page_View_Statistics_Impl; -- overriding procedure Com_Day_Cq_Wcm_Core_W_C_M_Request_Filter (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Wcmfilter_Periodmode : in Swagger.Nullable_UString; Result : out .Models.ComDayCqWcmCoreWCMRequestFilterInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Wcm_Core_W_C_M_Request_Filter; -- overriding procedure Com_Day_Cq_Wcm_Designimporter_Design_Package_Importer (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Extract_Periodfilter : in Swagger.UString_Vectors.Vector; Result : out .Models.ComDayCqWcmDesignimporterDesignPackageImporterInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Wcm_Designimporter_Design_Package_Importer; -- overriding procedure Com_Day_Cq_Wcm_Designimporter_Impl_Canvas_Builder_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Filepattern : in Swagger.Nullable_UString; Build_Periodpage_Periodnodes : in Swagger.Nullable_Boolean; Build_Periodclient_Periodlibs : in Swagger.Nullable_Boolean; Build_Periodcanvas_Periodcomponent : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqWcmDesignimporterImplCanvasBuilderImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Wcm_Designimporter_Impl_Canvas_Builder_Impl; -- overriding procedure Com_Day_Cq_Wcm_Designimporter_Impl_Canvas_Page_Delete_Handler (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Min_Thread_Pool_Size : in Swagger.Nullable_Integer; Max_Thread_Pool_Size : in Swagger.Nullable_Integer; Result : out .Models.ComDayCqWcmDesignimporterImplCanvasPageDeleteHandlerInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Wcm_Designimporter_Impl_Canvas_Page_Delete_Handler; -- overriding procedure Com_Day_Cq_Wcm_Designimporter_Impl_Entry_Preprocessor_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Search_Periodpattern : in Swagger.Nullable_UString; Replace_Periodpattern : in Swagger.Nullable_UString; Result : out .Models.ComDayCqWcmDesignimporterImplEntryPreprocessorImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Wcm_Designimporter_Impl_Entry_Preprocessor_Impl; -- overriding procedure Com_Day_Cq_Wcm_Designimporter_Impl_Mobile_Canvas_Builder_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Filepattern : in Swagger.Nullable_UString; Device_Periodgroups : in Swagger.UString_Vectors.Vector; Build_Periodpage_Periodnodes : in Swagger.Nullable_Boolean; Build_Periodclient_Periodlibs : in Swagger.Nullable_Boolean; Build_Periodcanvas_Periodcomponent : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqWcmDesignimporterImplMobileCanvasBuilderImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Wcm_Designimporter_Impl_Mobile_Canvas_Builder_Impl; -- overriding procedure Com_Day_Cq_Wcm_Designimporter_Parser_Taghandlers_Factory_Canvas_Compone (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Service_Periodranking : in Swagger.Nullable_Integer; Tagpattern : in Swagger.Nullable_UString; Result : out .Models.ComDayCqWcmDesignimporterParserTaghandlersFactoryCanvasComponeInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Wcm_Designimporter_Parser_Taghandlers_Factory_Canvas_Compone; -- overriding procedure Com_Day_Cq_Wcm_Designimporter_Parser_Taghandlers_Factory_Default_Compon (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Service_Periodranking : in Swagger.Nullable_Integer; Tagpattern : in Swagger.Nullable_UString; Result : out .Models.ComDayCqWcmDesignimporterParserTaghandlersFactoryDefaultComponInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Wcm_Designimporter_Parser_Taghandlers_Factory_Default_Compon; -- overriding procedure Com_Day_Cq_Wcm_Designimporter_Parser_Taghandlers_Factory_Default_Tag_Han (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Service_Periodranking : in Swagger.Nullable_Integer; Tagpattern : in Swagger.Nullable_UString; Result : out .Models.ComDayCqWcmDesignimporterParserTaghandlersFactoryDefaultTagHanInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Wcm_Designimporter_Parser_Taghandlers_Factory_Default_Tag_Han; -- overriding procedure Com_Day_Cq_Wcm_Designimporter_Parser_Taghandlers_Factory_Head_Tag_Handle (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Service_Periodranking : in Swagger.Nullable_Integer; Tagpattern : in Swagger.Nullable_UString; Result : out .Models.ComDayCqWcmDesignimporterParserTaghandlersFactoryHeadTagHandleInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Wcm_Designimporter_Parser_Taghandlers_Factory_Head_Tag_Handle; -- overriding procedure Com_Day_Cq_Wcm_Designimporter_Parser_Taghandlers_Factory_I_Frame_Tag_Hand (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Service_Periodranking : in Swagger.Nullable_Integer; Tagpattern : in Swagger.Nullable_UString; Result : out .Models.ComDayCqWcmDesignimporterParserTaghandlersFactoryIFrameTagHandInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Wcm_Designimporter_Parser_Taghandlers_Factory_I_Frame_Tag_Hand; -- overriding procedure Com_Day_Cq_Wcm_Designimporter_Parser_Taghandlers_Factory_Image_Componen (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Service_Periodranking : in Swagger.Nullable_Integer; Tagpattern : in Swagger.Nullable_UString; Component_Periodresource_Type : in Swagger.Nullable_UString; Result : out .Models.ComDayCqWcmDesignimporterParserTaghandlersFactoryImageComponenInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Wcm_Designimporter_Parser_Taghandlers_Factory_Image_Componen; -- overriding procedure Com_Day_Cq_Wcm_Designimporter_Parser_Taghandlers_Factory_Img_Tag_Handler (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Service_Periodranking : in Swagger.Nullable_Integer; Tagpattern : in Swagger.Nullable_UString; Result : out .Models.ComDayCqWcmDesignimporterParserTaghandlersFactoryImgTagHandlerInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Wcm_Designimporter_Parser_Taghandlers_Factory_Img_Tag_Handler; -- overriding procedure Com_Day_Cq_Wcm_Designimporter_Parser_Taghandlers_Factory_Inline_Script_T (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Service_Periodranking : in Swagger.Nullable_Integer; Tagpattern : in Swagger.Nullable_UString; Result : out .Models.ComDayCqWcmDesignimporterParserTaghandlersFactoryInlineScriptTInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Wcm_Designimporter_Parser_Taghandlers_Factory_Inline_Script_T; -- overriding procedure Com_Day_Cq_Wcm_Designimporter_Parser_Taghandlers_Factory_Link_Tag_Handle (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Service_Periodranking : in Swagger.Nullable_Integer; Tagpattern : in Swagger.Nullable_UString; Result : out .Models.ComDayCqWcmDesignimporterParserTaghandlersFactoryLinkTagHandleInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Wcm_Designimporter_Parser_Taghandlers_Factory_Link_Tag_Handle; -- overriding procedure Com_Day_Cq_Wcm_Designimporter_Parser_Taghandlers_Factory_Meta_Tag_Handle (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Service_Periodranking : in Swagger.Nullable_Integer; Tagpattern : in Swagger.Nullable_UString; Result : out .Models.ComDayCqWcmDesignimporterParserTaghandlersFactoryMetaTagHandleInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Wcm_Designimporter_Parser_Taghandlers_Factory_Meta_Tag_Handle; -- overriding procedure Com_Day_Cq_Wcm_Designimporter_Parser_Taghandlers_Factory_Non_Script_Tag_H (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Service_Periodranking : in Swagger.Nullable_Integer; Tagpattern : in Swagger.Nullable_UString; Result : out .Models.ComDayCqWcmDesignimporterParserTaghandlersFactoryNonScriptTagHInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Wcm_Designimporter_Parser_Taghandlers_Factory_Non_Script_Tag_H; -- overriding procedure Com_Day_Cq_Wcm_Designimporter_Parser_Taghandlers_Factory_Parsys_Compone (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Service_Periodranking : in Swagger.Nullable_Integer; Tagpattern : in Swagger.Nullable_UString; Component_Periodresource_Type : in Swagger.Nullable_UString; Result : out .Models.ComDayCqWcmDesignimporterParserTaghandlersFactoryParsysComponeInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Wcm_Designimporter_Parser_Taghandlers_Factory_Parsys_Compone; -- overriding procedure Com_Day_Cq_Wcm_Designimporter_Parser_Taghandlers_Factory_Script_Tag_Hand (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Service_Periodranking : in Swagger.Nullable_Integer; Tagpattern : in Swagger.Nullable_UString; Result : out .Models.ComDayCqWcmDesignimporterParserTaghandlersFactoryScriptTagHandInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Wcm_Designimporter_Parser_Taghandlers_Factory_Script_Tag_Hand; -- overriding procedure Com_Day_Cq_Wcm_Designimporter_Parser_Taghandlers_Factory_Style_Tag_Handl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Service_Periodranking : in Swagger.Nullable_Integer; Tagpattern : in Swagger.Nullable_UString; Result : out .Models.ComDayCqWcmDesignimporterParserTaghandlersFactoryStyleTagHandlInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Wcm_Designimporter_Parser_Taghandlers_Factory_Style_Tag_Handl; -- overriding procedure Com_Day_Cq_Wcm_Designimporter_Parser_Taghandlers_Factory_Text_Component (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Service_Periodranking : in Swagger.Nullable_Integer; Tagpattern : in Swagger.Nullable_UString; Component_Periodresource_Type : in Swagger.Nullable_UString; Result : out .Models.ComDayCqWcmDesignimporterParserTaghandlersFactoryTextComponentInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Wcm_Designimporter_Parser_Taghandlers_Factory_Text_Component; -- overriding procedure Com_Day_Cq_Wcm_Designimporter_Parser_Taghandlers_Factory_Title_Componen (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Service_Periodranking : in Swagger.Nullable_Integer; Tagpattern : in Swagger.Nullable_UString; Component_Periodresource_Type : in Swagger.Nullable_UString; Result : out .Models.ComDayCqWcmDesignimporterParserTaghandlersFactoryTitleComponenInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Wcm_Designimporter_Parser_Taghandlers_Factory_Title_Componen; -- overriding procedure Com_Day_Cq_Wcm_Designimporter_Parser_Taghandlers_Factory_Title_Tag_Handl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Service_Periodranking : in Swagger.Nullable_Integer; Tagpattern : in Swagger.Nullable_UString; Result : out .Models.ComDayCqWcmDesignimporterParserTaghandlersFactoryTitleTagHandlInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Wcm_Designimporter_Parser_Taghandlers_Factory_Title_Tag_Handl; -- overriding procedure Com_Day_Cq_Wcm_Foundation_Forms_Impl_Form_Chooser_Servlet (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Service_Periodname : in Swagger.Nullable_UString; Sling_Periodservlet_Periodresource_Types : in Swagger.Nullable_UString; Sling_Periodservlet_Periodselectors : in Swagger.Nullable_UString; Sling_Periodservlet_Periodmethods : in Swagger.UString_Vectors.Vector; Forms_Periodformchooserservlet_Periodadvansesearch_Periodrequire : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqWcmFoundationFormsImplFormChooserServletInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Wcm_Foundation_Forms_Impl_Form_Chooser_Servlet; -- overriding procedure Com_Day_Cq_Wcm_Foundation_Forms_Impl_Form_Paragraph_Post_Processor (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Forms_Periodformparagraphpostprocessor_Periodenabled : in Swagger.Nullable_Boolean; Forms_Periodformparagraphpostprocessor_Periodformresourcetypes : in Swagger.UString_Vectors.Vector; Result : out .Models.ComDayCqWcmFoundationFormsImplFormParagraphPostProcessorInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Wcm_Foundation_Forms_Impl_Form_Paragraph_Post_Processor; -- overriding procedure Com_Day_Cq_Wcm_Foundation_Forms_Impl_Forms_Handling_Servlet (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Name_Periodwhitelist : in Swagger.Nullable_UString; Allow_Periodexpressions : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqWcmFoundationFormsImplFormsHandlingServletInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Wcm_Foundation_Forms_Impl_Forms_Handling_Servlet; -- overriding procedure Com_Day_Cq_Wcm_Foundation_Forms_Impl_Mail_Servlet (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Sling_Periodservlet_Periodresource_Types : in Swagger.Nullable_UString; Sling_Periodservlet_Periodselectors : in Swagger.Nullable_UString; Resource_Periodwhitelist : in Swagger.UString_Vectors.Vector; Resource_Periodblacklist : in Swagger.Nullable_UString; Result : out .Models.ComDayCqWcmFoundationFormsImplMailServletInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Wcm_Foundation_Forms_Impl_Mail_Servlet; -- overriding procedure Com_Day_Cq_Wcm_Foundation_Impl_Adaptive_Image_Component_Servlet (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Adapt_Periodsupported_Periodwidths : in Swagger.UString_Vectors.Vector; Result : out .Models.ComDayCqWcmFoundationImplAdaptiveImageComponentServletInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Wcm_Foundation_Impl_Adaptive_Image_Component_Servlet; -- overriding procedure Com_Day_Cq_Wcm_Foundation_Impl_H_T_T_P_Auth_Handler (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Path : in Swagger.Nullable_UString; Auth_Periodhttp_Periodnologin : in Swagger.Nullable_Boolean; Auth_Periodhttp_Periodrealm : in Swagger.Nullable_UString; Auth_Perioddefault_Periodloginpage : in Swagger.Nullable_UString; Auth_Periodcred_Periodform : in Swagger.UString_Vectors.Vector; Auth_Periodcred_Periodutf8 : in Swagger.UString_Vectors.Vector; Result : out .Models.ComDayCqWcmFoundationImplHTTPAuthHandlerInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Wcm_Foundation_Impl_H_T_T_P_Auth_Handler; -- overriding procedure Com_Day_Cq_Wcm_Foundation_Impl_Page_Impressions_Tracker (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Sling_Periodauth_Periodrequirements : in Swagger.Nullable_UString; Result : out .Models.ComDayCqWcmFoundationImplPageImpressionsTrackerInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Wcm_Foundation_Impl_Page_Impressions_Tracker; -- overriding procedure Com_Day_Cq_Wcm_Foundation_Impl_Page_Redirect_Servlet (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Excluded_Periodresource_Periodtypes : in Swagger.UString_Vectors.Vector; Result : out .Models.ComDayCqWcmFoundationImplPageRedirectServletInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Wcm_Foundation_Impl_Page_Redirect_Servlet; -- overriding procedure Com_Day_Cq_Wcm_Foundation_Security_Impl_Default_Attachment_Type_Blacklist (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Default_Periodattachment_Periodtype_Periodblacklist : in Swagger.UString_Vectors.Vector; Baseline_Periodattachment_Periodtype_Periodblacklist : in Swagger.UString_Vectors.Vector; Result : out .Models.ComDayCqWcmFoundationSecurityImplDefaultAttachmentTypeBlacklistInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Wcm_Foundation_Security_Impl_Default_Attachment_Type_Blacklist; -- overriding procedure Com_Day_Cq_Wcm_Foundation_Security_Impl_Safer_Sling_Post_Validator_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Parameter_Periodwhitelist : in Swagger.UString_Vectors.Vector; Parameter_Periodwhitelist_Periodprefixes : in Swagger.UString_Vectors.Vector; Binary_Periodparameter_Periodwhitelist : in Swagger.UString_Vectors.Vector; Modifier_Periodwhitelist : in Swagger.UString_Vectors.Vector; Operation_Periodwhitelist : in Swagger.UString_Vectors.Vector; Operation_Periodwhitelist_Periodprefixes : in Swagger.UString_Vectors.Vector; Typehint_Periodwhitelist : in Swagger.UString_Vectors.Vector; Resourcetype_Periodwhitelist : in Swagger.UString_Vectors.Vector; Result : out .Models.ComDayCqWcmFoundationSecurityImplSaferSlingPostValidatorImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Wcm_Foundation_Security_Impl_Safer_Sling_Post_Validator_Impl; -- overriding procedure Com_Day_Cq_Wcm_Mobile_Core_Impl_Device_Device_Info_Transformer_Factory (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Device_Periodinfo_Periodtransformer_Periodenabled : in Swagger.Nullable_Boolean; Device_Periodinfo_Periodtransformer_Periodcss_Periodstyle : in Swagger.Nullable_UString; Result : out .Models.ComDayCqWcmMobileCoreImplDeviceDeviceInfoTransformerFactoryInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Wcm_Mobile_Core_Impl_Device_Device_Info_Transformer_Factory; -- overriding procedure Com_Day_Cq_Wcm_Mobile_Core_Impl_Redirect_Redirect_Filter (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Redirect_Periodenabled : in Swagger.Nullable_Boolean; Redirect_Periodstats_Periodenabled : in Swagger.Nullable_Boolean; Redirect_Periodextensions : in Swagger.UString_Vectors.Vector; Redirect_Periodpaths : in Swagger.UString_Vectors.Vector; Result : out .Models.ComDayCqWcmMobileCoreImplRedirectRedirectFilterInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Wcm_Mobile_Core_Impl_Redirect_Redirect_Filter; -- overriding procedure Com_Day_Cq_Wcm_Msm_Impl_Actions_Content_Copy_Action_Factory (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Periodwcm_Periodmsm_Periodaction_Periodexcludednodetypes : in Swagger.UString_Vectors.Vector; Cq_Periodwcm_Periodmsm_Periodaction_Periodexcludedparagraphitems : in Swagger.UString_Vectors.Vector; Cq_Periodwcm_Periodmsm_Periodaction_Periodexcludedprops : in Swagger.UString_Vectors.Vector; Contentcopyaction_Periodorder_Periodstyle : in Swagger.Nullable_UString; Result : out .Models.ComDayCqWcmMsmImplActionsContentCopyActionFactoryInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Wcm_Msm_Impl_Actions_Content_Copy_Action_Factory; -- overriding procedure Com_Day_Cq_Wcm_Msm_Impl_Actions_Content_Delete_Action_Factory (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Periodwcm_Periodmsm_Periodaction_Periodexcludednodetypes : in Swagger.UString_Vectors.Vector; Cq_Periodwcm_Periodmsm_Periodaction_Periodexcludedparagraphitems : in Swagger.UString_Vectors.Vector; Cq_Periodwcm_Periodmsm_Periodaction_Periodexcludedprops : in Swagger.UString_Vectors.Vector; Result : out .Models.ComDayCqWcmMsmImplActionsContentDeleteActionFactoryInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Wcm_Msm_Impl_Actions_Content_Delete_Action_Factory; -- overriding procedure Com_Day_Cq_Wcm_Msm_Impl_Actions_Content_Update_Action_Factory (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Periodwcm_Periodmsm_Periodaction_Periodexcludednodetypes : in Swagger.UString_Vectors.Vector; Cq_Periodwcm_Periodmsm_Periodaction_Periodexcludedparagraphitems : in Swagger.UString_Vectors.Vector; Cq_Periodwcm_Periodmsm_Periodaction_Periodexcludedprops : in Swagger.UString_Vectors.Vector; Cq_Periodwcm_Periodmsm_Periodaction_Periodignored_Mixin : in Swagger.UString_Vectors.Vector; Result : out .Models.ComDayCqWcmMsmImplActionsContentUpdateActionFactoryInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Wcm_Msm_Impl_Actions_Content_Update_Action_Factory; -- overriding procedure Com_Day_Cq_Wcm_Msm_Impl_Actions_Order_Children_Action_Factory (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Periodwcm_Periodmsm_Periodaction_Periodexcludednodetypes : in Swagger.UString_Vectors.Vector; Cq_Periodwcm_Periodmsm_Periodaction_Periodexcludedparagraphitems : in Swagger.UString_Vectors.Vector; Cq_Periodwcm_Periodmsm_Periodaction_Periodexcludedprops : in Swagger.UString_Vectors.Vector; Result : out .Models.ComDayCqWcmMsmImplActionsOrderChildrenActionFactoryInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Wcm_Msm_Impl_Actions_Order_Children_Action_Factory; -- overriding procedure Com_Day_Cq_Wcm_Msm_Impl_Actions_Page_Move_Action_Factory (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Periodwcm_Periodmsm_Periodaction_Periodexcludednodetypes : in Swagger.UString_Vectors.Vector; Cq_Periodwcm_Periodmsm_Periodaction_Periodexcludedparagraphitems : in Swagger.UString_Vectors.Vector; Cq_Periodwcm_Periodmsm_Periodaction_Periodexcludedprops : in Swagger.UString_Vectors.Vector; Cq_Periodwcm_Periodmsm_Periodimpl_Periodactions_Periodpagemove_Periodprop_Reference_Update : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqWcmMsmImplActionsPageMoveActionFactoryInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Wcm_Msm_Impl_Actions_Page_Move_Action_Factory; -- overriding procedure Com_Day_Cq_Wcm_Msm_Impl_Actions_References_Update_Action_Factory (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Periodwcm_Periodmsm_Periodaction_Periodexcludednodetypes : in Swagger.UString_Vectors.Vector; Cq_Periodwcm_Periodmsm_Periodaction_Periodexcludedparagraphitems : in Swagger.UString_Vectors.Vector; Cq_Periodwcm_Periodmsm_Periodaction_Periodexcludedprops : in Swagger.UString_Vectors.Vector; Cq_Periodwcm_Periodmsm_Periodimpl_Periodaction_Periodreferencesupdate_Periodprop_Update_Nested : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqWcmMsmImplActionsReferencesUpdateActionFactoryInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Wcm_Msm_Impl_Actions_References_Update_Action_Factory; -- overriding procedure Com_Day_Cq_Wcm_Msm_Impl_Actions_Version_Copy_Action_Factory (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Periodwcm_Periodmsm_Periodaction_Periodexcludednodetypes : in Swagger.UString_Vectors.Vector; Cq_Periodwcm_Periodmsm_Periodaction_Periodexcludedparagraphitems : in Swagger.UString_Vectors.Vector; Cq_Periodwcm_Periodmsm_Periodaction_Periodexcludedprops : in Swagger.UString_Vectors.Vector; Result : out .Models.ComDayCqWcmMsmImplActionsVersionCopyActionFactoryInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Wcm_Msm_Impl_Actions_Version_Copy_Action_Factory; -- overriding procedure Com_Day_Cq_Wcm_Msm_Impl_Live_Relationship_Manager_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Liverelationshipmgr_Periodrelationsconfig_Perioddefault : in Swagger.Nullable_UString; Result : out .Models.ComDayCqWcmMsmImplLiveRelationshipManagerImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Wcm_Msm_Impl_Live_Relationship_Manager_Impl; -- overriding procedure Com_Day_Cq_Wcm_Msm_Impl_Rollout_Manager_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Event_Periodfilter : in Swagger.Nullable_UString; Rolloutmgr_Periodexcludedprops_Perioddefault : in Swagger.UString_Vectors.Vector; Rolloutmgr_Periodexcludedparagraphprops_Perioddefault : in Swagger.UString_Vectors.Vector; Rolloutmgr_Periodexcludednodetypes_Perioddefault : in Swagger.UString_Vectors.Vector; Rolloutmgr_Periodthreadpool_Periodmaxsize : in Swagger.Nullable_Integer; Rolloutmgr_Periodthreadpool_Periodmaxshutdowntime : in Swagger.Nullable_Integer; Rolloutmgr_Periodthreadpool_Periodpriority : in Swagger.Nullable_UString; Rolloutmgr_Periodcommit_Periodsize : in Swagger.Nullable_Integer; Rolloutmgr_Periodconflicthandling_Periodenabled : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqWcmMsmImplRolloutManagerImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Wcm_Msm_Impl_Rollout_Manager_Impl; -- overriding procedure Com_Day_Cq_Wcm_Msm_Impl_Servlets_Audit_Log_Servlet (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Auditlogservlet_Perioddefault_Periodevents_Periodcount : in Swagger.Nullable_Integer; Auditlogservlet_Perioddefault_Periodpath : in Swagger.Nullable_UString; Result : out .Models.ComDayCqWcmMsmImplServletsAuditLogServletInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Wcm_Msm_Impl_Servlets_Audit_Log_Servlet; -- overriding procedure Com_Day_Cq_Wcm_Notification_Email_Impl_Email_Channel (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Email_Periodfrom : in Swagger.Nullable_UString; Result : out .Models.ComDayCqWcmNotificationEmailImplEmailChannelInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Wcm_Notification_Email_Impl_Email_Channel; -- overriding procedure Com_Day_Cq_Wcm_Notification_Impl_Notification_Manager_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Event_Periodtopics : in Swagger.UString_Vectors.Vector; Result : out .Models.ComDayCqWcmNotificationImplNotificationManagerImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Wcm_Notification_Impl_Notification_Manager_Impl; -- overriding procedure Com_Day_Cq_Wcm_Scripting_Impl_B_V_P_Manager (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Com_Periodday_Periodcq_Periodwcm_Periodscripting_Periodbvp_Periodscript_Periodengines : in Swagger.UString_Vectors.Vector; Result : out .Models.ComDayCqWcmScriptingImplBVPManagerInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Wcm_Scripting_Impl_B_V_P_Manager; -- overriding procedure Com_Day_Cq_Wcm_Undo_Undo_Config (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Periodwcm_Periodundo_Periodenabled : in Swagger.Nullable_Boolean; Cq_Periodwcm_Periodundo_Periodpath : in Swagger.Nullable_UString; Cq_Periodwcm_Periodundo_Periodvalidity : in Swagger.Nullable_Integer; Cq_Periodwcm_Periodundo_Periodsteps : in Swagger.Nullable_Integer; Cq_Periodwcm_Periodundo_Periodpersistence : in Swagger.Nullable_UString; Cq_Periodwcm_Periodundo_Periodpersistence_Periodmode : in Swagger.Nullable_Boolean; Cq_Periodwcm_Periodundo_Periodmarkermode : in Swagger.Nullable_UString; Cq_Periodwcm_Periodundo_Periodwhitelist : in Swagger.UString_Vectors.Vector; Cq_Periodwcm_Periodundo_Periodblacklist : in Swagger.UString_Vectors.Vector; Result : out .Models.ComDayCqWcmUndoUndoConfigInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Wcm_Undo_Undo_Config; -- overriding procedure Com_Day_Cq_Wcm_Webservicesupport_Impl_Replication_Event_Listener (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Flush agents : in Swagger.UString_Vectors.Vector; Result : out .Models.ComDayCqWcmWebservicesupportImplReplicationEventListenerInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Wcm_Webservicesupport_Impl_Replication_Event_Listener; -- overriding procedure Com_Day_Cq_Wcm_Workflow_Impl_Wcm_Workflow_Service_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Event_Periodfilter : in Swagger.Nullable_UString; Min_Thread_Pool_Size : in Swagger.Nullable_Integer; Max_Thread_Pool_Size : in Swagger.Nullable_Integer; Cq_Periodwcm_Periodworkflow_Periodterminate_Periodon_Periodactivate : in Swagger.Nullable_Boolean; Cq_Periodwcm_Periodworklfow_Periodterminate_Periodexclusion_Periodlist : in Swagger.UString_Vectors.Vector; Result : out .Models.ComDayCqWcmWorkflowImplWcmWorkflowServiceImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Wcm_Workflow_Impl_Wcm_Workflow_Service_Impl; -- overriding procedure Com_Day_Cq_Wcm_Workflow_Impl_Workflow_Package_Info_Provider (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Workflowpackageinfoprovider_Periodfilter : in Swagger.UString_Vectors.Vector; Workflowpackageinfoprovider_Periodfilter_Periodrootpath : in Swagger.Nullable_UString; Result : out .Models.ComDayCqWcmWorkflowImplWorkflowPackageInfoProviderInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Wcm_Workflow_Impl_Workflow_Package_Info_Provider; -- overriding procedure Com_Day_Cq_Widget_Impl_Html_Library_Manager_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Htmllibmanager_Periodclientmanager : in Swagger.Nullable_UString; Htmllibmanager_Perioddebug : in Swagger.Nullable_Boolean; Htmllibmanager_Perioddebug_Periodconsole : in Swagger.Nullable_Boolean; Htmllibmanager_Perioddebug_Periodinit_Periodjs : in Swagger.Nullable_UString; Htmllibmanager_Perioddefaultthemename : in Swagger.Nullable_UString; Htmllibmanager_Perioddefaultuserthemename : in Swagger.Nullable_UString; Htmllibmanager_Periodfirebuglite_Periodpath : in Swagger.Nullable_UString; Htmllibmanager_Periodforce_C_Q_Url_Info : in Swagger.Nullable_Boolean; Htmllibmanager_Periodgzip : in Swagger.Nullable_Boolean; Htmllibmanager_Periodmaxage : in Swagger.Nullable_Integer; Htmllibmanager_Periodmax_Data_Uri_Size : in Swagger.Nullable_Integer; Htmllibmanager_Periodminify : in Swagger.Nullable_Boolean; Htmllibmanager_Periodpath_Periodlist : in Swagger.UString_Vectors.Vector; Htmllibmanager_Periodtiming : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqWidgetImplHtmlLibraryManagerImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Widget_Impl_Html_Library_Manager_Impl; -- overriding procedure Com_Day_Cq_Widget_Impl_Widget_Extension_Provider_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Extendable_Periodwidgets : in Swagger.UString_Vectors.Vector; Widgetextensionprovider_Perioddebug : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqWidgetImplWidgetExtensionProviderImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Widget_Impl_Widget_Extension_Provider_Impl; -- overriding procedure Com_Day_Cq_Workflow_Impl_Email_E_Mail_Notification_Service (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; From_Periodaddress : in Swagger.Nullable_UString; Host_Periodprefix : in Swagger.Nullable_UString; Notify_Periodonabort : in Swagger.Nullable_Boolean; Notify_Periodoncomplete : in Swagger.Nullable_Boolean; Notify_Periodoncontainercomplete : in Swagger.Nullable_Boolean; Notify_Perioduseronly : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqWorkflowImplEmailEMailNotificationServiceInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Workflow_Impl_Email_E_Mail_Notification_Service; -- overriding procedure Com_Day_Cq_Workflow_Impl_Email_Task_E_Mail_Notification_Service (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Notify_Periodonupdate : in Swagger.Nullable_Boolean; Notify_Periodoncomplete : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqWorkflowImplEmailTaskEMailNotificationServiceInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Cq_Workflow_Impl_Email_Task_E_Mail_Notification_Service; -- overriding procedure Com_Day_Crx_Security_Token_Impl_Impl_Token_Authentication_Handler (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Path : in Swagger.Nullable_UString; Token_Periodrequired_Periodattr : in Swagger.Nullable_UString; Token_Periodalternate_Periodurl : in Swagger.Nullable_UString; Token_Periodencapsulated : in Swagger.Nullable_Boolean; Skip_Periodtoken_Periodrefresh : in Swagger.UString_Vectors.Vector; Result : out .Models.ComDayCrxSecurityTokenImplImplTokenAuthenticationHandlerInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Crx_Security_Token_Impl_Impl_Token_Authentication_Handler; -- overriding procedure Com_Day_Crx_Security_Token_Impl_Token_Cleanup_Task (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Enable_Periodtoken_Periodcleanup_Periodtask : in Swagger.Nullable_Boolean; Scheduler_Periodexpression : in Swagger.Nullable_UString; Batch_Periodsize : in Swagger.Nullable_Integer; Result : out .Models.ComDayCrxSecurityTokenImplTokenCleanupTaskInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Com_Day_Crx_Security_Token_Impl_Token_Cleanup_Task; -- overriding procedure Guide_Localization_Service (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Supported_Locales : in Swagger.UString_Vectors.Vector; Localizable _Properties : in Swagger.UString_Vectors.Vector; Result : out .Models.GuideLocalizationServiceInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Guide_Localization_Service; -- overriding procedure Messaging_User_Component_Factory (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Priority : in Swagger.Nullable_Integer; Result : out .Models.MessagingUserComponentFactoryInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Messaging_User_Component_Factory; -- overriding procedure Org_Apache_Aries_Jmx_Framework_State_Config (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Attribute_Change_Notification_Enabled : in Swagger.Nullable_Boolean; Result : out .Models.OrgApacheAriesJmxFrameworkStateConfigInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Org_Apache_Aries_Jmx_Framework_State_Config; -- overriding procedure Org_Apache_Felix_Eventadmin_Impl_Event_Admin (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Org_Periodapache_Periodfelix_Periodeventadmin_Period_Thread_Pool_Size : in Swagger.Nullable_Integer; Org_Periodapache_Periodfelix_Periodeventadmin_Period_Async_To_Sync_Thread_Ratio : in Swagger.Number; Org_Periodapache_Periodfelix_Periodeventadmin_Period_Timeout : in Swagger.Nullable_Integer; Org_Periodapache_Periodfelix_Periodeventadmin_Period_Require_Topic : in Swagger.Nullable_Boolean; Org_Periodapache_Periodfelix_Periodeventadmin_Period_Ignore_Timeout : in Swagger.UString_Vectors.Vector; Org_Periodapache_Periodfelix_Periodeventadmin_Period_Ignore_Topic : in Swagger.UString_Vectors.Vector; Result : out .Models.OrgApacheFelixEventadminImplEventAdminInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Org_Apache_Felix_Eventadmin_Impl_Event_Admin; -- overriding procedure Org_Apache_Felix_Http (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Org_Periodapache_Periodfelix_Periodhttp_Periodhost : in Swagger.Nullable_UString; Org_Periodapache_Periodfelix_Periodhttp_Periodenable : in Swagger.Nullable_Boolean; Org_Periodosgi_Periodservice_Periodhttp_Periodport : in Swagger.Nullable_Integer; Org_Periodapache_Periodfelix_Periodhttp_Periodtimeout : in Swagger.Nullable_Integer; Org_Periodapache_Periodfelix_Periodhttps_Periodenable : in Swagger.Nullable_Boolean; Org_Periodosgi_Periodservice_Periodhttp_Periodport_Periodsecure : in Swagger.Nullable_Integer; Org_Periodapache_Periodfelix_Periodhttps_Periodkeystore : in Swagger.Nullable_UString; Org_Periodapache_Periodfelix_Periodhttps_Periodkeystore_Periodpassword : in Swagger.Nullable_UString; Org_Periodapache_Periodfelix_Periodhttps_Periodkeystore_Periodkey_Periodpassword : in Swagger.Nullable_UString; Org_Periodapache_Periodfelix_Periodhttps_Periodtruststore : in Swagger.Nullable_UString; Org_Periodapache_Periodfelix_Periodhttps_Periodtruststore_Periodpassword : in Swagger.Nullable_UString; Org_Periodapache_Periodfelix_Periodhttps_Periodclientcertificate : in Swagger.Nullable_UString; Org_Periodapache_Periodfelix_Periodhttp_Periodcontext_Path : in Swagger.Nullable_UString; Org_Periodapache_Periodfelix_Periodhttp_Periodmbeans : in Swagger.Nullable_Boolean; Org_Periodapache_Periodfelix_Periodhttp_Periodsession_Periodtimeout : in Swagger.Nullable_Integer; Org_Periodapache_Periodfelix_Periodhttp_Periodjetty_Periodthreadpool_Periodmax : in Swagger.Nullable_Integer; Org_Periodapache_Periodfelix_Periodhttp_Periodjetty_Periodacceptors : in Swagger.Nullable_Integer; Org_Periodapache_Periodfelix_Periodhttp_Periodjetty_Periodselectors : in Swagger.Nullable_Integer; Org_Periodapache_Periodfelix_Periodhttp_Periodjetty_Periodheader_Buffer_Size : in Swagger.Nullable_Integer; Org_Periodapache_Periodfelix_Periodhttp_Periodjetty_Periodrequest_Buffer_Size : in Swagger.Nullable_Integer; Org_Periodapache_Periodfelix_Periodhttp_Periodjetty_Periodresponse_Buffer_Size : in Swagger.Nullable_Integer; Org_Periodapache_Periodfelix_Periodhttp_Periodjetty_Periodmax_Form_Size : in Swagger.Nullable_Integer; Org_Periodapache_Periodfelix_Periodhttp_Periodpath_Exclusions : in Swagger.UString_Vectors.Vector; Org_Periodapache_Periodfelix_Periodhttps_Periodjetty_Periodciphersuites_Periodexcluded : in Swagger.UString_Vectors.Vector; Org_Periodapache_Periodfelix_Periodhttps_Periodjetty_Periodciphersuites_Periodincluded : in Swagger.UString_Vectors.Vector; Org_Periodapache_Periodfelix_Periodhttp_Periodjetty_Periodsend_Server_Header : in Swagger.Nullable_Boolean; Org_Periodapache_Periodfelix_Periodhttps_Periodjetty_Periodprotocols_Periodincluded : in Swagger.UString_Vectors.Vector; Org_Periodapache_Periodfelix_Periodhttps_Periodjetty_Periodprotocols_Periodexcluded : in Swagger.UString_Vectors.Vector; Org_Periodapache_Periodfelix_Periodproxy_Periodload_Periodbalancer_Periodconnection_Periodenable : in Swagger.Nullable_Boolean; Org_Periodapache_Periodfelix_Periodhttps_Periodjetty_Periodrenegotiate_Allowed : in Swagger.Nullable_Boolean; Org_Periodapache_Periodfelix_Periodhttps_Periodjetty_Periodsession_Periodcookie_Periodhttp_Only : in Swagger.Nullable_Boolean; Org_Periodapache_Periodfelix_Periodhttps_Periodjetty_Periodsession_Periodcookie_Periodsecure : in Swagger.Nullable_Boolean; Org_Periodeclipse_Periodjetty_Periodservlet_Period_Session_Id_Path_Parameter_Name : in Swagger.Nullable_UString; Org_Periodeclipse_Periodjetty_Periodservlet_Period_Checking_Remote_Session_Id_Encoding : in Swagger.Nullable_Boolean; Org_Periodeclipse_Periodjetty_Periodservlet_Period_Session_Cookie : in Swagger.Nullable_UString; Org_Periodeclipse_Periodjetty_Periodservlet_Period_Session_Domain : in Swagger.Nullable_UString; Org_Periodeclipse_Periodjetty_Periodservlet_Period_Session_Path : in Swagger.Nullable_UString; Org_Periodeclipse_Periodjetty_Periodservlet_Period_Max_Age : in Swagger.Nullable_Integer; Org_Periodapache_Periodfelix_Periodhttp_Periodname : in Swagger.Nullable_UString; Org_Periodapache_Periodfelix_Periodjetty_Periodgziphandler_Periodenable : in Swagger.Nullable_Boolean; Org_Periodapache_Periodfelix_Periodjetty_Periodgzip_Periodmin_Gzip_Size : in Swagger.Nullable_Integer; Org_Periodapache_Periodfelix_Periodjetty_Periodgzip_Periodcompression_Level : in Swagger.Nullable_Integer; Org_Periodapache_Periodfelix_Periodjetty_Periodgzip_Periodinflate_Buffer_Size : in Swagger.Nullable_Integer; Org_Periodapache_Periodfelix_Periodjetty_Periodgzip_Periodsync_Flush : in Swagger.Nullable_Boolean; Org_Periodapache_Periodfelix_Periodjetty_Periodgzip_Periodexcluded_User_Agents : in Swagger.UString_Vectors.Vector; Org_Periodapache_Periodfelix_Periodjetty_Periodgzip_Periodincluded_Methods : in Swagger.UString_Vectors.Vector; Org_Periodapache_Periodfelix_Periodjetty_Periodgzip_Periodexcluded_Methods : in Swagger.UString_Vectors.Vector; Org_Periodapache_Periodfelix_Periodjetty_Periodgzip_Periodincluded_Paths : in Swagger.UString_Vectors.Vector; Org_Periodapache_Periodfelix_Periodjetty_Periodgzip_Periodexcluded_Paths : in Swagger.UString_Vectors.Vector; Org_Periodapache_Periodfelix_Periodjetty_Periodgzip_Periodincluded_Mime_Types : in Swagger.UString_Vectors.Vector; Org_Periodapache_Periodfelix_Periodjetty_Periodgzip_Periodexcluded_Mime_Types : in Swagger.UString_Vectors.Vector; Org_Periodapache_Periodfelix_Periodhttp_Periodsession_Periodinvalidate : in Swagger.Nullable_Boolean; Org_Periodapache_Periodfelix_Periodhttp_Periodsession_Perioduniqueid : in Swagger.Nullable_Boolean; Result : out .Models.OrgApacheFelixHttpInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Org_Apache_Felix_Http; -- overriding procedure Org_Apache_Felix_Http_Sslfilter_Ssl_Filter (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Ssl_Forward_Periodheader : in Swagger.Nullable_UString; Ssl_Forward_Periodvalue : in Swagger.Nullable_UString; Ssl_Forward_Cert_Periodheader : in Swagger.Nullable_UString; Rewrite_Periodabsolute_Periodurls : in Swagger.Nullable_Boolean; Result : out .Models.OrgApacheFelixHttpSslfilterSslFilterInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Org_Apache_Felix_Http_Sslfilter_Ssl_Filter; -- overriding procedure Org_Apache_Felix_Jaas_Configuration_Factory (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Jaas_Periodcontrol_Flag : in Swagger.Nullable_UString; Jaas_Periodranking : in Swagger.Nullable_Integer; Jaas_Periodrealm_Name : in Swagger.Nullable_UString; Jaas_Periodclassname : in Swagger.Nullable_UString; Jaas_Periodoptions : in Swagger.UString_Vectors.Vector; Result : out .Models.OrgApacheFelixJaasConfigurationFactoryInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Org_Apache_Felix_Jaas_Configuration_Factory; -- overriding procedure Org_Apache_Felix_Jaas_Configuration_Spi (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Jaas_Perioddefault_Realm_Name : in Swagger.Nullable_UString; Jaas_Periodconfig_Provider_Name : in Swagger.Nullable_UString; Jaas_Periodglobal_Config_Policy : in Swagger.Nullable_UString; Result : out .Models.OrgApacheFelixJaasConfigurationSpiInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Org_Apache_Felix_Jaas_Configuration_Spi; -- overriding procedure Org_Apache_Felix_Scr_Scr_Service (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Ds_Periodloglevel : in Swagger.Nullable_Integer; Ds_Periodfactory_Periodenabled : in Swagger.Nullable_Boolean; Ds_Perioddelayed_Periodkeep_Instances : in Swagger.Nullable_Boolean; Ds_Periodlock_Periodtimeout_Periodmilliseconds : in Swagger.Nullable_Integer; Ds_Periodstop_Periodtimeout_Periodmilliseconds : in Swagger.Nullable_Integer; Ds_Periodglobal_Periodextender : in Swagger.Nullable_Boolean; Result : out .Models.OrgApacheFelixScrScrServiceInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Org_Apache_Felix_Scr_Scr_Service; -- overriding procedure Org_Apache_Felix_Systemready_Impl_Components_Check (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Components_Periodlist : in Swagger.UString_Vectors.Vector; P_Type : in Swagger.Nullable_UString; Result : out .Models.OrgApacheFelixSystemreadyImplComponentsCheckInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Org_Apache_Felix_Systemready_Impl_Components_Check; -- overriding procedure Org_Apache_Felix_Systemready_Impl_Framework_Start_Check (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Timeout : in Swagger.Nullable_Integer; Target_Periodstart_Periodlevel : in Swagger.Nullable_Integer; Target_Periodstart_Periodlevel_Periodprop_Periodname : in Swagger.Nullable_UString; P_Type : in Swagger.Nullable_UString; Result : out .Models.OrgApacheFelixSystemreadyImplFrameworkStartCheckInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Org_Apache_Felix_Systemready_Impl_Framework_Start_Check; -- overriding procedure Org_Apache_Felix_Systemready_Impl_Services_Check (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Services_Periodlist : in Swagger.UString_Vectors.Vector; P_Type : in Swagger.Nullable_UString; Result : out .Models.OrgApacheFelixSystemreadyImplServicesCheckInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Org_Apache_Felix_Systemready_Impl_Services_Check; -- overriding procedure Org_Apache_Felix_Systemready_Impl_Servlet_System_Alive_Servlet (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Osgi_Periodhttp_Periodwhiteboard_Periodservlet_Periodpattern : in Swagger.Nullable_UString; Osgi_Periodhttp_Periodwhiteboard_Periodcontext_Periodselect : in Swagger.Nullable_UString; Result : out .Models.OrgApacheFelixSystemreadyImplServletSystemAliveServletInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Org_Apache_Felix_Systemready_Impl_Servlet_System_Alive_Servlet; -- overriding procedure Org_Apache_Felix_Systemready_Impl_Servlet_System_Ready_Servlet (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Osgi_Periodhttp_Periodwhiteboard_Periodservlet_Periodpattern : in Swagger.Nullable_UString; Osgi_Periodhttp_Periodwhiteboard_Periodcontext_Periodselect : in Swagger.Nullable_UString; Result : out .Models.OrgApacheFelixSystemreadyImplServletSystemReadyServletInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Org_Apache_Felix_Systemready_Impl_Servlet_System_Ready_Servlet; -- overriding procedure Org_Apache_Felix_Systemready_System_Ready_Monitor (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Poll_Periodinterval : in Swagger.Nullable_Integer; Result : out .Models.OrgApacheFelixSystemreadySystemReadyMonitorInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Org_Apache_Felix_Systemready_System_Ready_Monitor; -- overriding procedure Org_Apache_Felix_Webconsole_Internal_Servlet_Osgi_Manager (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Manager_Periodroot : in Swagger.Nullable_UString; Http_Periodservice_Periodfilter : in Swagger.Nullable_UString; Default_Periodrender : in Swagger.Nullable_UString; Realm : in Swagger.Nullable_UString; Username : in Swagger.Nullable_UString; Password : in Swagger.Nullable_UString; Category : in Swagger.Nullable_UString; Locale : in Swagger.Nullable_UString; Loglevel : in Swagger.Nullable_Integer; Plugins : in Swagger.Nullable_UString; Result : out .Models.OrgApacheFelixWebconsoleInternalServletOsgiManagerInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Org_Apache_Felix_Webconsole_Internal_Servlet_Osgi_Manager; -- overriding procedure Org_Apache_Felix_Webconsole_Plugins_Event_Internal_Plugin_Servlet (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Max_Periodsize : in Swagger.Nullable_Integer; Result : out .Models.OrgApacheFelixWebconsolePluginsEventInternalPluginServletInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Org_Apache_Felix_Webconsole_Plugins_Event_Internal_Plugin_Servlet; -- overriding procedure Org_Apache_Felix_Webconsole_Plugins_Memoryusage_Internal_Memory_Usage_Co (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Felix_Periodmemoryusage_Perioddump_Periodthreshold : in Swagger.Nullable_Integer; Felix_Periodmemoryusage_Perioddump_Periodinterval : in Swagger.Nullable_Integer; Felix_Periodmemoryusage_Perioddump_Periodlocation : in Swagger.Nullable_UString; Result : out .Models.OrgApacheFelixWebconsolePluginsMemoryusageInternalMemoryUsageCoInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Org_Apache_Felix_Webconsole_Plugins_Memoryusage_Internal_Memory_Usage_Co; -- overriding procedure Org_Apache_Http_Proxyconfigurator (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Proxy_Periodenabled : in Swagger.Nullable_Boolean; Proxy_Periodhost : in Swagger.Nullable_UString; Proxy_Periodport : in Swagger.Nullable_Integer; Proxy_Perioduser : in Swagger.Nullable_UString; Proxy_Periodpassword : in Swagger.Nullable_UString; Proxy_Periodexceptions : in Swagger.UString_Vectors.Vector; Result : out .Models.OrgApacheHttpProxyconfiguratorInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Org_Apache_Http_Proxyconfigurator; -- overriding procedure Org_Apache_Jackrabbit_Oak_Plugins_Blob_Datastore_Data_Store_Text_Provider (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Dir : in Swagger.Nullable_UString; Result : out .Models.OrgApacheJackrabbitOakPluginsBlobDatastoreDataStoreTextProviderInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Org_Apache_Jackrabbit_Oak_Plugins_Blob_Datastore_Data_Store_Text_Provider; -- overriding procedure Org_Apache_Jackrabbit_Oak_Plugins_Blob_Datastore_File_Data_Store (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Path : in Swagger.Nullable_UString; Result : out .Models.OrgApacheJackrabbitOakPluginsBlobDatastoreFileDataStoreInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Org_Apache_Jackrabbit_Oak_Plugins_Blob_Datastore_File_Data_Store; -- overriding procedure Org_Apache_Jackrabbit_Oak_Plugins_Document_Document_Node_Store_Service (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Mongouri : in Swagger.Nullable_UString; Db : in Swagger.Nullable_UString; Socket_Keep_Alive : in Swagger.Nullable_Boolean; Cache : in Swagger.Nullable_Integer; Node_Cache_Percentage : in Swagger.Nullable_Integer; Prev_Doc_Cache_Percentage : in Swagger.Nullable_Integer; Children_Cache_Percentage : in Swagger.Nullable_Integer; Diff_Cache_Percentage : in Swagger.Nullable_Integer; Cache_Segment_Count : in Swagger.Nullable_Integer; Cache_Stack_Move_Distance : in Swagger.Nullable_Integer; Blob_Cache_Size : in Swagger.Nullable_Integer; Persistent_Cache : in Swagger.Nullable_UString; Journal_Cache : in Swagger.Nullable_UString; Custom_Blob_Store : in Swagger.Nullable_Boolean; Journal_G_C_Interval : in Swagger.Nullable_Integer; Journal_G_C_Max_Age : in Swagger.Nullable_Integer; Prefetch_External_Changes : in Swagger.Nullable_Boolean; Role : in Swagger.Nullable_UString; Version_Gc_Max_Age_In_Secs : in Swagger.Nullable_Integer; Version_G_C_Expression : in Swagger.Nullable_UString; Version_G_C_Time_Limit_In_Secs : in Swagger.Nullable_Integer; Blob_Gc_Max_Age_In_Secs : in Swagger.Nullable_Integer; Blob_Track_Snapshot_Interval_In_Secs : in Swagger.Nullable_Integer; Repository_Periodhome : in Swagger.Nullable_UString; Max_Replication_Lag_In_Secs : in Swagger.Nullable_Integer; Document_Store_Type : in Swagger.Nullable_UString; Bundling_Disabled : in Swagger.Nullable_Boolean; Update_Limit : in Swagger.Nullable_Integer; Persistent_Cache_Includes : in Swagger.UString_Vectors.Vector; Lease_Check_Mode : in Swagger.Nullable_UString; Result : out .Models.OrgApacheJackrabbitOakPluginsDocumentDocumentNodeStoreServiceInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Org_Apache_Jackrabbit_Oak_Plugins_Document_Document_Node_Store_Service; -- overriding procedure Org_Apache_Jackrabbit_Oak_Plugins_Document_Document_Node_Store_Service_Pre (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Persistent_Cache_Includes : in Swagger.UString_Vectors.Vector; Result : out .Models.OrgApacheJackrabbitOakPluginsDocumentDocumentNodeStoreServicePreInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Org_Apache_Jackrabbit_Oak_Plugins_Document_Document_Node_Store_Service_Pre; -- overriding procedure Org_Apache_Jackrabbit_Oak_Plugins_Document_Secondary_Secondary_Store_Cac (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Included_Paths : in Swagger.UString_Vectors.Vector; Enable_Async_Observer : in Swagger.Nullable_Boolean; Observer_Queue_Size : in Swagger.Nullable_Integer; Result : out .Models.OrgApacheJackrabbitOakPluginsDocumentSecondarySecondaryStoreCacInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Org_Apache_Jackrabbit_Oak_Plugins_Document_Secondary_Secondary_Store_Cac; -- overriding procedure Org_Apache_Jackrabbit_Oak_Plugins_Index_Async_Indexer_Service (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Async_Configs : in Swagger.UString_Vectors.Vector; Lease_Time_Out_Minutes : in Swagger.Nullable_Integer; Failing_Index_Timeout_Seconds : in Swagger.Nullable_Integer; Error_Warn_Interval_Seconds : in Swagger.Nullable_Integer; Result : out .Models.OrgApacheJackrabbitOakPluginsIndexAsyncIndexerServiceInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Org_Apache_Jackrabbit_Oak_Plugins_Index_Async_Indexer_Service; -- overriding procedure Org_Apache_Jackrabbit_Oak_Plugins_Index_Lucene_Lucene_Index_Provider_Serv (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Disabled : in Swagger.Nullable_Boolean; Debug : in Swagger.Nullable_Boolean; Local_Index_Dir : in Swagger.Nullable_UString; Enable_Open_Index_Async : in Swagger.Nullable_Boolean; Thread_Pool_Size : in Swagger.Nullable_Integer; Prefetch_Index_Files : in Swagger.Nullable_Boolean; Extracted_Text_Cache_Size_In_M_B : in Swagger.Nullable_Integer; Extracted_Text_Cache_Expiry_In_Secs : in Swagger.Nullable_Integer; Always_Use_Pre_Extracted_Cache : in Swagger.Nullable_Boolean; Boolean_Clause_Limit : in Swagger.Nullable_Integer; Enable_Hybrid_Indexing : in Swagger.Nullable_Boolean; Hybrid_Queue_Size : in Swagger.Nullable_Integer; Disable_Stored_Index_Definition : in Swagger.Nullable_Boolean; Deleted_Blobs_Collection_Enabled : in Swagger.Nullable_Boolean; Prop_Index_Cleaner_Interval_In_Secs : in Swagger.Nullable_Integer; Enable_Single_Blob_Index_Files : in Swagger.Nullable_Boolean; Result : out .Models.OrgApacheJackrabbitOakPluginsIndexLuceneLuceneIndexProviderServInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Org_Apache_Jackrabbit_Oak_Plugins_Index_Lucene_Lucene_Index_Provider_Serv; -- overriding procedure Org_Apache_Jackrabbit_Oak_Plugins_Index_Solr_Osgi_Embedded_Solr_Server_Co (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Solr_Periodhome_Periodpath : in Swagger.Nullable_UString; Solr_Periodcore_Periodname : in Swagger.Nullable_UString; Result : out .Models.OrgApacheJackrabbitOakPluginsIndexSolrOsgiEmbeddedSolrServerCoInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Org_Apache_Jackrabbit_Oak_Plugins_Index_Solr_Osgi_Embedded_Solr_Server_Co; -- overriding procedure Org_Apache_Jackrabbit_Oak_Plugins_Index_Solr_Osgi_Node_State_Solr_Servers (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Enabled : in Swagger.Nullable_Boolean; Result : out .Models.OrgApacheJackrabbitOakPluginsIndexSolrOsgiNodeStateSolrServersInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Org_Apache_Jackrabbit_Oak_Plugins_Index_Solr_Osgi_Node_State_Solr_Servers; -- overriding procedure Org_Apache_Jackrabbit_Oak_Plugins_Index_Solr_Osgi_Oak_Solr_Configuration (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Path_Perioddesc_Periodfield : in Swagger.Nullable_UString; Path_Periodchild_Periodfield : in Swagger.Nullable_UString; Path_Periodparent_Periodfield : in Swagger.Nullable_UString; Path_Periodexact_Periodfield : in Swagger.Nullable_UString; Catch_Periodall_Periodfield : in Swagger.Nullable_UString; Collapsed_Periodpath_Periodfield : in Swagger.Nullable_UString; Path_Perioddepth_Periodfield : in Swagger.Nullable_UString; Commit_Periodpolicy : in Swagger.Nullable_UString; Rows : in Swagger.Nullable_Integer; Path_Periodrestrictions : in Swagger.Nullable_Boolean; Property_Periodrestrictions : in Swagger.Nullable_Boolean; Primarytypes_Periodrestrictions : in Swagger.Nullable_Boolean; Ignored_Periodproperties : in Swagger.UString_Vectors.Vector; Used_Periodproperties : in Swagger.UString_Vectors.Vector; Type_Periodmappings : in Swagger.UString_Vectors.Vector; Property_Periodmappings : in Swagger.UString_Vectors.Vector; Collapse_Periodjcrcontent_Periodnodes : in Swagger.Nullable_Boolean; Result : out .Models.OrgApacheJackrabbitOakPluginsIndexSolrOsgiOakSolrConfigurationInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Org_Apache_Jackrabbit_Oak_Plugins_Index_Solr_Osgi_Oak_Solr_Configuration; -- overriding procedure Org_Apache_Jackrabbit_Oak_Plugins_Index_Solr_Osgi_Remote_Solr_Server_Conf (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Solr_Periodhttp_Periodurl : in Swagger.Nullable_UString; Solr_Periodzk_Periodhost : in Swagger.Nullable_UString; Solr_Periodcollection : in Swagger.Nullable_UString; Solr_Periodsocket_Periodtimeout : in Swagger.Nullable_Integer; Solr_Periodconnection_Periodtimeout : in Swagger.Nullable_Integer; Solr_Periodshards_Periodno : in Swagger.Nullable_Integer; Solr_Periodreplication_Periodfactor : in Swagger.Nullable_Integer; Solr_Periodconf_Perioddir : in Swagger.Nullable_UString; Result : out .Models.OrgApacheJackrabbitOakPluginsIndexSolrOsgiRemoteSolrServerConfInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Org_Apache_Jackrabbit_Oak_Plugins_Index_Solr_Osgi_Remote_Solr_Server_Conf; -- overriding procedure Org_Apache_Jackrabbit_Oak_Plugins_Index_Solr_Osgi_Solr_Query_Index_Provid (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Query_Periodaggregation : in Swagger.Nullable_Boolean; Result : out .Models.OrgApacheJackrabbitOakPluginsIndexSolrOsgiSolrQueryIndexProvidInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Org_Apache_Jackrabbit_Oak_Plugins_Index_Solr_Osgi_Solr_Query_Index_Provid; -- overriding procedure Org_Apache_Jackrabbit_Oak_Plugins_Index_Solr_Osgi_Solr_Server_Provider_Se (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Server_Periodtype : in Swagger.Nullable_UString; Result : out .Models.OrgApacheJackrabbitOakPluginsIndexSolrOsgiSolrServerProviderSeInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Org_Apache_Jackrabbit_Oak_Plugins_Index_Solr_Osgi_Solr_Server_Provider_Se; -- overriding procedure Org_Apache_Jackrabbit_Oak_Plugins_Metric_Statistics_Provider_Factory (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Provider_Type : in Swagger.Nullable_UString; Result : out .Models.OrgApacheJackrabbitOakPluginsMetricStatisticsProviderFactoryInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Org_Apache_Jackrabbit_Oak_Plugins_Metric_Statistics_Provider_Factory; -- overriding procedure Org_Apache_Jackrabbit_Oak_Plugins_Observation_Change_Collector_Provider (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Max_Items : in Swagger.Nullable_Integer; Max_Path_Depth : in Swagger.Nullable_Integer; Enabled : in Swagger.Nullable_Boolean; Result : out .Models.OrgApacheJackrabbitOakPluginsObservationChangeCollectorProviderInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Org_Apache_Jackrabbit_Oak_Plugins_Observation_Change_Collector_Provider; -- overriding procedure Org_Apache_Jackrabbit_Oak_Query_Query_Engine_Settings_Service (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Query_Limit_In_Memory : in Swagger.Nullable_Integer; Query_Limit_Reads : in Swagger.Nullable_Integer; Query_Fail_Traversal : in Swagger.Nullable_Boolean; Fast_Query_Size : in Swagger.Nullable_Boolean; Result : out .Models.OrgApacheJackrabbitOakQueryQueryEngineSettingsServiceInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Org_Apache_Jackrabbit_Oak_Query_Query_Engine_Settings_Service; -- overriding procedure Org_Apache_Jackrabbit_Oak_Security_Authentication_Authentication_Config (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Org_Periodapache_Periodjackrabbit_Periodoak_Periodauthentication_Periodapp_Name : in Swagger.Nullable_UString; Org_Periodapache_Periodjackrabbit_Periodoak_Periodauthentication_Periodconfig_Spi_Name : in Swagger.Nullable_UString; Result : out .Models.OrgApacheJackrabbitOakSecurityAuthenticationAuthenticationConfigInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Org_Apache_Jackrabbit_Oak_Security_Authentication_Authentication_Config; -- overriding procedure Org_Apache_Jackrabbit_Oak_Security_Authentication_Ldap_Impl_Ldap_Identi (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Provider_Periodname : in Swagger.Nullable_UString; Host_Periodname : in Swagger.Nullable_UString; Host_Periodport : in Swagger.Nullable_Integer; Host_Periodssl : in Swagger.Nullable_Boolean; Host_Periodtls : in Swagger.Nullable_Boolean; Host_Periodno_Cert_Check : in Swagger.Nullable_Boolean; Bind_Perioddn : in Swagger.Nullable_UString; Bind_Periodpassword : in Swagger.Nullable_UString; Search_Timeout : in Swagger.Nullable_UString; Admin_Pool_Periodmax_Active : in Swagger.Nullable_Integer; Admin_Pool_Periodlookup_On_Validate : in Swagger.Nullable_Boolean; User_Pool_Periodmax_Active : in Swagger.Nullable_Integer; User_Pool_Periodlookup_On_Validate : in Swagger.Nullable_Boolean; User_Periodbase_D_N : in Swagger.Nullable_UString; User_Periodobjectclass : in Swagger.UString_Vectors.Vector; User_Periodid_Attribute : in Swagger.Nullable_UString; User_Periodextra_Filter : in Swagger.Nullable_UString; User_Periodmake_Dn_Path : in Swagger.Nullable_Boolean; Group_Periodbase_D_N : in Swagger.Nullable_UString; Group_Periodobjectclass : in Swagger.UString_Vectors.Vector; Group_Periodname_Attribute : in Swagger.Nullable_UString; Group_Periodextra_Filter : in Swagger.Nullable_UString; Group_Periodmake_Dn_Path : in Swagger.Nullable_Boolean; Group_Periodmember_Attribute : in Swagger.Nullable_UString; Use_Uid_For_Ext_Id : in Swagger.Nullable_Boolean; Customattributes : in Swagger.UString_Vectors.Vector; Result : out .Models.OrgApacheJackrabbitOakSecurityAuthenticationLdapImplLdapIdentiInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Org_Apache_Jackrabbit_Oak_Security_Authentication_Ldap_Impl_Ldap_Identi; -- overriding procedure Org_Apache_Jackrabbit_Oak_Security_Authentication_Token_Token_Configura (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Token_Expiration : in Swagger.Nullable_UString; Token_Length : in Swagger.Nullable_UString; Token_Refresh : in Swagger.Nullable_Boolean; Token_Cleanup_Threshold : in Swagger.Nullable_Integer; Password_Hash_Algorithm : in Swagger.Nullable_UString; Password_Hash_Iterations : in Swagger.Nullable_Integer; Password_Salt_Size : in Swagger.Nullable_Integer; Result : out .Models.OrgApacheJackrabbitOakSecurityAuthenticationTokenTokenConfiguraInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Org_Apache_Jackrabbit_Oak_Security_Authentication_Token_Token_Configura; -- overriding procedure Org_Apache_Jackrabbit_Oak_Security_Authorization_Authorization_Configur (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Permissions_Jr2 : in Swagger.Nullable_UString; Import_Behavior : in Swagger.Nullable_UString; Read_Paths : in Swagger.UString_Vectors.Vector; Administrative_Principals : in Swagger.UString_Vectors.Vector; Configuration_Ranking : in Swagger.Nullable_Integer; Result : out .Models.OrgApacheJackrabbitOakSecurityAuthorizationAuthorizationConfigurInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Org_Apache_Jackrabbit_Oak_Security_Authorization_Authorization_Configur; -- overriding procedure Org_Apache_Jackrabbit_Oak_Security_Internal_Security_Provider_Registrati (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Required_Service_Pids : in Swagger.UString_Vectors.Vector; Authorization_Composition_Type : in Swagger.Nullable_UString; Result : out .Models.OrgApacheJackrabbitOakSecurityInternalSecurityProviderRegistratiInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Org_Apache_Jackrabbit_Oak_Security_Internal_Security_Provider_Registrati; -- overriding procedure Org_Apache_Jackrabbit_Oak_Security_User_Random_Authorizable_Node_Name (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Length : in Swagger.Nullable_Integer; Result : out .Models.OrgApacheJackrabbitOakSecurityUserRandomAuthorizableNodeNameInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Org_Apache_Jackrabbit_Oak_Security_User_Random_Authorizable_Node_Name; -- overriding procedure Org_Apache_Jackrabbit_Oak_Security_User_User_Configuration_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Users_Path : in Swagger.Nullable_UString; Groups_Path : in Swagger.Nullable_UString; System_Relative_Path : in Swagger.Nullable_UString; Default_Depth : in Swagger.Nullable_Integer; Import_Behavior : in Swagger.Nullable_UString; Password_Hash_Algorithm : in Swagger.Nullable_UString; Password_Hash_Iterations : in Swagger.Nullable_Integer; Password_Salt_Size : in Swagger.Nullable_Integer; Omit_Admin_Pw : in Swagger.Nullable_Boolean; Support_Auto_Save : in Swagger.Nullable_Boolean; Password_Max_Age : in Swagger.Nullable_Integer; Initial_Password_Change : in Swagger.Nullable_Boolean; Password_History_Size : in Swagger.Nullable_Integer; Password_Expiry_For_Admin : in Swagger.Nullable_Boolean; Cache_Expiration : in Swagger.Nullable_Integer; Enable_R_F_C7613_Usercase_Mapped_Profile : in Swagger.Nullable_Boolean; Result : out .Models.OrgApacheJackrabbitOakSecurityUserUserConfigurationImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Org_Apache_Jackrabbit_Oak_Security_User_User_Configuration_Impl; -- overriding procedure Org_Apache_Jackrabbit_Oak_Segment_Azure_Azure_Segment_Store_Service (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Account_Name : in Swagger.Nullable_UString; Container_Name : in Swagger.Nullable_UString; Access_Key : in Swagger.Nullable_UString; Root_Path : in Swagger.Nullable_UString; Connection_U_R_L : in Swagger.Nullable_UString; Result : out .Models.OrgApacheJackrabbitOakSegmentAzureAzureSegmentStoreServiceInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Org_Apache_Jackrabbit_Oak_Segment_Azure_Azure_Segment_Store_Service; -- overriding procedure Org_Apache_Jackrabbit_Oak_Segment_Segment_Node_Store_Factory (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Repository_Periodhome : in Swagger.Nullable_UString; Tarmk_Periodmode : in Swagger.Nullable_UString; Tarmk_Periodsize : in Swagger.Nullable_Integer; Segment_Cache_Periodsize : in Swagger.Nullable_Integer; String_Cache_Periodsize : in Swagger.Nullable_Integer; Template_Cache_Periodsize : in Swagger.Nullable_Integer; String_Deduplication_Cache_Periodsize : in Swagger.Nullable_Integer; Template_Deduplication_Cache_Periodsize : in Swagger.Nullable_Integer; Node_Deduplication_Cache_Periodsize : in Swagger.Nullable_Integer; Pause_Compaction : in Swagger.Nullable_Boolean; Compaction_Periodretry_Count : in Swagger.Nullable_Integer; Compaction_Periodforce_Periodtimeout : in Swagger.Nullable_Integer; Compaction_Periodsize_Delta_Estimation : in Swagger.Nullable_Integer; Compaction_Perioddisable_Estimation : in Swagger.Nullable_Boolean; Compaction_Periodretained_Generations : in Swagger.Nullable_Integer; Compaction_Periodmemory_Threshold : in Swagger.Nullable_Integer; Compaction_Periodprogress_Log : in Swagger.Nullable_Integer; Standby : in Swagger.Nullable_Boolean; Custom_Blob_Store : in Swagger.Nullable_Boolean; Custom_Segment_Store : in Swagger.Nullable_Boolean; Split_Persistence : in Swagger.Nullable_Boolean; Repository_Periodbackup_Perioddir : in Swagger.Nullable_UString; Blob_Gc_Max_Age_In_Secs : in Swagger.Nullable_Integer; Blob_Track_Snapshot_Interval_In_Secs : in Swagger.Nullable_Integer; Role : in Swagger.Nullable_UString; Register_Descriptors : in Swagger.Nullable_Boolean; Dispatch_Changes : in Swagger.Nullable_Boolean; Result : out .Models.OrgApacheJackrabbitOakSegmentSegmentNodeStoreFactoryInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Org_Apache_Jackrabbit_Oak_Segment_Segment_Node_Store_Factory; -- overriding procedure Org_Apache_Jackrabbit_Oak_Segment_Segment_Node_Store_Monitor_Service (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Commits_Tracker_Writer_Groups : in Swagger.UString_Vectors.Vector; Result : out .Models.OrgApacheJackrabbitOakSegmentSegmentNodeStoreMonitorServiceInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Org_Apache_Jackrabbit_Oak_Segment_Segment_Node_Store_Monitor_Service; -- overriding procedure Org_Apache_Jackrabbit_Oak_Segment_Segment_Node_Store_Service (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Repository_Periodhome : in Swagger.Nullable_UString; Tarmk_Periodmode : in Swagger.Nullable_UString; Tarmk_Periodsize : in Swagger.Nullable_Integer; Segment_Cache_Periodsize : in Swagger.Nullable_Integer; String_Cache_Periodsize : in Swagger.Nullable_Integer; Template_Cache_Periodsize : in Swagger.Nullable_Integer; String_Deduplication_Cache_Periodsize : in Swagger.Nullable_Integer; Template_Deduplication_Cache_Periodsize : in Swagger.Nullable_Integer; Node_Deduplication_Cache_Periodsize : in Swagger.Nullable_Integer; Pause_Compaction : in Swagger.Nullable_Boolean; Compaction_Periodretry_Count : in Swagger.Nullable_Integer; Compaction_Periodforce_Periodtimeout : in Swagger.Nullable_Integer; Compaction_Periodsize_Delta_Estimation : in Swagger.Nullable_Integer; Compaction_Perioddisable_Estimation : in Swagger.Nullable_Boolean; Compaction_Periodretained_Generations : in Swagger.Nullable_Integer; Compaction_Periodmemory_Threshold : in Swagger.Nullable_Integer; Compaction_Periodprogress_Log : in Swagger.Nullable_Integer; Standby : in Swagger.Nullable_Boolean; Custom_Blob_Store : in Swagger.Nullable_Boolean; Custom_Segment_Store : in Swagger.Nullable_Boolean; Split_Persistence : in Swagger.Nullable_Boolean; Repository_Periodbackup_Perioddir : in Swagger.Nullable_UString; Blob_Gc_Max_Age_In_Secs : in Swagger.Nullable_Integer; Blob_Track_Snapshot_Interval_In_Secs : in Swagger.Nullable_Integer; Result : out .Models.OrgApacheJackrabbitOakSegmentSegmentNodeStoreServiceInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Org_Apache_Jackrabbit_Oak_Segment_Segment_Node_Store_Service; -- overriding procedure Org_Apache_Jackrabbit_Oak_Segment_Standby_Store_Standby_Store_Service (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Org_Periodapache_Periodsling_Periodinstaller_Periodconfiguration_Periodpersist : in Swagger.Nullable_Boolean; Mode : in Swagger.Nullable_UString; Port : in Swagger.Nullable_Integer; Primary_Periodhost : in Swagger.Nullable_UString; Interval : in Swagger.Nullable_Integer; Primary_Periodallowed_Client_Ip_Ranges : in Swagger.UString_Vectors.Vector; Secure : in Swagger.Nullable_Boolean; Standby_Periodreadtimeout : in Swagger.Nullable_Integer; Standby_Periodautoclean : in Swagger.Nullable_Boolean; Result : out .Models.OrgApacheJackrabbitOakSegmentStandbyStoreStandbyStoreServiceInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Org_Apache_Jackrabbit_Oak_Segment_Standby_Store_Standby_Store_Service; -- overriding procedure Org_Apache_Jackrabbit_Oak_Spi_Security_Authentication_External_Impl_De (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Handler_Periodname : in Swagger.Nullable_UString; User_Periodexpiration_Time : in Swagger.Nullable_UString; User_Periodauto_Membership : in Swagger.UString_Vectors.Vector; User_Periodproperty_Mapping : in Swagger.UString_Vectors.Vector; User_Periodpath_Prefix : in Swagger.Nullable_UString; User_Periodmembership_Exp_Time : in Swagger.Nullable_UString; User_Periodmembership_Nesting_Depth : in Swagger.Nullable_Integer; User_Perioddynamic_Membership : in Swagger.Nullable_Boolean; User_Perioddisable_Missing : in Swagger.Nullable_Boolean; Group_Periodexpiration_Time : in Swagger.Nullable_UString; Group_Periodauto_Membership : in Swagger.UString_Vectors.Vector; Group_Periodproperty_Mapping : in Swagger.UString_Vectors.Vector; Group_Periodpath_Prefix : in Swagger.Nullable_UString; Enable_R_F_C7613_Usercase_Mapped_Profile : in Swagger.Nullable_Boolean; Result : out .Models.OrgApacheJackrabbitOakSpiSecurityAuthenticationExternalImplDeInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Org_Apache_Jackrabbit_Oak_Spi_Security_Authentication_External_Impl_De; -- overriding procedure Org_Apache_Jackrabbit_Oak_Spi_Security_Authentication_External_Impl_Ex (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Jaas_Periodranking : in Swagger.Nullable_Integer; Jaas_Periodcontrol_Flag : in Swagger.Nullable_UString; Jaas_Periodrealm_Name : in Swagger.Nullable_UString; Idp_Periodname : in Swagger.Nullable_UString; Sync_Periodhandler_Name : in Swagger.Nullable_UString; Result : out .Models.OrgApacheJackrabbitOakSpiSecurityAuthenticationExternalImplExInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Org_Apache_Jackrabbit_Oak_Spi_Security_Authentication_External_Impl_Ex; -- overriding procedure Org_Apache_Jackrabbit_Oak_Spi_Security_Authentication_External_Impl_Pr (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Protect_External_Id : in Swagger.Nullable_Boolean; Result : out .Models.OrgApacheJackrabbitOakSpiSecurityAuthenticationExternalImplPrInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Org_Apache_Jackrabbit_Oak_Spi_Security_Authentication_External_Impl_Pr; -- overriding procedure Org_Apache_Jackrabbit_Oak_Spi_Security_Authorization_Cug_Impl_Cug_Confi (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cug_Supported_Paths : in Swagger.UString_Vectors.Vector; Cug_Enabled : in Swagger.Nullable_Boolean; Configuration_Ranking : in Swagger.Nullable_Integer; Result : out .Models.OrgApacheJackrabbitOakSpiSecurityAuthorizationCugImplCugConfiInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Org_Apache_Jackrabbit_Oak_Spi_Security_Authorization_Cug_Impl_Cug_Confi; -- overriding procedure Org_Apache_Jackrabbit_Oak_Spi_Security_Authorization_Cug_Impl_Cug_Exclu (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Principal_Names : in Swagger.UString_Vectors.Vector; Result : out .Models.OrgApacheJackrabbitOakSpiSecurityAuthorizationCugImplCugExcluInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Org_Apache_Jackrabbit_Oak_Spi_Security_Authorization_Cug_Impl_Cug_Exclu; -- overriding procedure Org_Apache_Jackrabbit_Oak_Spi_Security_User_Action_Default_Authorizable (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Enabled_Actions : in Swagger.Nullable_UString; User_Privilege_Names : in Swagger.UString_Vectors.Vector; Group_Privilege_Names : in Swagger.UString_Vectors.Vector; Constraint : in Swagger.Nullable_UString; Result : out .Models.OrgApacheJackrabbitOakSpiSecurityUserActionDefaultAuthorizableInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Org_Apache_Jackrabbit_Oak_Spi_Security_User_Action_Default_Authorizable; -- overriding procedure Org_Apache_Jackrabbit_Vault_Packaging_Impl_Packaging_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Package_Roots : in Swagger.UString_Vectors.Vector; Result : out .Models.OrgApacheJackrabbitVaultPackagingImplPackagingImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Org_Apache_Jackrabbit_Vault_Packaging_Impl_Packaging_Impl; -- overriding procedure Org_Apache_Jackrabbit_Vault_Packaging_Registry_Impl_F_S_Package_Registry (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Home_Path : in Swagger.Nullable_UString; Result : out .Models.OrgApacheJackrabbitVaultPackagingRegistryImplFSPackageRegistryInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Org_Apache_Jackrabbit_Vault_Packaging_Registry_Impl_F_S_Package_Registry; -- overriding procedure Org_Apache_Sling_Auth_Core_Impl_Logout_Servlet (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Sling_Periodservlet_Periodmethods : in Swagger.UString_Vectors.Vector; Sling_Periodservlet_Periodpaths : in Swagger.Nullable_UString; Result : out .Models.OrgApacheSlingAuthCoreImplLogoutServletInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Org_Apache_Sling_Auth_Core_Impl_Logout_Servlet; -- overriding procedure Org_Apache_Sling_Caconfig_Impl_Configuration_Bindings_Value_Provider (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Enabled : in Swagger.Nullable_Boolean; Result : out .Models.OrgApacheSlingCaconfigImplConfigurationBindingsValueProviderInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Org_Apache_Sling_Caconfig_Impl_Configuration_Bindings_Value_Provider; -- overriding procedure Org_Apache_Sling_Caconfig_Impl_Configuration_Resolver_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Config_Bucket_Names : in Swagger.UString_Vectors.Vector; Result : out .Models.OrgApacheSlingCaconfigImplConfigurationResolverImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Org_Apache_Sling_Caconfig_Impl_Configuration_Resolver_Impl; -- overriding procedure Org_Apache_Sling_Caconfig_Impl_Def_Default_Configuration_Inheritance_Stra (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Enabled : in Swagger.Nullable_Boolean; Config_Property_Inheritance_Property_Names : in Swagger.UString_Vectors.Vector; Result : out .Models.OrgApacheSlingCaconfigImplDefDefaultConfigurationInheritanceStraInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Org_Apache_Sling_Caconfig_Impl_Def_Default_Configuration_Inheritance_Stra; -- overriding procedure Org_Apache_Sling_Caconfig_Impl_Def_Default_Configuration_Persistence_Stra (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Enabled : in Swagger.Nullable_Boolean; Result : out .Models.OrgApacheSlingCaconfigImplDefDefaultConfigurationPersistenceStraInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Org_Apache_Sling_Caconfig_Impl_Def_Default_Configuration_Persistence_Stra; -- overriding procedure Org_Apache_Sling_Caconfig_Impl_Override_Osgi_Configuration_Override_Provi (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Description : in Swagger.Nullable_UString; Overrides : in Swagger.UString_Vectors.Vector; Enabled : in Swagger.Nullable_Boolean; Service_Periodranking : in Swagger.Nullable_Integer; Result : out .Models.OrgApacheSlingCaconfigImplOverrideOsgiConfigurationOverrideProviInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Org_Apache_Sling_Caconfig_Impl_Override_Osgi_Configuration_Override_Provi; -- overriding procedure Org_Apache_Sling_Caconfig_Impl_Override_System_Property_Configuration_Ove (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Enabled : in Swagger.Nullable_Boolean; Service_Periodranking : in Swagger.Nullable_Integer; Result : out .Models.OrgApacheSlingCaconfigImplOverrideSystemPropertyConfigurationOveInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Org_Apache_Sling_Caconfig_Impl_Override_System_Property_Configuration_Ove; -- overriding procedure Org_Apache_Sling_Caconfig_Management_Impl_Configuration_Management_Setti (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Ignore_Property_Name_Regex : in Swagger.UString_Vectors.Vector; Config_Collection_Properties_Resource_Names : in Swagger.UString_Vectors.Vector; Result : out .Models.OrgApacheSlingCaconfigManagementImplConfigurationManagementSettiInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Org_Apache_Sling_Caconfig_Management_Impl_Configuration_Management_Setti; -- overriding procedure Org_Apache_Sling_Caconfig_Resource_Impl_Def_Default_Configuration_Resour (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Enabled : in Swagger.Nullable_Boolean; Config_Path : in Swagger.Nullable_UString; Fallback_Paths : in Swagger.UString_Vectors.Vector; Config_Collection_Inheritance_Property_Names : in Swagger.UString_Vectors.Vector; Result : out .Models.OrgApacheSlingCaconfigResourceImplDefDefaultConfigurationResourInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Org_Apache_Sling_Caconfig_Resource_Impl_Def_Default_Configuration_Resour; -- overriding procedure Org_Apache_Sling_Caconfig_Resource_Impl_Def_Default_Context_Path_Strategy (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Enabled : in Swagger.Nullable_Boolean; Config_Ref_Resource_Names : in Swagger.UString_Vectors.Vector; Config_Ref_Property_Names : in Swagger.UString_Vectors.Vector; Service_Periodranking : in Swagger.Nullable_Integer; Result : out .Models.OrgApacheSlingCaconfigResourceImplDefDefaultContextPathStrategyInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Org_Apache_Sling_Caconfig_Resource_Impl_Def_Default_Context_Path_Strategy; -- overriding procedure Org_Apache_Sling_Commons_Html_Internal_Tagsoup_Html_Parser (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Parser_Periodfeatures : in Swagger.UString_Vectors.Vector; Result : out .Models.OrgApacheSlingCommonsHtmlInternalTagsoupHtmlParserInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Org_Apache_Sling_Commons_Html_Internal_Tagsoup_Html_Parser; -- overriding procedure Org_Apache_Sling_Commons_Log_Log_Manager (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Org_Periodapache_Periodsling_Periodcommons_Periodlog_Periodlevel : in Swagger.Nullable_UString; Org_Periodapache_Periodsling_Periodcommons_Periodlog_Periodfile : in Swagger.Nullable_UString; Org_Periodapache_Periodsling_Periodcommons_Periodlog_Periodfile_Periodnumber : in Swagger.Nullable_Integer; Org_Periodapache_Periodsling_Periodcommons_Periodlog_Periodfile_Periodsize : in Swagger.Nullable_UString; Org_Periodapache_Periodsling_Periodcommons_Periodlog_Periodpattern : in Swagger.Nullable_UString; Org_Periodapache_Periodsling_Periodcommons_Periodlog_Periodconfiguration_File : in Swagger.Nullable_UString; Org_Periodapache_Periodsling_Periodcommons_Periodlog_Periodpackaging_Data_Enabled : in Swagger.Nullable_Boolean; Org_Periodapache_Periodsling_Periodcommons_Periodlog_Periodmax_Caller_Data_Depth : in Swagger.Nullable_Integer; Org_Periodapache_Periodsling_Periodcommons_Periodlog_Periodmax_Old_File_Count_In_Dump : in Swagger.Nullable_Integer; Org_Periodapache_Periodsling_Periodcommons_Periodlog_Periodnum_Of_Lines : in Swagger.Nullable_Integer; Result : out .Models.OrgApacheSlingCommonsLogLogManagerInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Org_Apache_Sling_Commons_Log_Log_Manager; -- overriding procedure Org_Apache_Sling_Commons_Log_Log_Manager_Factory_Config (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Org_Periodapache_Periodsling_Periodcommons_Periodlog_Periodlevel : in Swagger.Nullable_UString; Org_Periodapache_Periodsling_Periodcommons_Periodlog_Periodfile : in Swagger.Nullable_UString; Org_Periodapache_Periodsling_Periodcommons_Periodlog_Periodpattern : in Swagger.Nullable_UString; Org_Periodapache_Periodsling_Periodcommons_Periodlog_Periodnames : in Swagger.UString_Vectors.Vector; Org_Periodapache_Periodsling_Periodcommons_Periodlog_Periodadditiv : in Swagger.Nullable_Boolean; Result : out .Models.OrgApacheSlingCommonsLogLogManagerFactoryConfigInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Org_Apache_Sling_Commons_Log_Log_Manager_Factory_Config; -- overriding procedure Org_Apache_Sling_Commons_Log_Log_Manager_Factory_Writer (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Org_Periodapache_Periodsling_Periodcommons_Periodlog_Periodfile : in Swagger.Nullable_UString; Org_Periodapache_Periodsling_Periodcommons_Periodlog_Periodfile_Periodnumber : in Swagger.Nullable_Integer; Org_Periodapache_Periodsling_Periodcommons_Periodlog_Periodfile_Periodsize : in Swagger.Nullable_UString; Org_Periodapache_Periodsling_Periodcommons_Periodlog_Periodfile_Periodbuffered : in Swagger.Nullable_Boolean; Result : out .Models.OrgApacheSlingCommonsLogLogManagerFactoryWriterInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Org_Apache_Sling_Commons_Log_Log_Manager_Factory_Writer; -- overriding procedure Org_Apache_Sling_Commons_Metrics_Internal_Log_Reporter (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Period : in Swagger.Nullable_Integer; Time_Unit : in Swagger.Nullable_UString; Level : in Swagger.Nullable_UString; Logger_Name : in Swagger.Nullable_UString; Prefix : in Swagger.Nullable_UString; Pattern : in Swagger.Nullable_UString; Registry_Name : in Swagger.Nullable_UString; Result : out .Models.OrgApacheSlingCommonsMetricsInternalLogReporterInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Org_Apache_Sling_Commons_Metrics_Internal_Log_Reporter; -- overriding procedure Org_Apache_Sling_Commons_Metrics_Rrd4j_Impl_Codahale_Metrics_Reporter (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Datasources : in Swagger.UString_Vectors.Vector; Step : in Swagger.Nullable_Integer; Archives : in Swagger.UString_Vectors.Vector; Path : in Swagger.Nullable_UString; Result : out .Models.OrgApacheSlingCommonsMetricsRrd4jImplCodahaleMetricsReporterInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Org_Apache_Sling_Commons_Metrics_Rrd4j_Impl_Codahale_Metrics_Reporter; -- overriding procedure Org_Apache_Sling_Commons_Mime_Internal_Mime_Type_Service_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Mime_Periodtypes : in Swagger.UString_Vectors.Vector; Result : out .Models.OrgApacheSlingCommonsMimeInternalMimeTypeServiceImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Org_Apache_Sling_Commons_Mime_Internal_Mime_Type_Service_Impl; -- overriding procedure Org_Apache_Sling_Commons_Scheduler_Impl_Quartz_Scheduler (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Pool_Name : in Swagger.Nullable_UString; Allowed_Pool_Names : in Swagger.UString_Vectors.Vector; Scheduler_Perioduseleaderforsingle : in Swagger.Nullable_Boolean; Metrics_Periodfilters : in Swagger.UString_Vectors.Vector; Slow_Threshold_Millis : in Swagger.Nullable_Integer; Result : out .Models.OrgApacheSlingCommonsSchedulerImplQuartzSchedulerInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Org_Apache_Sling_Commons_Scheduler_Impl_Quartz_Scheduler; -- overriding procedure Org_Apache_Sling_Commons_Scheduler_Impl_Scheduler_Health_Check (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Max_Periodquartz_Job_Periodduration_Periodacceptable : in Swagger.Nullable_Integer; Result : out .Models.OrgApacheSlingCommonsSchedulerImplSchedulerHealthCheckInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Org_Apache_Sling_Commons_Scheduler_Impl_Scheduler_Health_Check; -- overriding procedure Org_Apache_Sling_Commons_Threads_Impl_Default_Thread_Pool_Factory (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Name : in Swagger.Nullable_UString; Min_Pool_Size : in Swagger.Nullable_Integer; Max_Pool_Size : in Swagger.Nullable_Integer; Queue_Size : in Swagger.Nullable_Integer; Max_Thread_Age : in Swagger.Nullable_Integer; Keep_Alive_Time : in Swagger.Nullable_Integer; Block_Policy : in Swagger.Nullable_UString; Shutdown_Graceful : in Swagger.Nullable_Boolean; Daemon : in Swagger.Nullable_Boolean; Shutdown_Wait_Time : in Swagger.Nullable_Integer; Priority : in Swagger.Nullable_UString; Result : out .Models.OrgApacheSlingCommonsThreadsImplDefaultThreadPoolFactoryInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Org_Apache_Sling_Commons_Threads_Impl_Default_Thread_Pool_Factory; -- overriding procedure Org_Apache_Sling_Datasource_Data_Source_Factory (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Datasource_Periodname : in Swagger.Nullable_UString; Datasource_Periodsvc_Periodprop_Periodname : in Swagger.Nullable_UString; Driver_Class_Name : in Swagger.Nullable_UString; Url : in Swagger.Nullable_UString; Username : in Swagger.Nullable_UString; Password : in Swagger.Nullable_UString; Default_Auto_Commit : in Swagger.Nullable_UString; Default_Read_Only : in Swagger.Nullable_UString; Default_Transaction_Isolation : in Swagger.Nullable_UString; Default_Catalog : in Swagger.Nullable_UString; Max_Active : in Swagger.Nullable_Integer; Max_Idle : in Swagger.Nullable_Integer; Min_Idle : in Swagger.Nullable_Integer; Initial_Size : in Swagger.Nullable_Integer; Max_Wait : in Swagger.Nullable_Integer; Max_Age : in Swagger.Nullable_Integer; Test_On_Borrow : in Swagger.Nullable_Boolean; Test_On_Return : in Swagger.Nullable_Boolean; Test_While_Idle : in Swagger.Nullable_Boolean; Validation_Query : in Swagger.Nullable_UString; Validation_Query_Timeout : in Swagger.Nullable_Integer; Time_Between_Eviction_Runs_Millis : in Swagger.Nullable_Integer; Min_Evictable_Idle_Time_Millis : in Swagger.Nullable_Integer; Connection_Properties : in Swagger.Nullable_UString; Init_S_Q_L : in Swagger.Nullable_UString; Jdbc_Interceptors : in Swagger.Nullable_UString; Validation_Interval : in Swagger.Nullable_Integer; Log_Validation_Errors : in Swagger.Nullable_Boolean; Datasource_Periodsvc_Periodproperties : in Swagger.UString_Vectors.Vector; Result : out .Models.OrgApacheSlingDatasourceDataSourceFactoryInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Org_Apache_Sling_Datasource_Data_Source_Factory; -- overriding procedure Org_Apache_Sling_Datasource_J_N_D_I_Data_Source_Factory (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Datasource_Periodname : in Swagger.Nullable_UString; Datasource_Periodsvc_Periodprop_Periodname : in Swagger.Nullable_UString; Datasource_Periodjndi_Periodname : in Swagger.Nullable_UString; Jndi_Periodproperties : in Swagger.UString_Vectors.Vector; Result : out .Models.OrgApacheSlingDatasourceJNDIDataSourceFactoryInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Org_Apache_Sling_Datasource_J_N_D_I_Data_Source_Factory; -- overriding procedure Org_Apache_Sling_Discovery_Oak_Config (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Connector_Ping_Timeout : in Swagger.Nullable_Integer; Connector_Ping_Interval : in Swagger.Nullable_Integer; Discovery_Lite_Check_Interval : in Swagger.Nullable_Integer; Cluster_Sync_Service_Timeout : in Swagger.Nullable_Integer; Cluster_Sync_Service_Interval : in Swagger.Nullable_Integer; Enable_Sync_Token : in Swagger.Nullable_Boolean; Min_Event_Delay : in Swagger.Nullable_Integer; Socket_Connect_Timeout : in Swagger.Nullable_Integer; So_Timeout : in Swagger.Nullable_Integer; Topology_Connector_Urls : in Swagger.UString_Vectors.Vector; Topology_Connector_Whitelist : in Swagger.UString_Vectors.Vector; Auto_Stop_Local_Loop_Enabled : in Swagger.Nullable_Boolean; Gzip_Connector_Requests_Enabled : in Swagger.Nullable_Boolean; Hmac_Enabled : in Swagger.Nullable_Boolean; Enable_Encryption : in Swagger.Nullable_Boolean; Shared_Key : in Swagger.Nullable_UString; Hmac_Shared_Key_T_T_L : in Swagger.Nullable_Integer; Backoff_Standby_Factor : in Swagger.Nullable_UString; Backoff_Stable_Factor : in Swagger.Nullable_UString; Result : out .Models.OrgApacheSlingDiscoveryOakConfigInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Org_Apache_Sling_Discovery_Oak_Config; -- overriding procedure Org_Apache_Sling_Discovery_Oak_Synchronized_Clocks_Health_Check (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Hc_Periodname : in Swagger.Nullable_UString; Hc_Periodtags : in Swagger.UString_Vectors.Vector; Hc_Periodmbean_Periodname : in Swagger.Nullable_UString; Result : out .Models.OrgApacheSlingDiscoveryOakSynchronizedClocksHealthCheckInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Org_Apache_Sling_Discovery_Oak_Synchronized_Clocks_Health_Check; -- overriding procedure Org_Apache_Sling_Distribution_Agent_Impl_Forward_Distribution_Agent_Facto (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Name : in Swagger.Nullable_UString; Title : in Swagger.Nullable_UString; Details : in Swagger.Nullable_UString; Enabled : in Swagger.Nullable_Boolean; Service_Name : in Swagger.Nullable_UString; Log_Periodlevel : in Swagger.Nullable_UString; Allowed_Periodroots : in Swagger.UString_Vectors.Vector; Queue_Periodprocessing_Periodenabled : in Swagger.Nullable_Boolean; Package_Importer_Periodendpoints : in Swagger.UString_Vectors.Vector; Passive_Queues : in Swagger.UString_Vectors.Vector; Priority_Queues : in Swagger.UString_Vectors.Vector; Retry_Periodstrategy : in Swagger.Nullable_UString; Retry_Periodattempts : in Swagger.Nullable_Integer; Request_Authorization_Strategy_Periodtarget : in Swagger.Nullable_UString; Transport_Secret_Provider_Periodtarget : in Swagger.Nullable_UString; Package_Builder_Periodtarget : in Swagger.Nullable_UString; Triggers_Periodtarget : in Swagger.Nullable_UString; Queue_Periodprovider : in Swagger.Nullable_UString; Async_Perioddelivery : in Swagger.Nullable_Boolean; Http_Periodconn_Periodtimeout : in Swagger.Nullable_Integer; Result : out .Models.OrgApacheSlingDistributionAgentImplForwardDistributionAgentFactoInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Org_Apache_Sling_Distribution_Agent_Impl_Forward_Distribution_Agent_Facto; -- overriding procedure Org_Apache_Sling_Distribution_Agent_Impl_Privilege_Distribution_Request_A (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Name : in Swagger.Nullable_UString; Jcr_Privilege : in Swagger.Nullable_UString; Result : out .Models.OrgApacheSlingDistributionAgentImplPrivilegeDistributionRequestAInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Org_Apache_Sling_Distribution_Agent_Impl_Privilege_Distribution_Request_A; -- overriding procedure Org_Apache_Sling_Distribution_Agent_Impl_Queue_Distribution_Agent_Factory (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Name : in Swagger.Nullable_UString; Title : in Swagger.Nullable_UString; Details : in Swagger.Nullable_UString; Enabled : in Swagger.Nullable_Boolean; Service_Name : in Swagger.Nullable_UString; Log_Periodlevel : in Swagger.Nullable_UString; Allowed_Periodroots : in Swagger.UString_Vectors.Vector; Request_Authorization_Strategy_Periodtarget : in Swagger.Nullable_UString; Queue_Provider_Factory_Periodtarget : in Swagger.Nullable_UString; Package_Builder_Periodtarget : in Swagger.Nullable_UString; Triggers_Periodtarget : in Swagger.Nullable_UString; Priority_Queues : in Swagger.UString_Vectors.Vector; Result : out .Models.OrgApacheSlingDistributionAgentImplQueueDistributionAgentFactoryInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Org_Apache_Sling_Distribution_Agent_Impl_Queue_Distribution_Agent_Factory; -- overriding procedure Org_Apache_Sling_Distribution_Agent_Impl_Reverse_Distribution_Agent_Facto (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Name : in Swagger.Nullable_UString; Title : in Swagger.Nullable_UString; Details : in Swagger.Nullable_UString; Enabled : in Swagger.Nullable_Boolean; Service_Name : in Swagger.Nullable_UString; Log_Periodlevel : in Swagger.Nullable_UString; Queue_Periodprocessing_Periodenabled : in Swagger.Nullable_Boolean; Package_Exporter_Periodendpoints : in Swagger.UString_Vectors.Vector; Pull_Perioditems : in Swagger.Nullable_Integer; Http_Periodconn_Periodtimeout : in Swagger.Nullable_Integer; Request_Authorization_Strategy_Periodtarget : in Swagger.Nullable_UString; Transport_Secret_Provider_Periodtarget : in Swagger.Nullable_UString; Package_Builder_Periodtarget : in Swagger.Nullable_UString; Triggers_Periodtarget : in Swagger.Nullable_UString; Result : out .Models.OrgApacheSlingDistributionAgentImplReverseDistributionAgentFactoInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Org_Apache_Sling_Distribution_Agent_Impl_Reverse_Distribution_Agent_Facto; -- overriding procedure Org_Apache_Sling_Distribution_Agent_Impl_Simple_Distribution_Agent_Factor (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Name : in Swagger.Nullable_UString; Title : in Swagger.Nullable_UString; Details : in Swagger.Nullable_UString; Enabled : in Swagger.Nullable_Boolean; Service_Name : in Swagger.Nullable_UString; Log_Periodlevel : in Swagger.Nullable_UString; Queue_Periodprocessing_Periodenabled : in Swagger.Nullable_Boolean; Package_Exporter_Periodtarget : in Swagger.Nullable_UString; Package_Importer_Periodtarget : in Swagger.Nullable_UString; Request_Authorization_Strategy_Periodtarget : in Swagger.Nullable_UString; Triggers_Periodtarget : in Swagger.Nullable_UString; Result : out .Models.OrgApacheSlingDistributionAgentImplSimpleDistributionAgentFactorInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Org_Apache_Sling_Distribution_Agent_Impl_Simple_Distribution_Agent_Factor; -- overriding procedure Org_Apache_Sling_Distribution_Agent_Impl_Sync_Distribution_Agent_Factory (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Name : in Swagger.Nullable_UString; Title : in Swagger.Nullable_UString; Details : in Swagger.Nullable_UString; Enabled : in Swagger.Nullable_Boolean; Service_Name : in Swagger.Nullable_UString; Log_Periodlevel : in Swagger.Nullable_UString; Queue_Periodprocessing_Periodenabled : in Swagger.Nullable_Boolean; Passive_Queues : in Swagger.UString_Vectors.Vector; Package_Exporter_Periodendpoints : in Swagger.UString_Vectors.Vector; Package_Importer_Periodendpoints : in Swagger.UString_Vectors.Vector; Retry_Periodstrategy : in Swagger.Nullable_UString; Retry_Periodattempts : in Swagger.Nullable_Integer; Pull_Perioditems : in Swagger.Nullable_Integer; Http_Periodconn_Periodtimeout : in Swagger.Nullable_Integer; Request_Authorization_Strategy_Periodtarget : in Swagger.Nullable_UString; Transport_Secret_Provider_Periodtarget : in Swagger.Nullable_UString; Package_Builder_Periodtarget : in Swagger.Nullable_UString; Triggers_Periodtarget : in Swagger.Nullable_UString; Result : out .Models.OrgApacheSlingDistributionAgentImplSyncDistributionAgentFactoryInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Org_Apache_Sling_Distribution_Agent_Impl_Sync_Distribution_Agent_Factory; -- overriding procedure Org_Apache_Sling_Distribution_Monitor_Distribution_Queue_Health_Check (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Hc_Periodname : in Swagger.Nullable_UString; Hc_Periodtags : in Swagger.UString_Vectors.Vector; Hc_Periodmbean_Periodname : in Swagger.Nullable_UString; Number_Of_Retries_Allowed : in Swagger.Nullable_Integer; Result : out .Models.OrgApacheSlingDistributionMonitorDistributionQueueHealthCheckInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Org_Apache_Sling_Distribution_Monitor_Distribution_Queue_Health_Check; -- overriding procedure Org_Apache_Sling_Distribution_Packaging_Impl_Exporter_Agent_Distributio (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Name : in Swagger.Nullable_UString; Queue : in Swagger.Nullable_UString; Drop_Periodinvalid_Perioditems : in Swagger.Nullable_Boolean; Agent_Periodtarget : in Swagger.Nullable_UString; Result : out .Models.OrgApacheSlingDistributionPackagingImplExporterAgentDistributioInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Org_Apache_Sling_Distribution_Packaging_Impl_Exporter_Agent_Distributio; -- overriding procedure Org_Apache_Sling_Distribution_Packaging_Impl_Exporter_Local_Distributio (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Name : in Swagger.Nullable_UString; Package_Builder_Periodtarget : in Swagger.Nullable_UString; Result : out .Models.OrgApacheSlingDistributionPackagingImplExporterLocalDistributioInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Org_Apache_Sling_Distribution_Packaging_Impl_Exporter_Local_Distributio; -- overriding procedure Org_Apache_Sling_Distribution_Packaging_Impl_Exporter_Remote_Distributi (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Name : in Swagger.Nullable_UString; Endpoints : in Swagger.UString_Vectors.Vector; Pull_Perioditems : in Swagger.Nullable_Integer; Package_Builder_Periodtarget : in Swagger.Nullable_UString; Transport_Secret_Provider_Periodtarget : in Swagger.Nullable_UString; Result : out .Models.OrgApacheSlingDistributionPackagingImplExporterRemoteDistributiInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Org_Apache_Sling_Distribution_Packaging_Impl_Exporter_Remote_Distributi; -- overriding procedure Org_Apache_Sling_Distribution_Packaging_Impl_Importer_Local_Distributio (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Name : in Swagger.Nullable_UString; Package_Builder_Periodtarget : in Swagger.Nullable_UString; Result : out .Models.OrgApacheSlingDistributionPackagingImplImporterLocalDistributioInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Org_Apache_Sling_Distribution_Packaging_Impl_Importer_Local_Distributio; -- overriding procedure Org_Apache_Sling_Distribution_Packaging_Impl_Importer_Remote_Distributi (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Name : in Swagger.Nullable_UString; Endpoints : in Swagger.UString_Vectors.Vector; Transport_Secret_Provider_Periodtarget : in Swagger.Nullable_UString; Result : out .Models.OrgApacheSlingDistributionPackagingImplImporterRemoteDistributiInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Org_Apache_Sling_Distribution_Packaging_Impl_Importer_Remote_Distributi; -- overriding procedure Org_Apache_Sling_Distribution_Packaging_Impl_Importer_Repository_Distri (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Name : in Swagger.Nullable_UString; Service_Periodname : in Swagger.Nullable_UString; Path : in Swagger.Nullable_UString; Privilege_Periodname : in Swagger.Nullable_UString; Result : out .Models.OrgApacheSlingDistributionPackagingImplImporterRepositoryDistriInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Org_Apache_Sling_Distribution_Packaging_Impl_Importer_Repository_Distri; -- overriding procedure Org_Apache_Sling_Distribution_Resources_Impl_Distribution_Configuration (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Provider_Periodroots : in Swagger.Nullable_UString; Kind : in Swagger.Nullable_UString; Result : out .Models.OrgApacheSlingDistributionResourcesImplDistributionConfigurationInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Org_Apache_Sling_Distribution_Resources_Impl_Distribution_Configuration; -- overriding procedure Org_Apache_Sling_Distribution_Resources_Impl_Distribution_Service_Resour (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Provider_Periodroots : in Swagger.Nullable_UString; Kind : in Swagger.Nullable_UString; Result : out .Models.OrgApacheSlingDistributionResourcesImplDistributionServiceResourInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Org_Apache_Sling_Distribution_Resources_Impl_Distribution_Service_Resour; -- overriding procedure Org_Apache_Sling_Distribution_Serialization_Impl_Distribution_Package_Bu (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Name : in Swagger.Nullable_UString; P_Type : in Swagger.Nullable_UString; Format_Periodtarget : in Swagger.Nullable_UString; Temp_Fs_Folder : in Swagger.Nullable_UString; File_Threshold : in Swagger.Nullable_Integer; Memory_Unit : in Swagger.Nullable_UString; Use_Off_Heap_Memory : in Swagger.Nullable_Boolean; Digest_Algorithm : in Swagger.Nullable_UString; Monitoring_Queue_Size : in Swagger.Nullable_Integer; Cleanup_Delay : in Swagger.Nullable_Integer; Package_Periodfilters : in Swagger.UString_Vectors.Vector; Property_Periodfilters : in Swagger.UString_Vectors.Vector; Result : out .Models.OrgApacheSlingDistributionSerializationImplDistributionPackageBuInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Org_Apache_Sling_Distribution_Serialization_Impl_Distribution_Package_Bu; -- overriding procedure Org_Apache_Sling_Distribution_Serialization_Impl_Vlt_Vault_Distribution (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Name : in Swagger.Nullable_UString; P_Type : in Swagger.Nullable_UString; Import_Mode : in Swagger.Nullable_UString; Acl_Handling : in Swagger.Nullable_UString; Package_Periodroots : in Swagger.Nullable_UString; Package_Periodfilters : in Swagger.UString_Vectors.Vector; Property_Periodfilters : in Swagger.UString_Vectors.Vector; Temp_Fs_Folder : in Swagger.Nullable_UString; Use_Binary_References : in Swagger.Nullable_Boolean; Auto_Save_Threshold : in Swagger.Nullable_Integer; Cleanup_Delay : in Swagger.Nullable_Integer; File_Threshold : in Swagger.Nullable_Integer; M_E_G_A_B_Y_T_E_S : in Swagger.Nullable_UString; Use_Off_Heap_Memory : in Swagger.Nullable_Boolean; Digest_Algorithm : in Swagger.Nullable_UString; Monitoring_Queue_Size : in Swagger.Nullable_Integer; Paths_Mapping : in Swagger.UString_Vectors.Vector; Strict_Import : in Swagger.Nullable_Boolean; Result : out .Models.OrgApacheSlingDistributionSerializationImplVltVaultDistributionInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Org_Apache_Sling_Distribution_Serialization_Impl_Vlt_Vault_Distribution; -- overriding procedure Org_Apache_Sling_Distribution_Transport_Impl_User_Credentials_Distributi (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Name : in Swagger.Nullable_UString; Username : in Swagger.Nullable_UString; Password : in Swagger.Nullable_UString; Result : out .Models.OrgApacheSlingDistributionTransportImplUserCredentialsDistributiInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Org_Apache_Sling_Distribution_Transport_Impl_User_Credentials_Distributi; -- overriding procedure Org_Apache_Sling_Distribution_Trigger_Impl_Distribution_Event_Distribute (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Name : in Swagger.Nullable_UString; Path : in Swagger.Nullable_UString; Result : out .Models.OrgApacheSlingDistributionTriggerImplDistributionEventDistributeInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Org_Apache_Sling_Distribution_Trigger_Impl_Distribution_Event_Distribute; -- overriding procedure Org_Apache_Sling_Distribution_Trigger_Impl_Jcr_Event_Distribution_Trigger (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Name : in Swagger.Nullable_UString; Path : in Swagger.Nullable_UString; Ignored_Paths_Patterns : in Swagger.UString_Vectors.Vector; Service_Name : in Swagger.Nullable_UString; Deep : in Swagger.Nullable_Boolean; Result : out .Models.OrgApacheSlingDistributionTriggerImplJcrEventDistributionTriggerInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Org_Apache_Sling_Distribution_Trigger_Impl_Jcr_Event_Distribution_Trigger; -- overriding procedure Org_Apache_Sling_Distribution_Trigger_Impl_Persisted_Jcr_Event_Distributi (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Name : in Swagger.Nullable_UString; Path : in Swagger.Nullable_UString; Service_Name : in Swagger.Nullable_UString; Nuggets_Path : in Swagger.Nullable_UString; Result : out .Models.OrgApacheSlingDistributionTriggerImplPersistedJcrEventDistributiInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Org_Apache_Sling_Distribution_Trigger_Impl_Persisted_Jcr_Event_Distributi; -- overriding procedure Org_Apache_Sling_Distribution_Trigger_Impl_Remote_Event_Distribution_Trig (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Name : in Swagger.Nullable_UString; Endpoint : in Swagger.Nullable_UString; Transport_Secret_Provider_Periodtarget : in Swagger.Nullable_UString; Result : out .Models.OrgApacheSlingDistributionTriggerImplRemoteEventDistributionTrigInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Org_Apache_Sling_Distribution_Trigger_Impl_Remote_Event_Distribution_Trig; -- overriding procedure Org_Apache_Sling_Distribution_Trigger_Impl_Resource_Event_Distribution_Tr (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Name : in Swagger.Nullable_UString; Path : in Swagger.Nullable_UString; Result : out .Models.OrgApacheSlingDistributionTriggerImplResourceEventDistributionTrInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Org_Apache_Sling_Distribution_Trigger_Impl_Resource_Event_Distribution_Tr; -- overriding procedure Org_Apache_Sling_Distribution_Trigger_Impl_Scheduled_Distribution_Trigge (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Name : in Swagger.Nullable_UString; Path : in Swagger.Nullable_UString; Seconds : in Swagger.Nullable_UString; Service_Name : in Swagger.Nullable_UString; Result : out .Models.OrgApacheSlingDistributionTriggerImplScheduledDistributionTriggeInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Org_Apache_Sling_Distribution_Trigger_Impl_Scheduled_Distribution_Trigge; -- overriding procedure Org_Apache_Sling_Engine_Impl_Auth_Sling_Authenticator (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Osgi_Periodhttp_Periodwhiteboard_Periodcontext_Periodselect : in Swagger.Nullable_UString; Osgi_Periodhttp_Periodwhiteboard_Periodlistener : in Swagger.Nullable_UString; Auth_Periodsudo_Periodcookie : in Swagger.Nullable_UString; Auth_Periodsudo_Periodparameter : in Swagger.Nullable_UString; Auth_Periodannonymous : in Swagger.Nullable_Boolean; Sling_Periodauth_Periodrequirements : in Swagger.UString_Vectors.Vector; Sling_Periodauth_Periodanonymous_Perioduser : in Swagger.Nullable_UString; Sling_Periodauth_Periodanonymous_Periodpassword : in Swagger.Nullable_UString; Auth_Periodhttp : in Swagger.Nullable_UString; Auth_Periodhttp_Periodrealm : in Swagger.Nullable_UString; Auth_Perioduri_Periodsuffix : in Swagger.UString_Vectors.Vector; Result : out .Models.OrgApacheSlingEngineImplAuthSlingAuthenticatorInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Org_Apache_Sling_Engine_Impl_Auth_Sling_Authenticator; -- overriding procedure Org_Apache_Sling_Engine_Impl_Debug_Request_Progress_Tracker_Log_Filter (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Extensions : in Swagger.UString_Vectors.Vector; Min_Duration_Ms : in Swagger.Nullable_Integer; Max_Duration_Ms : in Swagger.Nullable_Integer; Compact_Log_Format : in Swagger.Nullable_Boolean; Result : out .Models.OrgApacheSlingEngineImplDebugRequestProgressTrackerLogFilterInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Org_Apache_Sling_Engine_Impl_Debug_Request_Progress_Tracker_Log_Filter; -- overriding procedure Org_Apache_Sling_Engine_Impl_Log_Request_Logger (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Request_Periodlog_Periodoutput : in Swagger.Nullable_UString; Request_Periodlog_Periodoutputtype : in Swagger.Nullable_Integer; Request_Periodlog_Periodenabled : in Swagger.Nullable_Boolean; Access_Periodlog_Periodoutput : in Swagger.Nullable_UString; Access_Periodlog_Periodoutputtype : in Swagger.Nullable_Integer; Access_Periodlog_Periodenabled : in Swagger.Nullable_Boolean; Result : out .Models.OrgApacheSlingEngineImplLogRequestLoggerInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Org_Apache_Sling_Engine_Impl_Log_Request_Logger; -- overriding procedure Org_Apache_Sling_Engine_Impl_Log_Request_Logger_Service (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Request_Periodlog_Periodservice_Periodformat : in Swagger.Nullable_UString; Request_Periodlog_Periodservice_Periodoutput : in Swagger.Nullable_UString; Request_Periodlog_Periodservice_Periodoutputtype : in Swagger.Nullable_Integer; Request_Periodlog_Periodservice_Periodonentry : in Swagger.Nullable_Boolean; Result : out .Models.OrgApacheSlingEngineImplLogRequestLoggerServiceInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Org_Apache_Sling_Engine_Impl_Log_Request_Logger_Service; -- overriding procedure Org_Apache_Sling_Engine_Impl_Sling_Main_Servlet (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Sling_Periodmax_Periodcalls : in Swagger.Nullable_Integer; Sling_Periodmax_Periodinclusions : in Swagger.Nullable_Integer; Sling_Periodtrace_Periodallow : in Swagger.Nullable_Boolean; Sling_Periodmax_Periodrecord_Periodrequests : in Swagger.Nullable_Integer; Sling_Periodstore_Periodpattern_Periodrequests : in Swagger.UString_Vectors.Vector; Sling_Periodserverinfo : in Swagger.Nullable_UString; Sling_Periodadditional_Periodresponse_Periodheaders : in Swagger.UString_Vectors.Vector; Result : out .Models.OrgApacheSlingEngineImplSlingMainServletInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Org_Apache_Sling_Engine_Impl_Sling_Main_Servlet; -- overriding procedure Org_Apache_Sling_Engine_Parameters (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Sling_Perioddefault_Periodparameter_Periodencoding : in Swagger.Nullable_UString; Sling_Perioddefault_Periodmax_Periodparameters : in Swagger.Nullable_Integer; File_Periodlocation : in Swagger.Nullable_UString; File_Periodthreshold : in Swagger.Nullable_Integer; File_Periodmax : in Swagger.Nullable_Integer; Request_Periodmax : in Swagger.Nullable_Integer; Sling_Perioddefault_Periodparameter_Periodcheck_For_Additional_Container_Parameters : in Swagger.Nullable_Boolean; Result : out .Models.OrgApacheSlingEngineParametersInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Org_Apache_Sling_Engine_Parameters; -- overriding procedure Org_Apache_Sling_Event_Impl_Eventing_Thread_Pool (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Min_Pool_Size : in Swagger.Nullable_Integer; Result : out .Models.OrgApacheSlingEventImplEventingThreadPoolInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Org_Apache_Sling_Event_Impl_Eventing_Thread_Pool; -- overriding procedure Org_Apache_Sling_Event_Impl_Jobs_Default_Job_Manager (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Queue_Periodpriority : in Swagger.Nullable_UString; Queue_Periodretries : in Swagger.Nullable_Integer; Queue_Periodretrydelay : in Swagger.Nullable_Integer; Queue_Periodmaxparallel : in Swagger.Nullable_Integer; Result : out .Models.OrgApacheSlingEventImplJobsDefaultJobManagerInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Org_Apache_Sling_Event_Impl_Jobs_Default_Job_Manager; -- overriding procedure Org_Apache_Sling_Event_Impl_Jobs_Jcr_Persistence_Handler (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Job_Periodconsumermanager_Perioddisable_Distribution : in Swagger.Nullable_Boolean; Startup_Perioddelay : in Swagger.Nullable_Integer; Cleanup_Periodperiod : in Swagger.Nullable_Integer; Result : out .Models.OrgApacheSlingEventImplJobsJcrPersistenceHandlerInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Org_Apache_Sling_Event_Impl_Jobs_Jcr_Persistence_Handler; -- overriding procedure Org_Apache_Sling_Event_Impl_Jobs_Job_Consumer_Manager (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Org_Periodapache_Periodsling_Periodinstaller_Periodconfiguration_Periodpersist : in Swagger.Nullable_Boolean; Job_Periodconsumermanager_Periodwhitelist : in Swagger.UString_Vectors.Vector; Job_Periodconsumermanager_Periodblacklist : in Swagger.UString_Vectors.Vector; Result : out .Models.OrgApacheSlingEventImplJobsJobConsumerManagerInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Org_Apache_Sling_Event_Impl_Jobs_Job_Consumer_Manager; -- overriding procedure Org_Apache_Sling_Event_Jobs_Queue_Configuration (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Queue_Periodname : in Swagger.Nullable_UString; Queue_Periodtopics : in Swagger.UString_Vectors.Vector; Queue_Periodtype : in Swagger.Nullable_UString; Queue_Periodpriority : in Swagger.Nullable_UString; Queue_Periodretries : in Swagger.Nullable_Integer; Queue_Periodretrydelay : in Swagger.Nullable_Integer; Queue_Periodmaxparallel : in Swagger.Number; Queue_Periodkeep_Jobs : in Swagger.Nullable_Boolean; Queue_Periodprefer_Run_On_Creation_Instance : in Swagger.Nullable_Boolean; Queue_Periodthread_Pool_Size : in Swagger.Nullable_Integer; Service_Periodranking : in Swagger.Nullable_Integer; Result : out .Models.OrgApacheSlingEventJobsQueueConfigurationInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Org_Apache_Sling_Event_Jobs_Queue_Configuration; -- overriding procedure Org_Apache_Sling_Extensions_Webconsolesecurityprovider_Internal_Sling_W (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Users : in Swagger.UString_Vectors.Vector; Groups : in Swagger.UString_Vectors.Vector; Result : out .Models.OrgApacheSlingExtensionsWebconsolesecurityproviderInternalSlingWInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Org_Apache_Sling_Extensions_Webconsolesecurityprovider_Internal_Sling_W; -- overriding procedure Org_Apache_Sling_Featureflags_Feature (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Name : in Swagger.Nullable_UString; Description : in Swagger.Nullable_UString; Enabled : in Swagger.Nullable_Boolean; Result : out .Models.OrgApacheSlingFeatureflagsFeatureInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Org_Apache_Sling_Featureflags_Feature; -- overriding procedure Org_Apache_Sling_Featureflags_Impl_Configured_Feature (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Name : in Swagger.Nullable_UString; Description : in Swagger.Nullable_UString; Enabled : in Swagger.Nullable_Boolean; Result : out .Models.OrgApacheSlingFeatureflagsImplConfiguredFeatureInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Org_Apache_Sling_Featureflags_Impl_Configured_Feature; -- overriding procedure Org_Apache_Sling_Hapi_Impl_H_Api_Util_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Org_Periodapache_Periodsling_Periodhapi_Periodtools_Periodresourcetype : in Swagger.Nullable_UString; Org_Periodapache_Periodsling_Periodhapi_Periodtools_Periodcollectionresourcetype : in Swagger.Nullable_UString; Org_Periodapache_Periodsling_Periodhapi_Periodtools_Periodsearchpaths : in Swagger.UString_Vectors.Vector; Org_Periodapache_Periodsling_Periodhapi_Periodtools_Periodexternalurl : in Swagger.Nullable_UString; Org_Periodapache_Periodsling_Periodhapi_Periodtools_Periodenabled : in Swagger.Nullable_Boolean; Result : out .Models.OrgApacheSlingHapiImplHApiUtilImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Org_Apache_Sling_Hapi_Impl_H_Api_Util_Impl; -- overriding procedure Org_Apache_Sling_Hc_Core_Impl_Composite_Health_Check (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Hc_Periodname : in Swagger.Nullable_UString; Hc_Periodtags : in Swagger.UString_Vectors.Vector; Hc_Periodmbean_Periodname : in Swagger.Nullable_UString; Filter_Periodtags : in Swagger.UString_Vectors.Vector; Filter_Periodcombine_Tags_With_Or : in Swagger.Nullable_Boolean; Result : out .Models.OrgApacheSlingHcCoreImplCompositeHealthCheckInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Org_Apache_Sling_Hc_Core_Impl_Composite_Health_Check; -- overriding procedure Org_Apache_Sling_Hc_Core_Impl_Executor_Health_Check_Executor_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Timeout_In_Ms : in Swagger.Nullable_Integer; Long_Running_Future_Threshold_For_Critical_Ms : in Swagger.Nullable_Integer; Result_Cache_Ttl_In_Ms : in Swagger.Nullable_Integer; Result : out .Models.OrgApacheSlingHcCoreImplExecutorHealthCheckExecutorImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Org_Apache_Sling_Hc_Core_Impl_Executor_Health_Check_Executor_Impl; -- overriding procedure Org_Apache_Sling_Hc_Core_Impl_Jmx_Attribute_Health_Check (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Hc_Periodname : in Swagger.Nullable_UString; Hc_Periodtags : in Swagger.UString_Vectors.Vector; Hc_Periodmbean_Periodname : in Swagger.Nullable_UString; Mbean_Periodname : in Swagger.Nullable_UString; Attribute_Periodname : in Swagger.Nullable_UString; Attribute_Periodvalue_Periodconstraint : in Swagger.Nullable_UString; Result : out .Models.OrgApacheSlingHcCoreImplJmxAttributeHealthCheckInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Org_Apache_Sling_Hc_Core_Impl_Jmx_Attribute_Health_Check; -- overriding procedure Org_Apache_Sling_Hc_Core_Impl_Scriptable_Health_Check (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Hc_Periodname : in Swagger.Nullable_UString; Hc_Periodtags : in Swagger.UString_Vectors.Vector; Hc_Periodmbean_Periodname : in Swagger.Nullable_UString; Expression : in Swagger.Nullable_UString; Language_Periodextension : in Swagger.Nullable_UString; Result : out .Models.OrgApacheSlingHcCoreImplScriptableHealthCheckInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Org_Apache_Sling_Hc_Core_Impl_Scriptable_Health_Check; -- overriding procedure Org_Apache_Sling_Hc_Core_Impl_Servlet_Health_Check_Executor_Servlet (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Servlet_Path : in Swagger.Nullable_UString; Disabled : in Swagger.Nullable_Boolean; Cors_Periodaccess_Control_Allow_Origin : in Swagger.Nullable_UString; Result : out .Models.OrgApacheSlingHcCoreImplServletHealthCheckExecutorServletInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Org_Apache_Sling_Hc_Core_Impl_Servlet_Health_Check_Executor_Servlet; -- overriding procedure Org_Apache_Sling_Hc_Core_Impl_Servlet_Result_Txt_Verbose_Serializer (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Total_Width : in Swagger.Nullable_Integer; Col_Width_Name : in Swagger.Nullable_Integer; Col_Width_Result : in Swagger.Nullable_Integer; Col_Width_Timing : in Swagger.Nullable_Integer; Result : out .Models.OrgApacheSlingHcCoreImplServletResultTxtVerboseSerializerInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Org_Apache_Sling_Hc_Core_Impl_Servlet_Result_Txt_Verbose_Serializer; -- overriding procedure Org_Apache_Sling_I18n_Impl_I18_N_Filter (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Service_Periodranking : in Swagger.Nullable_Integer; Sling_Periodfilter_Periodscope : in Swagger.UString_Vectors.Vector; Result : out .Models.OrgApacheSlingI18nImplI18NFilterInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Org_Apache_Sling_I18n_Impl_I18_N_Filter; -- overriding procedure Org_Apache_Sling_I18n_Impl_Jcr_Resource_Bundle_Provider (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Locale_Perioddefault : in Swagger.Nullable_UString; Preload_Periodbundles : in Swagger.Nullable_Boolean; Invalidation_Perioddelay : in Swagger.Nullable_Integer; Result : out .Models.OrgApacheSlingI18nImplJcrResourceBundleProviderInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Org_Apache_Sling_I18n_Impl_Jcr_Resource_Bundle_Provider; -- overriding procedure Org_Apache_Sling_Installer_Provider_Jcr_Impl_Jcr_Installer (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Handler_Periodschemes : in Swagger.UString_Vectors.Vector; Sling_Periodjcrinstall_Periodfolder_Periodname_Periodregexp : in Swagger.Nullable_UString; Sling_Periodjcrinstall_Periodfolder_Periodmax_Perioddepth : in Swagger.Nullable_Integer; Sling_Periodjcrinstall_Periodsearch_Periodpath : in Swagger.UString_Vectors.Vector; Sling_Periodjcrinstall_Periodnew_Periodconfig_Periodpath : in Swagger.Nullable_UString; Sling_Periodjcrinstall_Periodsignal_Periodpath : in Swagger.Nullable_UString; Sling_Periodjcrinstall_Periodenable_Periodwriteback : in Swagger.Nullable_Boolean; Result : out .Models.OrgApacheSlingInstallerProviderJcrImplJcrInstallerInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Org_Apache_Sling_Installer_Provider_Jcr_Impl_Jcr_Installer; -- overriding procedure Org_Apache_Sling_Jcr_Base_Internal_Login_Admin_Whitelist (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Whitelist_Periodbypass : in Swagger.Nullable_Boolean; Whitelist_Periodbundles_Periodregexp : in Swagger.Nullable_UString; Result : out .Models.OrgApacheSlingJcrBaseInternalLoginAdminWhitelistInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Org_Apache_Sling_Jcr_Base_Internal_Login_Admin_Whitelist; -- overriding procedure Org_Apache_Sling_Jcr_Base_Internal_Login_Admin_Whitelist_Fragment (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Whitelist_Periodname : in Swagger.Nullable_UString; Whitelist_Periodbundles : in Swagger.UString_Vectors.Vector; Result : out .Models.OrgApacheSlingJcrBaseInternalLoginAdminWhitelistFragmentInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Org_Apache_Sling_Jcr_Base_Internal_Login_Admin_Whitelist_Fragment; -- overriding procedure Org_Apache_Sling_Jcr_Davex_Impl_Servlets_Sling_Dav_Ex_Servlet (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Alias : in Swagger.Nullable_UString; Dav_Periodcreate_Absolute_Uri : in Swagger.Nullable_Boolean; Dav_Periodprotectedhandlers : in Swagger.Nullable_UString; Result : out .Models.OrgApacheSlingJcrDavexImplServletsSlingDavExServletInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Org_Apache_Sling_Jcr_Davex_Impl_Servlets_Sling_Dav_Ex_Servlet; -- overriding procedure Org_Apache_Sling_Jcr_Jackrabbit_Server_Jndi_Registration_Support (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Java_Periodnaming_Periodfactory_Periodinitial : in Swagger.Nullable_UString; Java_Periodnaming_Periodprovider_Periodurl : in Swagger.Nullable_UString; Result : out .Models.OrgApacheSlingJcrJackrabbitServerJndiRegistrationSupportInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Org_Apache_Sling_Jcr_Jackrabbit_Server_Jndi_Registration_Support; -- overriding procedure Org_Apache_Sling_Jcr_Jackrabbit_Server_Rmi_Registration_Support (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Port : in Swagger.Nullable_Integer; Result : out .Models.OrgApacheSlingJcrJackrabbitServerRmiRegistrationSupportInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Org_Apache_Sling_Jcr_Jackrabbit_Server_Rmi_Registration_Support; -- overriding procedure Org_Apache_Sling_Jcr_Repoinit_Impl_Repository_Initializer (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; References : in Swagger.UString_Vectors.Vector; Result : out .Models.OrgApacheSlingJcrRepoinitImplRepositoryInitializerInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Org_Apache_Sling_Jcr_Repoinit_Impl_Repository_Initializer; -- overriding procedure Org_Apache_Sling_Jcr_Repoinit_Repository_Initializer (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; References : in Swagger.UString_Vectors.Vector; Scripts : in Swagger.UString_Vectors.Vector; Result : out .Models.OrgApacheSlingJcrRepoinitRepositoryInitializerInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Org_Apache_Sling_Jcr_Repoinit_Repository_Initializer; -- overriding procedure Org_Apache_Sling_Jcr_Resource_Internal_Jcr_Resource_Resolver_Factory_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Resource_Periodresolver_Periodsearchpath : in Swagger.UString_Vectors.Vector; Resource_Periodresolver_Periodmanglenamespaces : in Swagger.Nullable_Boolean; Resource_Periodresolver_Periodallow_Direct : in Swagger.Nullable_Boolean; Resource_Periodresolver_Periodrequired_Periodproviders : in Swagger.UString_Vectors.Vector; Resource_Periodresolver_Periodrequired_Periodprovidernames : in Swagger.UString_Vectors.Vector; Resource_Periodresolver_Periodvirtual : in Swagger.UString_Vectors.Vector; Resource_Periodresolver_Periodmapping : in Swagger.UString_Vectors.Vector; Resource_Periodresolver_Periodmap_Periodlocation : in Swagger.Nullable_UString; Resource_Periodresolver_Periodmap_Periodobservation : in Swagger.UString_Vectors.Vector; Resource_Periodresolver_Perioddefault_Periodvanity_Periodredirect_Periodstatus : in Swagger.Nullable_Integer; Resource_Periodresolver_Periodenable_Periodvanitypath : in Swagger.Nullable_Boolean; Resource_Periodresolver_Periodvanitypath_Periodmax_Entries : in Swagger.Nullable_Integer; Resource_Periodresolver_Periodvanitypath_Periodmax_Entries_Periodstartup : in Swagger.Nullable_Boolean; Resource_Periodresolver_Periodvanitypath_Periodbloomfilter_Periodmax_Bytes : in Swagger.Nullable_Integer; Resource_Periodresolver_Periodoptimize_Periodalias_Periodresolution : in Swagger.Nullable_Boolean; Resource_Periodresolver_Periodvanitypath_Periodwhitelist : in Swagger.UString_Vectors.Vector; Resource_Periodresolver_Periodvanitypath_Periodblacklist : in Swagger.UString_Vectors.Vector; Resource_Periodresolver_Periodvanity_Periodprecedence : in Swagger.Nullable_Boolean; Resource_Periodresolver_Periodproviderhandling_Periodparanoid : in Swagger.Nullable_Boolean; Resource_Periodresolver_Periodlog_Periodclosing : in Swagger.Nullable_Boolean; Resource_Periodresolver_Periodlog_Periodunclosed : in Swagger.Nullable_Boolean; Result : out .Models.OrgApacheSlingJcrResourceInternalJcrResourceResolverFactoryImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Org_Apache_Sling_Jcr_Resource_Internal_Jcr_Resource_Resolver_Factory_Impl; -- overriding procedure Org_Apache_Sling_Jcr_Resource_Internal_Jcr_System_User_Validator (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Allow_Periodonly_Periodsystem_Perioduser : in Swagger.Nullable_Boolean; Result : out .Models.OrgApacheSlingJcrResourceInternalJcrSystemUserValidatorInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Org_Apache_Sling_Jcr_Resource_Internal_Jcr_System_User_Validator; -- overriding procedure Org_Apache_Sling_Jcr_Resourcesecurity_Impl_Resource_Access_Gate_Factory (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Path : in Swagger.Nullable_UString; Checkpath_Periodprefix : in Swagger.Nullable_UString; Jcr_Path : in Swagger.Nullable_UString; Result : out .Models.OrgApacheSlingJcrResourcesecurityImplResourceAccessGateFactoryInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Org_Apache_Sling_Jcr_Resourcesecurity_Impl_Resource_Access_Gate_Factory; -- overriding procedure Org_Apache_Sling_Jcr_Webdav_Impl_Handler_Default_Handler_Service (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Service_Periodranking : in Swagger.Nullable_Integer; Type_Periodcollections : in Swagger.Nullable_UString; Type_Periodnoncollections : in Swagger.Nullable_UString; Type_Periodcontent : in Swagger.Nullable_UString; Result : out .Models.OrgApacheSlingJcrWebdavImplHandlerDefaultHandlerServiceInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Org_Apache_Sling_Jcr_Webdav_Impl_Handler_Default_Handler_Service; -- overriding procedure Org_Apache_Sling_Jcr_Webdav_Impl_Handler_Dir_Listing_Export_Handler_Servic (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Service_Periodranking : in Swagger.Nullable_Integer; Result : out .Models.OrgApacheSlingJcrWebdavImplHandlerDirListingExportHandlerServicInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Org_Apache_Sling_Jcr_Webdav_Impl_Handler_Dir_Listing_Export_Handler_Servic; -- overriding procedure Org_Apache_Sling_Jcr_Webdav_Impl_Servlets_Simple_Web_Dav_Servlet (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Dav_Periodroot : in Swagger.Nullable_UString; Dav_Periodcreate_Absolute_Uri : in Swagger.Nullable_Boolean; Dav_Periodrealm : in Swagger.Nullable_UString; Collection_Periodtypes : in Swagger.UString_Vectors.Vector; Filter_Periodprefixes : in Swagger.UString_Vectors.Vector; Filter_Periodtypes : in Swagger.Nullable_UString; Filter_Perioduris : in Swagger.Nullable_UString; Type_Periodcollections : in Swagger.Nullable_UString; Type_Periodnoncollections : in Swagger.Nullable_UString; Type_Periodcontent : in Swagger.Nullable_UString; Result : out .Models.OrgApacheSlingJcrWebdavImplServletsSimpleWebDavServletInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Org_Apache_Sling_Jcr_Webdav_Impl_Servlets_Simple_Web_Dav_Servlet; -- overriding procedure Org_Apache_Sling_Jmx_Provider_Impl_J_M_X_Resource_Provider (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Provider_Periodroots : in Swagger.Nullable_UString; Result : out .Models.OrgApacheSlingJmxProviderImplJMXResourceProviderInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Org_Apache_Sling_Jmx_Provider_Impl_J_M_X_Resource_Provider; -- overriding procedure Org_Apache_Sling_Models_Impl_Model_Adapter_Factory (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Osgi_Periodhttp_Periodwhiteboard_Periodlistener : in Swagger.Nullable_UString; Osgi_Periodhttp_Periodwhiteboard_Periodcontext_Periodselect : in Swagger.Nullable_UString; Max_Periodrecursion_Perioddepth : in Swagger.Nullable_Integer; Cleanup_Periodjob_Periodperiod : in Swagger.Nullable_Integer; Result : out .Models.OrgApacheSlingModelsImplModelAdapterFactoryInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Org_Apache_Sling_Models_Impl_Model_Adapter_Factory; -- overriding procedure Org_Apache_Sling_Models_Jacksonexporter_Impl_Resource_Module_Provider (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Max_Periodrecursion_Periodlevels : in Swagger.Nullable_Integer; Result : out .Models.OrgApacheSlingModelsJacksonexporterImplResourceModuleProviderInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Org_Apache_Sling_Models_Jacksonexporter_Impl_Resource_Module_Provider; -- overriding procedure Org_Apache_Sling_Resource_Inventory_Impl_Resource_Inventory_Printer_Facto (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Felix_Periodinventory_Periodprinter_Periodname : in Swagger.Nullable_UString; Felix_Periodinventory_Periodprinter_Periodtitle : in Swagger.Nullable_UString; Path : in Swagger.Nullable_UString; Result : out .Models.OrgApacheSlingResourceInventoryImplResourceInventoryPrinterFactoInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Org_Apache_Sling_Resource_Inventory_Impl_Resource_Inventory_Printer_Facto; -- overriding procedure Org_Apache_Sling_Resourcemerger_Impl_Merged_Resource_Provider_Factory (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Merge_Periodroot : in Swagger.Nullable_UString; Merge_Periodread_Only : in Swagger.Nullable_Boolean; Result : out .Models.OrgApacheSlingResourcemergerImplMergedResourceProviderFactoryInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Org_Apache_Sling_Resourcemerger_Impl_Merged_Resource_Provider_Factory; -- overriding procedure Org_Apache_Sling_Resourcemerger_Picker_Overriding (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Merge_Periodroot : in Swagger.Nullable_UString; Merge_Periodread_Only : in Swagger.Nullable_Boolean; Result : out .Models.OrgApacheSlingResourcemergerPickerOverridingInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Org_Apache_Sling_Resourcemerger_Picker_Overriding; -- overriding procedure Org_Apache_Sling_Scripting_Core_Impl_Script_Cache_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Org_Periodapache_Periodsling_Periodscripting_Periodcache_Periodsize : in Swagger.Nullable_Integer; Org_Periodapache_Periodsling_Periodscripting_Periodcache_Periodadditional_Extensions : in Swagger.UString_Vectors.Vector; Result : out .Models.OrgApacheSlingScriptingCoreImplScriptCacheImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Org_Apache_Sling_Scripting_Core_Impl_Script_Cache_Impl; -- overriding procedure Org_Apache_Sling_Scripting_Core_Impl_Scripting_Resource_Resolver_Provider (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Log_Periodstacktrace_Periodonclose : in Swagger.Nullable_Boolean; Result : out .Models.OrgApacheSlingScriptingCoreImplScriptingResourceResolverProviderInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Org_Apache_Sling_Scripting_Core_Impl_Scripting_Resource_Resolver_Provider; -- overriding procedure Org_Apache_Sling_Scripting_Java_Impl_Java_Script_Engine_Factory (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Java_Periodclassdebuginfo : in Swagger.Nullable_Boolean; Java_Periodjava_Encoding : in Swagger.Nullable_UString; Java_Periodcompiler_Source_V_M : in Swagger.Nullable_UString; Java_Periodcompiler_Target_V_M : in Swagger.Nullable_UString; Result : out .Models.OrgApacheSlingScriptingJavaImplJavaScriptEngineFactoryInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Org_Apache_Sling_Scripting_Java_Impl_Java_Script_Engine_Factory; -- overriding procedure Org_Apache_Sling_Scripting_Javascript_Internal_Rhino_Java_Script_Engine_Fa (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Org_Periodapache_Periodsling_Periodscripting_Periodjavascript_Periodrhino_Periodopt_Level : in Swagger.Nullable_Integer; Result : out .Models.OrgApacheSlingScriptingJavascriptInternalRhinoJavaScriptEngineFaInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Org_Apache_Sling_Scripting_Javascript_Internal_Rhino_Java_Script_Engine_Fa; -- overriding procedure Org_Apache_Sling_Scripting_Jsp_Jsp_Script_Engine_Factory (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Jasper_Periodcompiler_Target_V_M : in Swagger.Nullable_UString; Jasper_Periodcompiler_Source_V_M : in Swagger.Nullable_UString; Jasper_Periodclassdebuginfo : in Swagger.Nullable_Boolean; Jasper_Periodenable_Pooling : in Swagger.Nullable_Boolean; Jasper_Periodie_Class_Id : in Swagger.Nullable_UString; Jasper_Periodgen_String_As_Char_Array : in Swagger.Nullable_Boolean; Jasper_Periodkeepgenerated : in Swagger.Nullable_Boolean; Jasper_Periodmappedfile : in Swagger.Nullable_Boolean; Jasper_Periodtrim_Spaces : in Swagger.Nullable_Boolean; Jasper_Perioddisplay_Source_Fragments : in Swagger.Nullable_Boolean; Default_Periodis_Periodsession : in Swagger.Nullable_Boolean; Result : out .Models.OrgApacheSlingScriptingJspJspScriptEngineFactoryInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Org_Apache_Sling_Scripting_Jsp_Jsp_Script_Engine_Factory; -- overriding procedure Org_Apache_Sling_Scripting_Sightly_Js_Impl_Jsapi_Sly_Bindings_Values_Prov (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Org_Periodapache_Periodsling_Periodscripting_Periodsightly_Periodjs_Periodbindings : in Swagger.UString_Vectors.Vector; Result : out .Models.OrgApacheSlingScriptingSightlyJsImplJsapiSlyBindingsValuesProvInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Org_Apache_Sling_Scripting_Sightly_Js_Impl_Jsapi_Sly_Bindings_Values_Prov; -- overriding procedure Org_Apache_Sling_Security_Impl_Content_Disposition_Filter (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Sling_Periodcontent_Perioddisposition_Periodpaths : in Swagger.UString_Vectors.Vector; Sling_Periodcontent_Perioddisposition_Periodexcluded_Periodpaths : in Swagger.UString_Vectors.Vector; Sling_Periodcontent_Perioddisposition_Periodall_Periodpaths : in Swagger.Nullable_Boolean; Result : out .Models.OrgApacheSlingSecurityImplContentDispositionFilterInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Org_Apache_Sling_Security_Impl_Content_Disposition_Filter; -- overriding procedure Org_Apache_Sling_Security_Impl_Referrer_Filter (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Allow_Periodempty : in Swagger.Nullable_Boolean; Allow_Periodhosts : in Swagger.UString_Vectors.Vector; Allow_Periodhosts_Periodregexp : in Swagger.UString_Vectors.Vector; Filter_Periodmethods : in Swagger.UString_Vectors.Vector; Exclude_Periodagents_Periodregexp : in Swagger.UString_Vectors.Vector; Result : out .Models.OrgApacheSlingSecurityImplReferrerFilterInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Org_Apache_Sling_Security_Impl_Referrer_Filter; -- overriding procedure Org_Apache_Sling_Serviceusermapping_Impl_Service_User_Mapper_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; User_Periodmapping : in Swagger.UString_Vectors.Vector; User_Perioddefault : in Swagger.Nullable_UString; User_Periodenable_Perioddefault_Periodmapping : in Swagger.Nullable_Boolean; Require_Periodvalidation : in Swagger.Nullable_Boolean; Result : out .Models.OrgApacheSlingServiceusermappingImplServiceUserMapperImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Org_Apache_Sling_Serviceusermapping_Impl_Service_User_Mapper_Impl; -- overriding procedure Org_Apache_Sling_Serviceusermapping_Impl_Service_User_Mapper_Impl_Amended (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Service_Periodranking : in Swagger.Nullable_Integer; User_Periodmapping : in Swagger.UString_Vectors.Vector; Result : out .Models.OrgApacheSlingServiceusermappingImplServiceUserMapperImplAmendedInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Org_Apache_Sling_Serviceusermapping_Impl_Service_User_Mapper_Impl_Amended; -- overriding procedure Org_Apache_Sling_Servlets_Get_Default_Get_Servlet (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Aliases : in Swagger.UString_Vectors.Vector; Index : in Swagger.Nullable_Boolean; Index_Periodfiles : in Swagger.UString_Vectors.Vector; Enable_Periodhtml : in Swagger.Nullable_Boolean; Enable_Periodjson : in Swagger.Nullable_Boolean; Enable_Periodtxt : in Swagger.Nullable_Boolean; Enable_Periodxml : in Swagger.Nullable_Boolean; Json_Periodmaximumresults : in Swagger.Nullable_Integer; Ecma_Suport : in Swagger.Nullable_Boolean; Result : out .Models.OrgApacheSlingServletsGetDefaultGetServletInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Org_Apache_Sling_Servlets_Get_Default_Get_Servlet; -- overriding procedure Org_Apache_Sling_Servlets_Get_Impl_Version_Version_Info_Servlet (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Sling_Periodservlet_Periodselectors : in Swagger.UString_Vectors.Vector; Ecma_Suport : in Swagger.Nullable_Boolean; Result : out .Models.OrgApacheSlingServletsGetImplVersionVersionInfoServletInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Org_Apache_Sling_Servlets_Get_Impl_Version_Version_Info_Servlet; -- overriding procedure Org_Apache_Sling_Servlets_Post_Impl_Helper_Chunk_Clean_Up_Task (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Scheduler_Periodexpression : in Swagger.Nullable_UString; Scheduler_Periodconcurrent : in Swagger.Nullable_Boolean; Chunk_Periodcleanup_Periodage : in Swagger.Nullable_Integer; Result : out .Models.OrgApacheSlingServletsPostImplHelperChunkCleanUpTaskInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Org_Apache_Sling_Servlets_Post_Impl_Helper_Chunk_Clean_Up_Task; -- overriding procedure Org_Apache_Sling_Servlets_Post_Impl_Sling_Post_Servlet (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Servlet_Periodpost_Perioddate_Formats : in Swagger.UString_Vectors.Vector; Servlet_Periodpost_Periodnode_Name_Hints : in Swagger.UString_Vectors.Vector; Servlet_Periodpost_Periodnode_Name_Max_Length : in Swagger.Nullable_Integer; Servlet_Periodpost_Periodcheckin_New_Versionable_Nodes : in Swagger.Nullable_Boolean; Servlet_Periodpost_Periodauto_Checkout : in Swagger.Nullable_Boolean; Servlet_Periodpost_Periodauto_Checkin : in Swagger.Nullable_Boolean; Servlet_Periodpost_Periodignore_Pattern : in Swagger.Nullable_UString; Result : out .Models.OrgApacheSlingServletsPostImplSlingPostServletInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Org_Apache_Sling_Servlets_Post_Impl_Sling_Post_Servlet; -- overriding procedure Org_Apache_Sling_Servlets_Resolver_Sling_Servlet_Resolver (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Servletresolver_Periodservlet_Root : in Swagger.Nullable_UString; Servletresolver_Periodcache_Size : in Swagger.Nullable_Integer; Servletresolver_Periodpaths : in Swagger.UString_Vectors.Vector; Servletresolver_Perioddefault_Extensions : in Swagger.UString_Vectors.Vector; Result : out .Models.OrgApacheSlingServletsResolverSlingServletResolverInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Org_Apache_Sling_Servlets_Resolver_Sling_Servlet_Resolver; -- overriding procedure Org_Apache_Sling_Settings_Impl_Sling_Settings_Service_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Sling_Periodname : in Swagger.Nullable_UString; Sling_Perioddescription : in Swagger.Nullable_UString; Result : out .Models.OrgApacheSlingSettingsImplSlingSettingsServiceImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Org_Apache_Sling_Settings_Impl_Sling_Settings_Service_Impl; -- overriding procedure Org_Apache_Sling_Startupfilter_Impl_Startup_Filter_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Active_Periodby_Perioddefault : in Swagger.Nullable_Boolean; Default_Periodmessage : in Swagger.Nullable_UString; Result : out .Models.OrgApacheSlingStartupfilterImplStartupFilterImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Org_Apache_Sling_Startupfilter_Impl_Startup_Filter_Impl; -- overriding procedure Org_Apache_Sling_Tenant_Internal_Tenant_Provider_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Tenant_Periodroot : in Swagger.Nullable_UString; Tenant_Periodpath_Periodmatcher : in Swagger.UString_Vectors.Vector; Result : out .Models.OrgApacheSlingTenantInternalTenantProviderImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Org_Apache_Sling_Tenant_Internal_Tenant_Provider_Impl; -- overriding procedure Org_Apache_Sling_Tracer_Internal_Log_Tracer (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Tracer_Sets : in Swagger.UString_Vectors.Vector; Enabled : in Swagger.Nullable_Boolean; Servlet_Enabled : in Swagger.Nullable_Boolean; Recording_Cache_Size_In_M_B : in Swagger.Nullable_Integer; Recording_Cache_Duration_In_Secs : in Swagger.Nullable_Integer; Recording_Compression_Enabled : in Swagger.Nullable_Boolean; Gzip_Response : in Swagger.Nullable_Boolean; Result : out .Models.OrgApacheSlingTracerInternalLogTracerInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Org_Apache_Sling_Tracer_Internal_Log_Tracer; -- overriding procedure Org_Apache_Sling_Xss_Impl_X_S_S_Filter_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Policy_Path : in Swagger.Nullable_UString; Result : out .Models.OrgApacheSlingXssImplXSSFilterImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Org_Apache_Sling_Xss_Impl_X_S_S_Filter_Impl; end .Servers;
tum-ei-rcs/StratoX
Ada
52
ads
package HAL is pragma Preelaborate; end HAL;
skordal/cupcake
Ada
1,355
adb
-- The Cupcake GUI Toolkit -- (c) Kristian Klomsten Skordal 2012 <[email protected]> -- Report bugs and issues on <http://github.com/skordal/cupcake/issues> -- vim:ts=3:sw=3:et:si:sta with Ada.Text_IO; with Cupcake.Backends; with Cupcake.Backends.Cairo; package body Cupcake is package Text_IO renames Ada.Text_IO; -- Initializes Cupcake: procedure Initialize is Backend : constant Backends.Backend_Access := new Backends.Cairo.Cairo_Backend; begin if Cupcake.Debug_Mode then Text_IO.Put_Line ("[Cupcake.Initialize] Initializing Cupcake-TK..."); end if; Backends.Set_Backend (Backend); Backends.Get_Backend.Initialize; if Cupcake.Debug_Mode then Text_IO.Put_Line ("[Cupcake.Initialize] Using backend: " & Backends.Get_Backend.Get_Name); end if; end Initialize; -- Finalizes Cupcake: procedure Finalize is begin if Cupcake.Debug_Mode then Text_IO.Put_Line ("[Cupcake.Finalize] Finalizing..."); end if; end Finalize; -- Enters the main loop: procedure Enter_Main_Loop is begin Backends.Get_Backend.Enter_Main_Loop; end Enter_Main_Loop; -- Exits the main loop: procedure Exit_Main_Loop is begin Backends.Get_Backend.Exit_Main_Loop; end Exit_Main_Loop; end Cupcake;
melwyncarlo/ProjectEuler
Ada
758
adb
with Ada.Strings.Fixed; with Ada.Integer_Text_IO; -- Copyright 2021 Melwyn Francis Carlo procedure A030 is use Ada.Strings.Fixed; use Ada.Integer_Text_IO; Sum : Integer := 0; Sum_Of_Powers : Integer := 0; Num_len : Integer; begin for I in 2 .. 1_000_000 loop Sum_Of_Powers := 0; Num_len := Trim (Integer'Image (I), Ada.Strings.Both)'Length; for J in 1 .. Num_len loop Sum_Of_Powers := Sum_Of_Powers + ((Character'Pos (Trim (Integer'Image (I), Ada.Strings.Both) (J)) - Character'Pos ('0')) ** 5); end loop; if Sum_Of_Powers = I then Sum := Sum + I; end if; end loop; Put (Sum, Width => 0); end A030;
ekoeppen/STM32_Generic_Ada_Drivers
Ada
352
ads
with STM32GD.Clock; with STM32GD.Clock.Tree; generic Input : Clock_Type; with package Clock_Tree is new STM32GD.Clock.Tree (<>); package STM32GD.Clock.Timer is pragma Preelaborate; procedure Init; procedure Delay_us (us : Natural); procedure Delay_ms (ms : Natural); procedure Delay_s (s : Natural); end STM32GD.Clock.Timer;
stcarrez/ada-awa
Ada
3,665
ads
----------------------------------------------------------------------- -- users-tests-helpers -- Helpers for user creation -- Copyright (C) 2011, 2012, 2013, 2014, 2017, 2020, 2022 Stephane Carrez -- Written by Stephane Carrez ([email protected]) -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License. -- You may obtain a copy of the License at -- -- http://www.apache.org/licenses/LICENSE-2.0 -- -- Unless required by applicable law or agreed to in writing, software -- distributed under the License is distributed on an "AS IS" BASIS, -- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -- See the License for the specific language governing permissions and -- limitations under the License. ----------------------------------------------------------------------- with Ada.Finalization; with Security.Contexts; with ASF.Requests.Mockup; with AWA.Users.Models; with AWA.Users.Services; with AWA.Services.Contexts; with AWA.Users.Principals; package AWA.Tests.Helpers.Users is type Test_User is new Ada.Finalization.Limited_Controlled with record Context : AWA.Services.Contexts.Service_Context; Manager : AWA.Users.Services.User_Service_Access := null; User : AWA.Users.Models.User_Ref; Email : AWA.Users.Models.Email_Ref; Session : AWA.Users.Models.Session_Ref; Principal : AWA.Users.Principals.Principal_Access; end record; -- Initialize the service context. overriding procedure Initialize (Principal : in out Test_User); -- Create a test user associated with the given email address. -- Get an open session for that user. If the user already exists, no error is reported. procedure Create_User (Principal : in out Test_User; Email : in String); -- Create a test user for a new test and get an open session. procedure Create_User (Principal : in out Test_User); -- Find the access key associated with a user (if any). procedure Find_Access_Key (Principal : in out Test_User; Email : in String; Key : in out AWA.Users.Models.Access_Key_Ref); -- Login a user and create a session procedure Login (Principal : in out Test_User); -- Logout the user and closes the current session. procedure Logout (Principal : in out Test_User); -- Simulate a user login in the given service context. procedure Login (Context : in out AWA.Services.Contexts.Service_Context'Class; Sec_Context : in out Security.Contexts.Security_Context; Email : in String); -- Simulate a user login on the request. Upon successful login, a session that is -- authentified is associated with the request object. procedure Login (Email : in String; Request : in out ASF.Requests.Mockup.Request'Class); -- Setup the context and security context to simulate an anonymous user. procedure Anonymous (Context : in out AWA.Services.Contexts.Service_Context'Class; Sec_Context : in out Security.Contexts.Security_Context); -- Simulate the recovery password process for the given user. procedure Recover_Password (Email : in String); overriding procedure Finalize (Principal : in out Test_User); -- Cleanup and release the Principal that have been allocated from the Login session -- but not released because the Logout is not called from the unit test. procedure Tear_Down; end AWA.Tests.Helpers.Users;
AdaCore/Ada_Drivers_Library
Ada
7,357
ads
------------------------------------------------------------------------------ -- -- -- Copyright (C) 2015, AdaCore -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions are -- -- met: -- -- 1. Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- 2. Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in -- -- the documentation and/or other materials provided with the -- -- distribution. -- -- 3. Neither the name of STMicroelectronics nor the names of its -- -- contributors may be used to endorse or promote products derived -- -- from this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -- -- LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -- -- DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -- -- THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -- -- (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -- -- OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- -- This file is based on: -- -- -- -- @file ili9341.h -- -- @author MCD Application Team -- -- @version V1.0.2 -- -- @date 02-December-2014 -- -- @brief This file includes the LCD driver for ILI9341 LCD. -- -- -- -- COPYRIGHT(c) 2014 STMicroelectronics -- ------------------------------------------------------------------------------ -- This file provides the component driver for the ILI9341 LCD on the -- STM32F429 Discovery boards, among others. Support does not include the -- TFT hardware. -- See the "a-Si TFT LCD Single Chip Driver" specification by ILITEK, file -- name "ILI9341_DS_V1.02" for details. with HAL; use HAL; with HAL.SPI; use HAL.SPI; with HAL.GPIO; use HAL.GPIO; with HAL.Time; package ILI9341 is type ILI9341_Device (Port : not null access SPI_Port'Class; Chip_Select : not null Any_GPIO_Point; WRX : not null Any_GPIO_Point; Reset : not null Any_GPIO_Point; Time : not null HAL.Time.Any_Delays) is tagged limited private; type ILI9341_Mode is (RGB_Mode, SPI_Mode); procedure Initialize (This : in out ILI9341_Device; Mode : ILI9341_Mode); -- Initializes the device. Afterward, the device is also enabled so there -- is no immediate need to call Enable_Display. procedure Send_Command (This : in out ILI9341_Device; Cmd : UInt8); procedure Send_Data (This : in out ILI9341_Device; Data : UInt8); Device_Width : constant := 240; Device_Height : constant := 320; -- The operational upper bounds for width and height depend on the selected -- orientation so these subtypes cannot specify an upper bound using the -- device max height/width. In particular, if the orientation is rotated, -- the width becomes the height, and vice versa. Hence these are mainly for -- readability. subtype Width is Natural; subtype Height is Natural; type Colors is (Black, Blue, Light_Blue, Green, Cyan, Gray, Magenta, Light_Green, Brown, Red, Orange, Yellow, White); for Colors use (Black => 16#0000#, Blue => 16#001F#, Light_Blue => 16#051D#, Green => 16#07E0#, Cyan => 16#07FF#, Gray => 16#7BEF#, Magenta => 16#A254#, Light_Green => 16#B723#, Brown => 16#BBCA#, Red => 16#F800#, Orange => 16#FBE4#, Yellow => 16#FFE0#, White => 16#FFFF#); procedure Set_Pixel (This : in out ILI9341_Device; X : Width; Y : Height; Color : Colors) with Inline; procedure Fill (This : in out ILI9341_Device; Color : Colors); -- Descriptions assume the USB power/debug connector at the top type Orientations is (Portrait_1, -- origin at lower right, text going right to left Portrait_2, -- origin at upper left, text going left to right Landscape_1, -- origin at lower left, text going up Landscape_2); -- origin at upper right, text going down procedure Set_Orientation (This : in out ILI9341_Device; To : Orientations); procedure Enable_Display (This : in out ILI9341_Device); procedure Disable_Display (This : in out ILI9341_Device); -- These values reflect the currently selected orientation function Current_Width (This : ILI9341_Device) return Natural with Inline; function Current_Height (This : ILI9341_Device) return Natural with Inline; function Current_Orientation (This : ILI9341_Device) return Orientations; private type ILI9341_Device (Port : not null access SPI_Port'Class; Chip_Select : not null Any_GPIO_Point; WRX : not null Any_GPIO_Point; Reset : not null Any_GPIO_Point; Time : not null HAL.Time.Any_Delays) is tagged limited record Selected_Orientation : Orientations; -- The following objects' upper bounds vary with the selected -- orientation. Selected_Width : Natural; Selected_Height : Natural; Initialized : Boolean := False; end record; procedure Set_Cursor_Position (This : in out ILI9341_Device; X1 : Width; Y1 : Height; X2 : Width; Y2 : Height) with Inline; procedure Chip_Select_High (This : in out ILI9341_Device) with Inline; procedure Chip_Select_Low (This : in out ILI9341_Device) with Inline; procedure Init_LCD (This : in out ILI9341_Device; Mode : ILI9341_Mode); end ILI9341;
reznikmm/matreshka
Ada
4,899
ads
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Ada Modeling Framework -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2011-2012, Vadim Godunko <[email protected]> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ -- This file is generated, don't edit it. ------------------------------------------------------------------------------ with AMF.Generic_Collections; package AMF.CMOF.Packages.Collections is pragma Preelaborate; package CMOF_Package_Collections is new AMF.Generic_Collections (CMOF_Package, CMOF_Package_Access); type Set_Of_CMOF_Package is new CMOF_Package_Collections.Set with null record; Empty_Set_Of_CMOF_Package : constant Set_Of_CMOF_Package; type Ordered_Set_Of_CMOF_Package is new CMOF_Package_Collections.Ordered_Set with null record; Empty_Ordered_Set_Of_CMOF_Package : constant Ordered_Set_Of_CMOF_Package; type Bag_Of_CMOF_Package is new CMOF_Package_Collections.Bag with null record; Empty_Bag_Of_CMOF_Package : constant Bag_Of_CMOF_Package; type Sequence_Of_CMOF_Package is new CMOF_Package_Collections.Sequence with null record; Empty_Sequence_Of_CMOF_Package : constant Sequence_Of_CMOF_Package; private Empty_Set_Of_CMOF_Package : constant Set_Of_CMOF_Package := (CMOF_Package_Collections.Set with null record); Empty_Ordered_Set_Of_CMOF_Package : constant Ordered_Set_Of_CMOF_Package := (CMOF_Package_Collections.Ordered_Set with null record); Empty_Bag_Of_CMOF_Package : constant Bag_Of_CMOF_Package := (CMOF_Package_Collections.Bag with null record); Empty_Sequence_Of_CMOF_Package : constant Sequence_Of_CMOF_Package := (CMOF_Package_Collections.Sequence with null record); end AMF.CMOF.Packages.Collections;
wookey-project/ewok-legacy
Ada
4,064
adb
-- -- Copyright 2018 The wookey project team <[email protected]> -- - Ryad Benadjila -- - Arnauld Michelizza -- - Mathieu Renard -- - Philippe Thierry -- - Philippe Trebuchet -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License. -- You may obtain a copy of the License at -- -- http://www.apache.org/licenses/LICENSE-2.0 -- -- Unless required by applicable law or agreed to in writing, software -- distributed under the License is distributed on an "AS IS" BASIS, -- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -- See the License for the specific language governing permissions and -- limitations under the License. -- -- with ewok.tasks; use ewok.tasks; with ewok.sanitize; with ewok.perm; with ewok.debug; with types.c; use type types.c.t_retval; with c.kernel; package body ewok.syscalls.rng with spark_mode => off is pragma warnings (off); function to_integer is new ada.unchecked_conversion (unsigned_16, integer); pragma warnings (on); procedure sys_get_random (caller_id : in ewok.tasks_shared.t_task_id; params : in out t_parameters; mode : in ewok.tasks_shared.t_task_mode) is length : unsigned_16 with address => params(1)'address; buffer : types.c.c_string (1 .. to_integer(length)) with address => to_address (params(0)); begin -- Forbidden after end of task initialization if not is_init_done (caller_id) then goto ret_denied; end if; -- Does buffer'address is in the caller address space ? if not ewok.sanitize.is_range_in_data_slot (to_system_address (buffer'address), types.to_unsigned_32(length), caller_id, mode) then pragma DEBUG (debug.log (debug.ERROR, ewok.tasks.tasks_list(caller_id).name & ": sys_get_random(): 'value' parameter not in caller space")); goto ret_inval; end if; -- Size is arbitrary limited to 16 bytes to avoid exhausting the entropy pool -- FIXME - is that check really correct? if length > 16 then goto ret_inval; end if; -- Is the task allowed to use the RNG? if not ewok.perm.ressource_is_granted (ewok.perm.PERM_RES_TSK_RNG, caller_id) then pragma DEBUG (debug.log (debug.ERROR, ewok.tasks.tasks_list(caller_id).name & ": sys_get_random(): permission not granted")); goto ret_denied; end if; -- Calling the RNG which handle the potential random source errors (case -- of harware random sources such as TRNG IP) -- NOTE: there is some time when the generated random -- content may be weak for various reason due to arch-specific -- constraint. In this case, the return value is set to -- busy. Please check this return value when using this -- syscall to avoid using weak random content if c.kernel.get_random (buffer, length) /= types.c.SUCCESS then pragma DEBUG (debug.log (debug.ERROR, ewok.tasks.tasks_list(caller_id).name & ": sys_get_random(): weak seed")); goto ret_busy; end if; set_return_value (caller_id, mode, SYS_E_DONE); ewok.tasks.set_state (caller_id, mode, TASK_STATE_RUNNABLE); return; <<ret_inval>> set_return_value (caller_id, mode, SYS_E_INVAL); ewok.tasks.set_state (caller_id, mode, TASK_STATE_RUNNABLE); return; <<ret_busy>> set_return_value (caller_id, mode, SYS_E_BUSY); ewok.tasks.set_state (caller_id, mode, TASK_STATE_RUNNABLE); return; <<ret_denied>> set_return_value (caller_id, mode, SYS_E_DENIED); ewok.tasks.set_state (caller_id, mode, TASK_STATE_RUNNABLE); return; end sys_get_random; end ewok.syscalls.rng;
hgrodriguez/rp2040_zfp
Ada
39
ads
package Rp2040_Zfp is end Rp2040_Zfp;
burratoo/Acton
Ada
6,626
ads
------------------------------------------------------------------------------ -- -- -- GNAT COMPILER COMPONENTS -- -- -- -- I N T E R F A C E S -- -- -- -- S p e c -- -- -- -- Copyright (C) 2002-2013, Free Software Foundation, Inc. -- -- -- -- This specification is derived from the Ada Reference Manual for use with -- -- GNAT. The copyright notice above, and the license provisions that follow -- -- apply solely to the implementation dependent sections of this file. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. -- -- -- -- As a special exception under Section 7 of GPL version 3, you are granted -- -- additional permissions described in the GCC Runtime Library Exception, -- -- version 3.1, as published by the Free Software Foundation. -- -- -- -- You should have received a copy of the GNU General Public License and -- -- a copy of the GCC Runtime Library Exception along with this program; -- -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -- -- <http://www.gnu.org/licenses/>. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ package Interfaces is pragma Pure; -- All identifiers in this unit are implementation defined pragma Implementation_Defined; type Integer_8 is range -2 ** 7 .. 2 ** 7 - 1; for Integer_8'Size use 8; type Integer_16 is range -2 ** 15 .. 2 ** 15 - 1; for Integer_16'Size use 16; type Integer_32 is range -2 ** 31 .. 2 ** 31 - 1; for Integer_32'Size use 32; type Integer_64 is range -2 ** 63 .. 2 ** 63 - 1; for Integer_64'Size use 64; type Unsigned_8 is mod 2 ** 8; for Unsigned_8'Size use 8; type Unsigned_16 is mod 2 ** 16; for Unsigned_16'Size use 16; type Unsigned_32 is mod 2 ** 32; for Unsigned_32'Size use 32; type Unsigned_64 is mod 2 ** 64; for Unsigned_64'Size use 64; function Shift_Left (Value : Unsigned_8; Amount : Natural) return Unsigned_8; function Shift_Right (Value : Unsigned_8; Amount : Natural) return Unsigned_8; function Shift_Right_Arithmetic (Value : Unsigned_8; Amount : Natural) return Unsigned_8; function Rotate_Left (Value : Unsigned_8; Amount : Natural) return Unsigned_8; function Rotate_Right (Value : Unsigned_8; Amount : Natural) return Unsigned_8; function Shift_Left (Value : Unsigned_16; Amount : Natural) return Unsigned_16; function Shift_Right (Value : Unsigned_16; Amount : Natural) return Unsigned_16; function Shift_Right_Arithmetic (Value : Unsigned_16; Amount : Natural) return Unsigned_16; function Rotate_Left (Value : Unsigned_16; Amount : Natural) return Unsigned_16; function Rotate_Right (Value : Unsigned_16; Amount : Natural) return Unsigned_16; function Shift_Left (Value : Unsigned_32; Amount : Natural) return Unsigned_32; function Shift_Right (Value : Unsigned_32; Amount : Natural) return Unsigned_32; function Shift_Right_Arithmetic (Value : Unsigned_32; Amount : Natural) return Unsigned_32; function Rotate_Left (Value : Unsigned_32; Amount : Natural) return Unsigned_32; function Rotate_Right (Value : Unsigned_32; Amount : Natural) return Unsigned_32; function Shift_Left (Value : Unsigned_64; Amount : Natural) return Unsigned_64; function Shift_Right (Value : Unsigned_64; Amount : Natural) return Unsigned_64; function Shift_Right_Arithmetic (Value : Unsigned_64; Amount : Natural) return Unsigned_64; function Rotate_Left (Value : Unsigned_64; Amount : Natural) return Unsigned_64; function Rotate_Right (Value : Unsigned_64; Amount : Natural) return Unsigned_64; pragma Import (Intrinsic, Shift_Left); pragma Import (Intrinsic, Shift_Right); pragma Import (Intrinsic, Shift_Right_Arithmetic); pragma Import (Intrinsic, Rotate_Left); pragma Import (Intrinsic, Rotate_Right); -- IEEE Floating point types. Note that the form of these definitions -- ensures that the work on VMS, even if the standard library is compiled -- using a Float_Representation pragma for Vax_Float. pragma Warnings (Off); -- Turn off warnings for targets not providing IEEE floating-point types type IEEE_Float_32 is digits 6; pragma Float_Representation (IEEE_Float, IEEE_Float_32); for IEEE_Float_32'Size use 32; type IEEE_Float_64 is digits 15; pragma Float_Representation (IEEE_Float, IEEE_Float_64); for IEEE_Float_64'Size use 64; -- If there is an IEEE extended float available on the machine, we assume -- that it is available as Long_Long_Float. -- Note: it is harmless, and explicitly permitted, to include additional -- types in interfaces, so it is not wrong to have IEEE_Extended_Float -- defined even if the extended format is not available. type IEEE_Extended_Float is new Long_Long_Float; end Interfaces;
AdaCore/Ada_Drivers_Library
Ada
17,178
ads
-- This spec has been automatically generated from STM32F429x.svd pragma Restrictions (No_Elaboration_Code); pragma Ada_2012; pragma Style_Checks (Off); with HAL; with System; package STM32_SVD.DMA2D is pragma Preelaborate; --------------- -- Registers -- --------------- subtype CR_MODE_Field is HAL.UInt2; -- control register type CR_Register is record -- Start START : Boolean := False; -- Suspend SUSP : Boolean := False; -- Abort ABORT_k : Boolean := False; -- unspecified Reserved_3_7 : HAL.UInt5 := 16#0#; -- Transfer error interrupt enable TEIE : Boolean := False; -- Transfer complete interrupt enable TCIE : Boolean := False; -- Transfer watermark interrupt enable TWIE : Boolean := False; -- CLUT access error interrupt enable CAEIE : Boolean := False; -- CLUT transfer complete interrupt enable CTCIE : Boolean := False; -- Configuration Error Interrupt Enable CEIE : Boolean := False; -- unspecified Reserved_14_15 : HAL.UInt2 := 16#0#; -- DMA2D mode MODE : CR_MODE_Field := 16#0#; -- unspecified Reserved_18_31 : HAL.UInt14 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for CR_Register use record START at 0 range 0 .. 0; SUSP at 0 range 1 .. 1; ABORT_k at 0 range 2 .. 2; Reserved_3_7 at 0 range 3 .. 7; TEIE at 0 range 8 .. 8; TCIE at 0 range 9 .. 9; TWIE at 0 range 10 .. 10; CAEIE at 0 range 11 .. 11; CTCIE at 0 range 12 .. 12; CEIE at 0 range 13 .. 13; Reserved_14_15 at 0 range 14 .. 15; MODE at 0 range 16 .. 17; Reserved_18_31 at 0 range 18 .. 31; end record; -- Interrupt Status Register type ISR_Register is record -- Read-only. Transfer error interrupt flag TEIF : Boolean; -- Read-only. Transfer complete interrupt flag TCIF : Boolean; -- Read-only. Transfer watermark interrupt flag TWIF : Boolean; -- Read-only. CLUT access error interrupt flag CAEIF : Boolean; -- Read-only. CLUT transfer complete interrupt flag CTCIF : Boolean; -- Read-only. Configuration error interrupt flag CEIF : Boolean; -- unspecified Reserved_6_31 : HAL.UInt26; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for ISR_Register use record TEIF at 0 range 0 .. 0; TCIF at 0 range 1 .. 1; TWIF at 0 range 2 .. 2; CAEIF at 0 range 3 .. 3; CTCIF at 0 range 4 .. 4; CEIF at 0 range 5 .. 5; Reserved_6_31 at 0 range 6 .. 31; end record; -- interrupt flag clear register type IFCR_Register is record -- Clear Transfer error interrupt flag CTEIF : Boolean := False; -- Clear transfer complete interrupt flag CTCIF : Boolean := False; -- Clear transfer watermark interrupt flag CTWIF : Boolean := False; -- Clear CLUT access error interrupt flag CAECIF : Boolean := False; -- Clear CLUT transfer complete interrupt flag CCTCIF : Boolean := False; -- Clear configuration error interrupt flag CCEIF : Boolean := False; -- unspecified Reserved_6_31 : HAL.UInt26 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for IFCR_Register use record CTEIF at 0 range 0 .. 0; CTCIF at 0 range 1 .. 1; CTWIF at 0 range 2 .. 2; CAECIF at 0 range 3 .. 3; CCTCIF at 0 range 4 .. 4; CCEIF at 0 range 5 .. 5; Reserved_6_31 at 0 range 6 .. 31; end record; subtype FGOR_LO_Field is HAL.UInt14; -- foreground offset register type FGOR_Register is record -- Line offset LO : FGOR_LO_Field := 16#0#; -- unspecified Reserved_14_31 : HAL.UInt18 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for FGOR_Register use record LO at 0 range 0 .. 13; Reserved_14_31 at 0 range 14 .. 31; end record; subtype BGOR_LO_Field is HAL.UInt14; -- background offset register type BGOR_Register is record -- Line offset LO : BGOR_LO_Field := 16#0#; -- unspecified Reserved_14_31 : HAL.UInt18 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for BGOR_Register use record LO at 0 range 0 .. 13; Reserved_14_31 at 0 range 14 .. 31; end record; subtype FGPFCCR_CM_Field is HAL.UInt4; subtype FGPFCCR_CS_Field is HAL.UInt8; subtype FGPFCCR_AM_Field is HAL.UInt2; subtype FGPFCCR_ALPHA_Field is HAL.UInt8; -- foreground PFC control register type FGPFCCR_Register is record -- Color mode CM : FGPFCCR_CM_Field := 16#0#; -- CLUT color mode CCM : Boolean := False; -- Start START : Boolean := False; -- unspecified Reserved_6_7 : HAL.UInt2 := 16#0#; -- CLUT size CS : FGPFCCR_CS_Field := 16#0#; -- Alpha mode AM : FGPFCCR_AM_Field := 16#0#; -- unspecified Reserved_18_23 : HAL.UInt6 := 16#0#; -- Alpha value ALPHA : FGPFCCR_ALPHA_Field := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for FGPFCCR_Register use record CM at 0 range 0 .. 3; CCM at 0 range 4 .. 4; START at 0 range 5 .. 5; Reserved_6_7 at 0 range 6 .. 7; CS at 0 range 8 .. 15; AM at 0 range 16 .. 17; Reserved_18_23 at 0 range 18 .. 23; ALPHA at 0 range 24 .. 31; end record; subtype FGCOLR_BLUE_Field is HAL.UInt8; subtype FGCOLR_GREEN_Field is HAL.UInt8; subtype FGCOLR_RED_Field is HAL.UInt8; -- foreground color register type FGCOLR_Register is record -- Blue Value BLUE : FGCOLR_BLUE_Field := 16#0#; -- Green Value GREEN : FGCOLR_GREEN_Field := 16#0#; -- Red Value RED : FGCOLR_RED_Field := 16#0#; -- unspecified Reserved_24_31 : HAL.UInt8 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for FGCOLR_Register use record BLUE at 0 range 0 .. 7; GREEN at 0 range 8 .. 15; RED at 0 range 16 .. 23; Reserved_24_31 at 0 range 24 .. 31; end record; subtype BGPFCCR_CM_Field is HAL.UInt4; subtype BGPFCCR_CS_Field is HAL.UInt8; subtype BGPFCCR_AM_Field is HAL.UInt2; subtype BGPFCCR_ALPHA_Field is HAL.UInt8; -- background PFC control register type BGPFCCR_Register is record -- Color mode CM : BGPFCCR_CM_Field := 16#0#; -- CLUT Color mode CCM : Boolean := False; -- Start START : Boolean := False; -- unspecified Reserved_6_7 : HAL.UInt2 := 16#0#; -- CLUT size CS : BGPFCCR_CS_Field := 16#0#; -- Alpha mode AM : BGPFCCR_AM_Field := 16#0#; -- unspecified Reserved_18_23 : HAL.UInt6 := 16#0#; -- Alpha value ALPHA : BGPFCCR_ALPHA_Field := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for BGPFCCR_Register use record CM at 0 range 0 .. 3; CCM at 0 range 4 .. 4; START at 0 range 5 .. 5; Reserved_6_7 at 0 range 6 .. 7; CS at 0 range 8 .. 15; AM at 0 range 16 .. 17; Reserved_18_23 at 0 range 18 .. 23; ALPHA at 0 range 24 .. 31; end record; subtype BGCOLR_BLUE_Field is HAL.UInt8; subtype BGCOLR_GREEN_Field is HAL.UInt8; subtype BGCOLR_RED_Field is HAL.UInt8; -- background color register type BGCOLR_Register is record -- Blue Value BLUE : BGCOLR_BLUE_Field := 16#0#; -- Green Value GREEN : BGCOLR_GREEN_Field := 16#0#; -- Red Value RED : BGCOLR_RED_Field := 16#0#; -- unspecified Reserved_24_31 : HAL.UInt8 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for BGCOLR_Register use record BLUE at 0 range 0 .. 7; GREEN at 0 range 8 .. 15; RED at 0 range 16 .. 23; Reserved_24_31 at 0 range 24 .. 31; end record; subtype OPFCCR_CM_Field is HAL.UInt3; -- output PFC control register type OPFCCR_Register is record -- Color mode CM : OPFCCR_CM_Field := 16#0#; -- unspecified Reserved_3_31 : HAL.UInt29 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for OPFCCR_Register use record CM at 0 range 0 .. 2; Reserved_3_31 at 0 range 3 .. 31; end record; subtype OCOLR_BLUE_Field is HAL.UInt8; subtype OCOLR_GREEN_Field is HAL.UInt8; subtype OCOLR_RED_Field is HAL.UInt8; subtype OCOLR_APLHA_Field is HAL.UInt8; -- output color register type OCOLR_Register is record -- Blue Value BLUE : OCOLR_BLUE_Field := 16#0#; -- Green Value GREEN : OCOLR_GREEN_Field := 16#0#; -- Red Value RED : OCOLR_RED_Field := 16#0#; -- Alpha Channel Value APLHA : OCOLR_APLHA_Field := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for OCOLR_Register use record BLUE at 0 range 0 .. 7; GREEN at 0 range 8 .. 15; RED at 0 range 16 .. 23; APLHA at 0 range 24 .. 31; end record; subtype OOR_LO_Field is HAL.UInt14; -- output offset register type OOR_Register is record -- Line Offset LO : OOR_LO_Field := 16#0#; -- unspecified Reserved_14_31 : HAL.UInt18 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for OOR_Register use record LO at 0 range 0 .. 13; Reserved_14_31 at 0 range 14 .. 31; end record; subtype NLR_NL_Field is HAL.UInt16; subtype NLR_PL_Field is HAL.UInt14; -- number of line register type NLR_Register is record -- Number of lines NL : NLR_NL_Field := 16#0#; -- Pixel per lines PL : NLR_PL_Field := 16#0#; -- unspecified Reserved_30_31 : HAL.UInt2 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for NLR_Register use record NL at 0 range 0 .. 15; PL at 0 range 16 .. 29; Reserved_30_31 at 0 range 30 .. 31; end record; subtype LWR_LW_Field is HAL.UInt16; -- line watermark register type LWR_Register is record -- Line watermark LW : LWR_LW_Field := 16#0#; -- unspecified Reserved_16_31 : HAL.UInt16 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for LWR_Register use record LW at 0 range 0 .. 15; Reserved_16_31 at 0 range 16 .. 31; end record; subtype AMTCR_DT_Field is HAL.UInt8; -- AHB master timer configuration register type AMTCR_Register is record -- Enable EN : Boolean := False; -- unspecified Reserved_1_7 : HAL.UInt7 := 16#0#; -- Dead Time DT : AMTCR_DT_Field := 16#0#; -- unspecified Reserved_16_31 : HAL.UInt16 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for AMTCR_Register use record EN at 0 range 0 .. 0; Reserved_1_7 at 0 range 1 .. 7; DT at 0 range 8 .. 15; Reserved_16_31 at 0 range 16 .. 31; end record; subtype FGCLUT_BLUE_Field is HAL.UInt8; subtype FGCLUT_GREEN_Field is HAL.UInt8; subtype FGCLUT_RED_Field is HAL.UInt8; subtype FGCLUT_APLHA_Field is HAL.UInt8; -- FGCLUT type FGCLUT_Register is record -- BLUE BLUE : FGCLUT_BLUE_Field := 16#0#; -- GREEN GREEN : FGCLUT_GREEN_Field := 16#0#; -- RED RED : FGCLUT_RED_Field := 16#0#; -- APLHA APLHA : FGCLUT_APLHA_Field := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for FGCLUT_Register use record BLUE at 0 range 0 .. 7; GREEN at 0 range 8 .. 15; RED at 0 range 16 .. 23; APLHA at 0 range 24 .. 31; end record; subtype BGCLUT_BLUE_Field is HAL.UInt8; subtype BGCLUT_GREEN_Field is HAL.UInt8; subtype BGCLUT_RED_Field is HAL.UInt8; subtype BGCLUT_APLHA_Field is HAL.UInt8; -- BGCLUT type BGCLUT_Register is record -- BLUE BLUE : BGCLUT_BLUE_Field := 16#0#; -- GREEN GREEN : BGCLUT_GREEN_Field := 16#0#; -- RED RED : BGCLUT_RED_Field := 16#0#; -- APLHA APLHA : BGCLUT_APLHA_Field := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for BGCLUT_Register use record BLUE at 0 range 0 .. 7; GREEN at 0 range 8 .. 15; RED at 0 range 16 .. 23; APLHA at 0 range 24 .. 31; end record; ----------------- -- Peripherals -- ----------------- -- DMA2D controller type DMA2D_Peripheral is record -- control register CR : aliased CR_Register; -- Interrupt Status Register ISR : aliased ISR_Register; -- interrupt flag clear register IFCR : aliased IFCR_Register; -- foreground memory address register FGMAR : aliased HAL.UInt32; -- foreground offset register FGOR : aliased FGOR_Register; -- background memory address register BGMAR : aliased HAL.UInt32; -- background offset register BGOR : aliased BGOR_Register; -- foreground PFC control register FGPFCCR : aliased FGPFCCR_Register; -- foreground color register FGCOLR : aliased FGCOLR_Register; -- background PFC control register BGPFCCR : aliased BGPFCCR_Register; -- background color register BGCOLR : aliased BGCOLR_Register; -- foreground CLUT memory address register FGCMAR : aliased HAL.UInt32; -- background CLUT memory address register BGCMAR : aliased HAL.UInt32; -- output PFC control register OPFCCR : aliased OPFCCR_Register; -- output color register OCOLR : aliased OCOLR_Register; -- output memory address register OMAR : aliased HAL.UInt32; -- output offset register OOR : aliased OOR_Register; -- number of line register NLR : aliased NLR_Register; -- line watermark register LWR : aliased LWR_Register; -- AHB master timer configuration register AMTCR : aliased AMTCR_Register; -- FGCLUT FGCLUT : aliased FGCLUT_Register; -- BGCLUT BGCLUT : aliased BGCLUT_Register; end record with Volatile; for DMA2D_Peripheral use record CR at 16#0# range 0 .. 31; ISR at 16#4# range 0 .. 31; IFCR at 16#8# range 0 .. 31; FGMAR at 16#C# range 0 .. 31; FGOR at 16#10# range 0 .. 31; BGMAR at 16#14# range 0 .. 31; BGOR at 16#18# range 0 .. 31; FGPFCCR at 16#1C# range 0 .. 31; FGCOLR at 16#20# range 0 .. 31; BGPFCCR at 16#24# range 0 .. 31; BGCOLR at 16#28# range 0 .. 31; FGCMAR at 16#2C# range 0 .. 31; BGCMAR at 16#30# range 0 .. 31; OPFCCR at 16#34# range 0 .. 31; OCOLR at 16#38# range 0 .. 31; OMAR at 16#3C# range 0 .. 31; OOR at 16#40# range 0 .. 31; NLR at 16#44# range 0 .. 31; LWR at 16#48# range 0 .. 31; AMTCR at 16#4C# range 0 .. 31; FGCLUT at 16#400# range 0 .. 31; BGCLUT at 16#800# range 0 .. 31; end record; -- DMA2D controller DMA2D_Periph : aliased DMA2D_Peripheral with Import, Address => System'To_Address (16#4002B000#); end STM32_SVD.DMA2D;
onedigitallife-net/Byron
Ada
108
ads
Pragma Ada_2012; Pragma Assertion_Policy( Check ); Package Byron with Pure, SPARK_Mode => On is End Byron;
charlie5/aIDE
Ada
1,703
adb
with AdaM.Factory; package body AdaM.context_Clause is -- Storage Pool -- record_Version : constant := 1; pool_Size : constant := 5_000; package Pool is new AdaM.Factory.Pools (".adam-store", "context_Clauses", pool_Size, record_Version, context_Clause.item, context_Clause.view); -- Forge -- procedure define (Self : in out Item) is begin null; end define; procedure destruct (Self : in out Item) is begin null; end destruct; function new_Subprogram return View is new_View : constant context_Clause.view := Pool.new_Item; begin define (context_Clause.item (new_View.all)); return new_View; end new_Subprogram; procedure free (Self : in out context_Clause.view) is begin destruct (context_Clause.item (Self.all)); Pool.free (Self); end free; -- Attributes -- overriding function Id (Self : access Item) return AdaM.Id is begin return Pool.to_Id (Self); end Id; -- Streams -- procedure View_write (Stream : not null access Ada.Streams.Root_Stream_Type'Class; Self : in View) renames Pool.View_write; procedure View_read (Stream : not null access Ada.Streams.Root_Stream_Type'Class; Self : out View) renames Pool.View_read; end AdaM.context_Clause;
zhmu/ananas
Ada
605
adb
-- { dg-do run } with Interfaces; use Interfaces; procedure Array6 is type buf_t is array (unsigned_32 range <>) of character; type v_str_t (first, last : unsigned_32) is record buf : buf_t (first .. last) := (others => ' '); end record; type v_str_ptr_t is access all v_str_t; v_str : v_str_ptr_t; function build_v_str (f, l : unsigned_32) return v_str_ptr_t is vp : v_str_ptr_t := new v_str_t (f, l); begin return vp; end; begin v_str := build_v_str (unsigned_32'last/2 - 256, unsigned_32'last/2 + 1024*1024); end;
msrLi/portingSources
Ada
818
adb
-- Copyright 2013-2014 Free Software Foundation, Inc. -- -- This program is free software; you can redistribute it and/or modify -- it under the terms of the GNU General Public License as published by -- the Free Software Foundation; either version 3 of the License, or -- (at your option) any later version. -- -- This program is distributed in the hope that it will be useful, -- but WITHOUT ANY WARRANTY; without even the implied warranty of -- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -- GNU General Public License for more details. -- -- You should have received a copy of the GNU General Public License -- along with this program. If not, see <http://www.gnu.org/licenses/>. package body IO is procedure Put_Line (S : String) is begin null; end Put_Line; end IO;
stcarrez/ada-asf
Ada
4,850
ads
----------------------------------------------------------------------- -- asf-applications-tests - ASF Application tests using ASFUnit -- Copyright (C) 2011, 2015, 2023 Stephane Carrez -- Written by Stephane Carrez ([email protected]) -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License. -- You may obtain a copy of the License at -- -- http://www.apache.org/licenses/LICENSE-2.0 -- -- Unless required by applicable law or agreed to in writing, software -- distributed under the License is distributed on an "AS IS" BASIS, -- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -- See the License for the specific language governing permissions and -- limitations under the License. ----------------------------------------------------------------------- with Util.Tests; with Util.Beans.Basic; with Util.Beans.Objects; with Util.Beans.Methods; with Util.Beans.Basic.Lists; with Ada.Strings.Unbounded; package ASF.Applications.Tests is use Ada.Strings.Unbounded; Test_Exception : exception; procedure Add_Tests (Suite : in Util.Tests.Access_Test_Suite); type Test is new Util.Tests.Test with null record; -- Initialize the test application overriding procedure Set_Up (T : in out Test); -- Test a GET request on a static file served by the File_Servlet. procedure Test_Get_File (T : in out Test); -- Test a GET 404 error on missing static file served by the File_Servlet. procedure Test_Get_404 (T : in out Test); -- Test a GET request on the measure servlet procedure Test_Get_Measures (T : in out Test); -- Test an invalid HTTP request. procedure Test_Invalid_Request (T : in out Test); -- Test a GET+POST request with submitted values and an action method called on the bean. procedure Test_Form_Post (T : in out Test); -- Test a POST request with an invalid submitted value procedure Test_Form_Post_Validation_Error (T : in out Test); -- Test a POST request with an invalid CSRF token. procedure Test_Form_Post_CSRF (T : in out Test); -- Test a GET+POST request with form having <h:selectOneMenu> element. procedure Test_Form_Post_Select (T : in out Test); -- Test a POST request to invoke a bean method. procedure Test_Ajax_Action (T : in out Test); -- Test a POST request to invoke a bean method. -- Verify that invalid requests raise an error. procedure Test_Ajax_Action_Error (T : in out Test); -- Test a POST/REDIRECT/GET request with a flash information passed in between. procedure Test_Flash_Object (T : in out Test); -- Test a GET+POST request with the default navigation rule based on the outcome. procedure Test_Default_Navigation_Rule (T : in out Test); -- Test a GET request with meta data and view parameters. procedure Test_View_Params (T : in out Test); -- Test a GET request with meta data and view action. procedure Test_View_Action (T : in out Test); -- Test a GET request with pretty URL and request parameter injection. procedure Test_View_Inject_Parameter (T : in out Test); type Form_Bean is new Util.Beans.Basic.Bean and Util.Beans.Methods.Method_Bean with record Name : Unbounded_String; Password : Unbounded_String; Email : Unbounded_String; Called : Natural := 0; Gender : Unbounded_String; Use_Flash : Boolean := False; Def_Nav : Boolean := False; Perm_Error : Boolean := False; end record; type Form_Bean_Access is access all Form_Bean'Class; -- Get the value identified by the name. overriding function Get_Value (From : in Form_Bean; Name : in String) return Util.Beans.Objects.Object; -- Set the value identified by the name. overriding procedure Set_Value (From : in out Form_Bean; Name : in String; Value : in Util.Beans.Objects.Object); -- This bean provides some methods that can be used in a Method_Expression overriding function Get_Method_Bindings (From : in Form_Bean) return Util.Beans.Methods.Method_Binding_Array_Access; -- Action to save the form procedure Save (Data : in out Form_Bean; Outcome : in out Unbounded_String); -- Create a form bean. function Create_Form_Bean return Util.Beans.Basic.Readonly_Bean_Access; -- Create a list of forms. package Form_Lists is new Util.Beans.Basic.Lists (Form_Bean); -- Create a list of forms. function Create_Form_List return Util.Beans.Basic.Readonly_Bean_Access; -- Initialize the ASF application for the unit test. procedure Initialize_Test_Application; end ASF.Applications.Tests;
AdaCore/gpr
Ada
36,570
adb
------------------------------------------------------------------------------ -- -- -- GPR2 PROJECT MANAGER -- -- -- -- Copyright (C) 2019-2023, AdaCore -- -- -- -- This is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. This software is distributed in the hope that it will be useful, -- -- but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHAN- -- -- TABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public -- -- License for more details. You should have received a copy of the GNU -- -- General Public License distributed with GNAT; see file COPYING. If not, -- -- see <http://www.gnu.org/licenses/>. -- -- -- ------------------------------------------------------------------------------ with Ada.Calendar.Formatting; with Ada.Command_Line; with Ada.Containers.Ordered_Maps; with Ada.Exceptions; use Ada.Exceptions; with Ada.Text_IO; with GNATCOLL.JSON; with GPRtools.Options; with GPR2.Containers; with GPR2.Log; with GPR2.Message; with GPR2.Path_Name; with GPR2.Project.Attribute.Set; with GPR2.Project.Registry.Attribute; with GPR2.Project.Tree; with GPR2.Project.Typ.Set; with GPR2.Project.Variable.Set; with GPR2.Project.View.Set; with GPR2.Version; with GPR2.View_Ids; procedure GPRinspect.Process (Options : in out GPRinspect.GPRinspect_Options) is use Ada; use GNATCOLL; use GNATCOLL.JSON; use GPR2; use GPR2.View_Ids; use type GPRtools.Display_Kind; use type Project.Registry.Attribute.Value_Kind; package PRA renames Project.Registry.Attribute; -- Variables for tool's options Project_Tree : aliased Project.Tree.Object; procedure Inspect_Project_JSON_Output (Tree : Project.Tree.Object; Compact : Boolean); -- Inspect project and possibly recursively all imports procedure Inspect_Project_Textual_Output (Tree : Project.Tree.Object); -- Inspect project and possibly recursively all imports procedure Load_Project (Tree : in out Project.Tree.Object; Options : in out GPRinspect.GPRinspect_Options); -- Load project to inspect function View_Id (View : Project.View.Object) return String; -- Get the View's View_Id image function No_View_Restriction (Views : Restricted_Scope; VName : Name_Type) return Boolean; -- Return if the view must be processed and displayed or not. --------------------------------- -- Inspect_Project_JSON_Output -- --------------------------------- procedure Inspect_Project_JSON_Output (Tree : Project.Tree.Object; Compact : Boolean) is J_Res : constant JSON_Value := Create_Object; -- The JSON response O_Array : GPR2.Containers.Value_Set; -- Object search-paths, global array with all project's object -- directories and the possible runtime object directory. S_Array : GPR2.Containers.Value_Set; -- Sources search-paths, global array with all project's sources -- directories. Handled : Project.View.Set.Object; function Info_Object return JSON_Value; -- Information node (date, toolset version, ...) function Tree_Object return JSON_Value; -- Information node (date, toolset version, ...) procedure Parse_Project (Prjs : in out JSON_Array; View : Project.View.Object; Parent : Project.View.Object); -- Project information (name, kind, ...) function To_JSON_Array (A : GPR2.Containers.Value_Set) return JSON_Array; function Image (Kind : Project_Kind) return String; -- Returns the Kind only ----------- -- Image -- ----------- function Image (Kind : Project_Kind) return String is K : constant String := GPR2.Image (Kind); begin if K (K'Last - 7 .. K'Last) = " project" then return K (K'First .. K'Last - 8); else return K; end if; end Image; ---------- -- Info -- ---------- function Info_Object return JSON_Value is Inf : constant JSON_Value := Create_Object; begin Set_Field (Inf, "generated-on", Calendar.Formatting.Image (Calendar.Clock)); Set_Field (Inf, "version", GPR2.Version.Long_Value); return Inf; end Info_Object; ------------------- -- Parse_Project -- ------------------- procedure Parse_Project (Prjs : in out JSON_Array; View : Project.View.Object; Parent : Project.View.Object) is function Attributes (Atts : Project.Attribute.Set.Object) return JSON_Array; -- Return the set of attribute as a JSON_Array function Variables (Vars : Project.Variable.Set.Object) return JSON_Array; -- Return the set of attribute as a JSON_Array function Types (Typs : Project.Typ.Set.Object) return JSON_Array; -- Return the set of types as a JSON_Array Typs : Project.Typ.Set.Object := View.Types; -- The types used in the project, the variables's types will be added -- into this set. ---------------- -- Attributes -- ---------------- function Attributes (Atts : Project.Attribute.Set.Object) return JSON_Array is A_Array : JSON_Array; begin for A of Atts loop if not A.Is_From_Config or else Options.Display_Config_Attributes then declare Att : constant JSON_Value := Create_Object; begin Set_Field (Att, "name", Image (A.Name.Id.Attr)); if A.Has_Index then Set_Field (Att, "index", A.Index.Value); end if; case A.Kind is when Project.Registry.Attribute.Single => Set_Field (Att, "kind", "single"); Set_Field (Att, "value", A.Value.Text); when Project.Registry.Attribute.List => Set_Field (Att, "kind", "list"); declare Values : JSON_Array; begin for V of A.Values loop Append (Values, Create (V.Text)); end loop; Set_Field (Att, "values", Values); end; end case; Append (A_Array, Att); end; end if; end loop; return A_Array; end Attributes; ----------- -- Types -- ----------- function Types (Typs : Project.Typ.Set.Object) return JSON_Array is T_Array : JSON_Array; begin for T of Typs loop declare Typ : constant JSON_Value := Create_Object; begin Set_Field (Typ, "name", String (T.Name.Text)); declare Values : JSON_Array; begin for V of T.Values loop Append (Values, Create (V.Text)); end loop; Set_Field (Typ, "values", Values); end; Append (T_Array, Typ); end; end loop; return T_Array; end Types; --------------- -- Variables -- --------------- function Variables (Vars : Project.Variable.Set.Object) return JSON_Array is V_Array : JSON_Array; begin for V of Vars loop declare Var : constant JSON_Value := Create_Object; begin Set_Field (Var, "name", String (V.Name.Text)); if V.Has_Type then Set_Field (Var, "type", String (V.Typ.Name.Text)); Typs.Include (V.Typ.Name.Text, V.Typ); end if; case V.Kind is when Project.Registry.Attribute.Single => Set_Field (Var, "kind", "single"); Set_Field (Var, "value", V.Value.Text); when Project.Registry.Attribute.List => Set_Field (Var, "kind", "list"); declare Values : JSON_Array; begin for T of V.Values loop Append (Values, Create (T.Text)); end loop; Set_Field (Var, "values", Values); end; end case; Append (V_Array, Var); end; end loop; return V_Array; end Variables; Prj : constant JSON_Value := Create_Object; F_Prj : constant JSON_Value := Create_Object; C_Array : JSON_Array; P_Array : JSON_Array; A_Array : JSON_Array; begin if Handled.Contains (View) then return; end if; Handled.Include (View); -- Global project information Set_Field (Prj, "id", View_Id (View)); Set_Field (Prj, "name", String (View.Name)); Set_Field (Prj, "kind", Image (View.Kind)); Set_Field (Prj, "qualifier", Image (View.Qualifier)); Set_Field (Prj, "simple-name", String (View.Path_Name.Simple_Name)); Set_Field (Prj, "file-name", View.Path_Name.Value); Set_Field (Prj, "directory", View.Path_Name.Dir_Name); if View.Kind in With_Object_Dir_Kind then Set_Field (Prj, "object-directory", View.Object_Directory.Dir_Name); O_Array.Include (View.Object_Directory.Dir_Name); if View.Kind in With_Source_Dirs_Kind then declare Src_Array : GPR2.Containers.Value_Set; begin for S of View.Source_Directories loop S_Array.Include (S.Value); Src_Array.Include (S.Value); end loop; Set_Field (Prj, "source-directories", To_JSON_Array (Src_Array)); end; end if; end if; if View.Is_Library then Set_Field (Prj, "library-file-name", String (View.Library_Filename.Value)); Set_Field (Prj, "library-name", String (View.Library_Name)); Set_Field (Prj, "library-directory", View.Library_Directory.Dir_Name); Set_Field (Prj, "library-ali-directory", View.Library_Ali_Directory.Dir_Name); end if; Set_Field (F_Prj, "project", Prj); -- Extending if View.Is_Extended then declare E : constant JSON_Value := Create_Object; begin Set_Field (E, "extending-all", Create (View.Is_Extending_All)); Set_Field (E, "project-id", Create (View_Id (View.Extending))); Set_Field (F_Prj, "extending", E); end; end if; -- Extended if View.Is_Extending then declare E : JSON_Array; begin for V of View.Extended loop Append (E, Create (View_Id (V))); end loop; Set_Field (F_Prj, "extended", E); end; end if; -- Imported by if Parent.Is_Defined then Append (P_Array, Create (View_Id (Parent))); Set_Field (F_Prj, "imported-by", P_Array); end if; -- Imported if View.Has_Imports then for I of View.Imports loop Append (C_Array, Create (View_Id (I))); if Options.All_Projects then Parse_Project (Prjs, I, View); end if; end loop; Set_Field (F_Prj, "imports", C_Array); end if; -- Aggregated if View.Qualifier in Aggregate_Kind then for A of View.Aggregated (Recursive => False) loop Append (A_Array, Create (View_Id (A))); if Options.All_Projects then Parse_Project (Prjs, A, View); end if; end loop; Set_Field (F_Prj, "aggregated", A_Array); end if; -- Package if Options.Display_Packages or else Options.Display_Everything then declare P_Array : JSON_Array := Empty_Array; begin for P of View.Packages (False, False) loop declare Pck : constant JSON_Value := Create_Object; begin Set_Field (Pck, "name", Image (P)); if Options.Display_Attributes or else Options.Display_Everything then declare Atts : constant Project.Attribute.Set.Object := View.Attributes (P); begin if not Atts.Is_Empty then Set_Field (Pck, "attributes", Attributes (Atts)); end if; end; end if; Append (P_Array, Pck); end; end loop; if not Is_Empty (P_Array) then Set_Field (F_Prj, "packages", P_Array); end if; end; end if; -- Attributes if Options.Display_Attributes or else Options.Display_Everything then declare Atts : constant Project.Attribute.Set.Object := View.Attributes; begin if not Atts.Is_Empty then Set_Field (F_Prj, "attributes", Attributes (Atts)); end if; end; end if; -- Variables if Options.Display_Variables or else Options.Display_Everything then declare Vars : constant Project.Variable.Set.Object := View.Variables; begin if not Vars.Is_Empty then Set_Field (F_Prj, "variables", Variables (Vars)); end if; end; end if; -- Types if Options.Display_Variables or else Options.Display_Everything then declare Typs : constant Project.Typ.Set.Object := View.Types; begin if not Typs.Is_Empty then Set_Field (F_Prj, "types", Types (Typs)); end if; end; end if; Append (Prjs, F_Prj); end Parse_Project; ------------------- -- To_JSON_Array -- ------------------- function To_JSON_Array (A : GPR2.Containers.Value_Set) return JSON_Array is Res : JSON_Array; begin for S of A loop Append (Res, Create (S)); end loop; return Res; end To_JSON_Array; ----------------- -- Tree_Object -- ----------------- function Tree_Object return JSON_Value is T : constant JSON_Value := Create_Object; R : constant JSON_Value := Create_Object; Stat : constant JSON_Value := Create_Object; P_Array : JSON_Array; M_Array : JSON_Array; begin -- Messages if Tree.Has_Messages then for C in Tree.Log_Messages.Iterate (Information => False, Warning => False, Error => False, Lint => True, Read => False, Unread => True) loop declare M : constant Message.Object := GPR2.Log.Element (C); begin Append (M_Array, Create (M.Format)); end; end loop; Set_Field (T, "messages", M_Array); end if; -- Some stats about the tree Set_Field (Stat, "project-count", Create (Integer (Handled.Length))); Set_Field (T, "stats", Stat); -- Project search paths for P of Tree.Project_Search_Paths loop Append (P_Array, Create (P.Dir_Name)); end loop; Set_Field (T, "project-search-paths", P_Array); if Tree.Has_Runtime_Project then O_Array.Include (Tree.Runtime_Project.Object_Directory.Dir_Name); for S of Tree.Runtime_Project.Source_Directories loop S_Array.Include (S.Dir_Name); end loop; end if; -- Object search paths if not O_Array.Is_Empty then Set_Field (T, "object-search-paths", To_JSON_Array (O_Array)); end if; -- Source search path if not S_Array.Is_Empty then Set_Field (T, "source-search-paths", To_JSON_Array (S_Array)); end if; -- The root project data Set_Field (R, "name", String (Tree.Root_Project.Name)); Set_Field (R, "id", View_Id (Tree.Root_Project)); Set_Field (T, "root-project", R); return T; end Tree_Object; begin declare P_Array : JSON_Array; begin Parse_Project (Prjs => P_Array, View => Tree.Root_Project, Parent => Project.View.Undefined); Set_Field (J_Res, "info", Info_Object); Set_Field (J_Res, "tree", Tree_Object); Set_Field (J_Res, "projects", P_Array); end; Text_IO.Put_Line (JSON.Write (J_Res, Compact => Compact)); end Inspect_Project_JSON_Output; ------------------------------------ -- Inspect_Project_Textual_Output -- ------------------------------------ procedure Inspect_Project_Textual_Output (Tree : Project.Tree.Object) is procedure Indent (Level : Natural; Item : String); procedure Print_Infos; procedure Print_Projects; procedure Print_Tree; function Image (V : GPR2.Project.View.Object) return String is (String (V.Name) & " (" & View_Id (V) & ")"); ------------ -- Indent -- ------------ procedure Indent (Level : Natural; Item : String) is Prefix : constant String := (case Level is when 0 => "", when 1 => "* ", when others => (1 .. (Level - 1) * 3 => ' ') & " - "); begin Text_IO.Put_Line (Prefix & Item); end Indent; ----------------- -- Print_Infos -- ----------------- procedure Print_Infos is begin Indent (0, "+--------------------------------------+"); Indent (0, "| General Information |"); Indent (0, "+--------------------------------------+"); Indent (1, "Generated on : " & Calendar.Formatting.Image (Calendar.Clock)); Indent (1, "Version : " & GPR2.Version.Long_Value); end Print_Infos; -------------------- -- Print_Projects -- -------------------- procedure Print_Projects is First_Attr : Boolean := True; procedure Print_Attributes (View : GPR2.Project.View.Object; Pack : GPR2.Package_Id); ---------------------- -- Print_Attributes -- ---------------------- procedure Print_Attributes (View : GPR2.Project.View.Object; Pack : GPR2.Package_Id) is begin for Attr of View.Attributes (Pack, With_Config => Options.Display_Config_Attributes) loop if First_Attr then -- Actually has attributes to display, print the -- category Indent (2, "Attributes : "); First_Attr := False; end if; Indent (3, Image (Attr.Name.Id) & " [ " & Attr.Kind'Img & " ]"); if Attr.Has_Index then Indent (4, "Index value : """ & Attr.Index.Value & '"'); end if; if Attr.Kind = PRA.Single then Indent (4, "Value : """ & Attr.Value.Text & '"'); elsif Attr.Kind = PRA.List then Indent (4, "Values : "); for V of Attr.Values loop Indent (5, '"' & V.Text & '"'); end loop; end if; end loop; end Print_Attributes; begin Indent (0, "+--------------------------------------+"); Indent (0, "| Projects Information |"); Indent (0, "+--------------------------------------+"); for V in Tree.Iterate loop declare View : constant Project.View.Object := Project.Tree.Element (V); begin if (Options.All_Projects and then No_View_Restriction (Views => Options.Restricted_Views, VName => View.Name)) or else (View_Id (View) = View_Id (Tree.Root_Project)) then Indent (1, Image (View) & " [ " & Image (View.Kind) & " ]"); Indent (2, "Project file : " & View.Path_Name.Value); Indent (2, "Project directory : " & View.Path_Name.Dir_Name); if View.Kind in With_Object_Dir_Kind then Indent (2, "Object directory : " & View.Object_Directory.Dir_Name); end if; if View.Kind in With_Source_Dirs_Kind then Indent (2, "Source directory :"); for S of View.Source_Directories loop Indent (3, S.Value); end loop; end if; if View.Is_Library then Indent (2, "Library name : " & String (View.Library_Name)); Indent (2, "Library file : " & String (View.Library_Filename.Value)); Indent (2, "Library directory : " & View.Library_Directory.Dir_Name); Indent (2, "Library ALI dir. : " & View.Library_Ali_Directory.Dir_Name); end if; if View.Is_Extended then Indent (2, "Extended by : " & Image (View.Extending)); end if; if View.Is_Extending then Indent (2, "Extends : "); for Extended_V of View.Extended loop Indent (3, Image (Extended_V)); end loop; end if; declare First_Import : Boolean := True; begin for I_V in Tree.Iterate loop declare I_View : constant Project.View.Object := Project.Tree.Element (I_V); begin if I_View.Id /= View.Id and then I_View.Has_Imports then for I of I_View.Imports loop if I.Id = View.Id then if First_Import then Indent (2, "Imported-by : "); First_Import := False; end if; Indent (3, Image (I_View)); end if; end loop; end if; end; end loop; end; if View.Has_Imports then Indent (2, "Imports : "); for I of View.Imports loop Indent (3, Image (I)); end loop; end if; if View.Qualifier in Aggregate_Kind then Indent (2, "Aggregated : "); for A of View.Aggregated (Recursive => False) loop Indent (3, Image (A)); end loop; end if; if Options.Display_Attributes or else Options.Display_Everything then First_Attr := True; Print_Attributes (View, Project_Level_Scope); if Options.Display_Packages or else Options.Display_Everything then for P of View.Packages (With_Defaults => False, With_Config => Options.Display_Config_Attributes) loop Print_Attributes (View, P); end loop; end if; end if; if Options.Display_Variables or else Options.Display_Everything then if not View.Variables.Is_Empty then Indent (2, "Variables : "); for Var of View.Variables loop Indent (3, String (Var.Name.Text) & " [ " & Var.Kind'Img & " ]"); if Var.Has_Type then Indent (4, "Variable type : """ & String (Var.Typ.Name.Text) & '"'); end if; if Var.Kind = PRA.Single then Indent (4, "Value : """ & Var.Value.Text & '"'); elsif Var.Kind = PRA.List then Indent (4, "Values : "); for V of Var.Values loop Indent (5, '"' & V.Text & '"'); end loop; end if; end loop; end if; end if; if Options.Display_Variables or else Options.Display_Everything then if not View.Types.Is_Empty then Indent (2, "Types : "); for T of View.Types loop Indent (3, String (T.Name.Text)); Indent (4, "Values : "); for V of T.Values loop Indent (5, '"' & V.Text & '"'); end loop; end loop; end if; end if; Text_IO.New_Line; end if; end; end loop; end Print_Projects; ---------------- -- Print_Tree -- ---------------- procedure Print_Tree is begin Indent (0, "+--------------------------------------+"); Indent (0, "| Project Tree Information |"); Indent (0, "+--------------------------------------+"); if Tree.Has_Messages then declare First_Message : Boolean := False; begin for C in Project_Tree.Log_Messages.Iterate (Information => False, Warning => False, Error => False, Lint => True, Read => False, Unread => True) loop if not First_Message then Indent (1, "Messages :"); First_Message := True; end if; declare M : constant Message.Object := GPR2.Log.Element (C); begin Indent (2, M.Format); end; end loop; end; end if; declare Project_Count : Integer := 0; begin for V in Tree.Iterate loop declare View : constant Project.View.Object := Project.Tree.Element (V); begin if (Options.All_Projects and then No_View_Restriction (Views => Options.Restricted_Views, VName => View.Name)) or else (View_Id (View) = View_Id (Tree.Root_Project)) then Project_Count := Project_Count + 1; end if; end; end loop; Indent (1, "Project count : " & Project_Count'Img); end; declare First_PPath : Boolean := False; begin for P of Tree.Project_Search_Paths loop if not First_PPath then Indent (1, "Project search paths :"); First_PPath := True; end if; Indent (2, P.Dir_Name); end loop; end; declare First_SPath : Boolean := False; begin if Tree.Has_Runtime_Project then Indent (1, "Object search paths :"); for V in Tree.Iterate loop declare View : constant Project.View.Object := Project.Tree.Element (V); begin if (Options.All_Projects and then No_View_Restriction (Views => Options.Restricted_Views, VName => View.Name)) or else (View_Id (View) = View_Id (Tree.Root_Project)) then if View.Kind in With_Object_Dir_Kind then Indent (2, View.Object_Directory.Dir_Name); end if; end if; end; end loop; Indent (2, Tree.Runtime_Project.Object_Directory.Dir_Name); for V in Tree.Iterate loop declare View : constant Project.View.Object := Project.Tree.Element (V); begin if (Options.All_Projects and then No_View_Restriction (Views => Options.Restricted_Views, VName => View.Name)) or else (View_Id (View) = View_Id (Tree.Root_Project)) then if View.Kind in With_Source_Dirs_Kind then for S of View.Source_Directories loop if not First_SPath then Indent (1, "Source search paths :"); First_SPath := True; end if; Indent (2, S.Value); end loop; end if; end if; end; end loop; for S of Tree.Runtime_Project.Source_Directories loop if not First_SPath then Indent (1, "Source search paths :"); First_SPath := True; end if; Indent (2, S.Dir_Name); end loop; end if; end; Indent (1, "Root project :"); Indent (2, Image (Tree.Root_Project)); end Print_Tree; pragma Unreferenced (Tree); begin Print_Infos; Text_IO.New_Line; Print_Tree; Text_IO.New_Line; Print_Projects; end Inspect_Project_Textual_Output; ------------------ -- Load_Project -- ------------------ procedure Load_Project (Tree : in out GPR2.Project.Tree.Object; Options : in out GPRinspect.GPRinspect_Options) is package Imported_By_Map is new Ada.Containers.Ordered_Maps (Project.View.Object, Project.View.Set.Object, Project.View."<", Project.View.Set."="); Imported_By : Imported_By_Map.Map; begin Options.Tree := Project_Tree.Reference; if not GPRtools.Options.Load_Project (Opt => Options, Absent_Dir_Error => Project.Tree.No_Error, Handle_Information => Options.Verbose) then Command_Line.Set_Exit_Status (Command_Line.Failure); return; end if; -- Build list of imported-by projects for C in Tree.Iterate loop declare V : constant Project.View.Object := Project.Tree.Element (C); begin for I of V.Imports loop declare S : constant Imported_By_Map.Cursor := Imported_By.Find (I); begin if Imported_By_Map.Has_Element (S) then Imported_By.Reference (S).Insert (V); else declare N : Project.View.Set.Object; begin N.Include (V); Imported_By.Insert (I, N); end; end if; end; end loop; end; end loop; end Load_Project; ---------------------- -- View_Restriction -- ---------------------- function No_View_Restriction (Views : Restricted_Scope; VName : Name_Type) return Boolean is begin return (not Views.Restrict or else (Views.Views.Contains (VName))); end No_View_Restriction; ------------- -- View_Id -- ------------- function View_Id (View : Project.View.Object) return String is begin return String (GPR2.View_Ids.Image (View.Id)); end View_Id; begin Load_Project (Tree => Project_Tree, Options => Options); case Options.Kind_Of_Display is when GPRtools.K_JSON | GPRtools.K_JSON_Compact => Inspect_Project_JSON_Output (Tree => Project_Tree, Compact => (Options.Kind_Of_Display = GPRtools.K_JSON_Compact)); when GPRtools.K_Textual_IO => Inspect_Project_Textual_Output (Tree => Project_Tree); end case; exception when E : others => Text_IO.Put_Line ("error: " & Exception_Information (E)); if Options.Tree /= null then if Options.Tree.Has_Messages then for M of Options.Tree.Log_Messages.all loop Text_IO.Put_Line (M.Format); end loop; end if; end if; end GPRinspect.Process;
AdaCore/spat
Ada
2,582
ads
------------------------------------------------------------------------------ -- Copyright (C) 2020 by Heisenbug Ltd. ([email protected]) -- -- This work is free. You can redistribute it and/or modify it under the -- terms of the Do What The Fuck You Want To Public License, Version 2, -- as published by Sam Hocevar. See the LICENSE file for more details. ------------------------------------------------------------------------------ pragma License (Unrestricted); ------------------------------------------------------------------------------ -- -- SPARK Proof Analysis Tool -- -- S.P.A.T. - Bounded string list and table support (for output formatting). -- ------------------------------------------------------------------------------ with SPAT.String_Vectors; package SPAT.Strings is package Implementation is -- Provide instantiations of the bounded vectors for our different string -- types. package Subjects is new String_Vectors (Element_Type => Subject_Name, "=" => "=", Length => Length); package Entities is new String_Vectors (Element_Type => Entity_Name, "=" => "=", Length => Length); package SPARK_File_Names is new String_Vectors (Element_Type => SPARK_File_Name, "=" => "=", Length => Length); end Implementation; -- A one dimensional list of strings. type Subject_Names is new Implementation.Subjects.List with private; type Entity_Names is new Implementation.Entities.List with private; type SPARK_File_Names is new Implementation.SPARK_File_Names.List with private; Empty_Subjects : constant Subject_Names; Empty_Names : constant Entity_Names; Empty_Files : constant SPARK_File_Names; private type Subject_Names is new Implementation.Subjects.List with null record; type Entity_Names is new Implementation.Entities.List with null record; type SPARK_File_Names is new Implementation.SPARK_File_Names.List with null record; Empty_Subjects : constant Subject_Names := (Implementation.Subjects.Empty with null record); Empty_Names : constant Entity_Names := (Implementation.Entities.Empty with null record); Empty_Files : constant SPARK_File_Names := (Implementation.SPARK_File_Names.Empty with null record); end SPAT.Strings;
wanghai1988/tkimg
Ada
4,078
adb
---------------------------------------------------------------- -- ZLib for Ada thick binding. -- -- -- -- Copyright (C) 2002-2003 Dmitriy Anisimkov -- -- -- -- Open source license information is in the zlib.ads file. -- ---------------------------------------------------------------- -- $Id: read.adb,v 1.1.1.1 2006/01/16 18:06:33 abrighto Exp $ -- Test/demo program for the generic read interface. with Ada.Numerics.Discrete_Random; with Ada.Streams; with Ada.Text_IO; with ZLib; procedure Read is use Ada.Streams; ------------------------------------ -- Test configuration parameters -- ------------------------------------ File_Size : Stream_Element_Offset := 100_000; Continuous : constant Boolean := False; -- If this constant is True, the test would be repeated again and again, -- with increment File_Size for every iteration. Header : constant ZLib.Header_Type := ZLib.Default; -- Do not use Header other than Default in ZLib versions 1.1.4 and older. Init_Random : constant := 8; -- We are using the same random sequence, in case of we catch bug, -- so we would be able to reproduce it. -- End -- Pack_Size : Stream_Element_Offset; Offset : Stream_Element_Offset; Filter : ZLib.Filter_Type; subtype Visible_Symbols is Stream_Element range 16#20# .. 16#7E#; package Random_Elements is new Ada.Numerics.Discrete_Random (Visible_Symbols); Gen : Random_Elements.Generator; Period : constant Stream_Element_Offset := 200; -- Period constant variable for random generator not to be very random. -- Bigger period, harder random. Read_Buffer : Stream_Element_Array (1 .. 2048); Read_First : Stream_Element_Offset; Read_Last : Stream_Element_Offset; procedure Reset; procedure Read (Item : out Stream_Element_Array; Last : out Stream_Element_Offset); -- this procedure is for generic instantiation of -- ZLib.Read -- reading data from the File_In. procedure Read is new ZLib.Read (Read, Read_Buffer, Read_First, Read_Last); ---------- -- Read -- ---------- procedure Read (Item : out Stream_Element_Array; Last : out Stream_Element_Offset) is begin Last := Stream_Element_Offset'Min (Item'Last, Item'First + File_Size - Offset); for J in Item'First .. Last loop if J < Item'First + Period then Item (J) := Random_Elements.Random (Gen); else Item (J) := Item (J - Period); end if; Offset := Offset + 1; end loop; end Read; ----------- -- Reset -- ----------- procedure Reset is begin Random_Elements.Reset (Gen, Init_Random); Pack_Size := 0; Offset := 1; Read_First := Read_Buffer'Last + 1; end Reset; begin Ada.Text_IO.Put_Line ("ZLib " & ZLib.Version); loop for Level in ZLib.Compression_Level'Range loop Ada.Text_IO.Put ("Level =" & ZLib.Compression_Level'Image (Level)); -- Deflate using generic instantiation. ZLib.Deflate_Init (Filter, Level, Header => Header); Reset; Ada.Text_IO.Put (Stream_Element_Offset'Image (File_Size) & " ->"); loop declare Buffer : Stream_Element_Array (1 .. 1024); Last : Stream_Element_Offset; begin Read (Filter, Buffer, Last); Pack_Size := Pack_Size + Last - Buffer'First + 1; exit when Last < Buffer'Last; end; end loop; Ada.Text_IO.Put_Line (Stream_Element_Offset'Image (Pack_Size)); ZLib.Close (Filter); end loop; exit when not Continuous; File_Size := File_Size + 1; end loop; end Read;
godunko/adawebui
Ada
7,043
ads
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Web Framework -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2016-2020, Vadim Godunko <[email protected]> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision: 5682 $ $Date: 2017-01-11 00:55:53 +0300 (Wed, 11 Jan 2017) $ ------------------------------------------------------------------------------ -- Abstract_GL_Widget provides integration between implementation of OpenGL -- API and application. ------------------------------------------------------------------------------ with Web.HTML.Canvases; private with OpenGL.Contexts; with OpenGL.Functions; package Web.UI.Widgets.GL_Widgets is type Abstract_GL_Widget is abstract new Web.UI.Widgets.Abstract_Widget with private; function Functions (Self : in out Abstract_GL_Widget'Class) return access OpenGL.Functions.OpenGL_Functions'Class; -- Returns OpenGL functions to be used with OpenGL context of widget. procedure Update (Self : in out Abstract_GL_Widget); -- Requests redraw. not overriding procedure Initialize_GL (Self : in out Abstract_GL_Widget) is abstract; -- This dispatching subprogram is called once before the first call to -- Paint_GL. Reimplement it in a derived type. -- -- This subprogram should set up any required OpenGL resources and state. -- -- The framebuffer is not yet available at this stage, so avoid issuing -- draw calls from here. not overriding procedure Paint_GL (Self : in out Abstract_GL_Widget) is abstract; -- This dispatching subprogram is called whenever the widget needs to be -- painted. Reimplement it in a derived type. -- -- Current context is set to context of this widget. -- -- Before invoking this function, the context and the framebuffer are -- bound, and the viewport is set up by a call to glViewport. No other -- state is set and no clearing or drawing is performed by the framework. not overriding procedure Resize_GL (Self : in out Abstract_GL_Widget; Width : Integer; Height : Integer) is null; -- This dispatching subprogram is called whenever the widget has been -- resized. Reimplement it in a subclass. The new size is passed in Width -- and Height. not overriding procedure Context_Lost (Self : in out Abstract_GL_Widget) is null; not overriding procedure Context_Restored (Self : in out Abstract_GL_Widget) is null; overriding procedure Set_Disabled (Self : in out Abstract_GL_Widget; Disabled : Boolean := True) is null; package Constructors is procedure Initialize (Self : in out Abstract_GL_Widget'Class; Canvas : in out Web.HTML.Canvases.HTML_Canvas_Element'Class); end Constructors; private type Context_Lost_Dispatcher (Owner : not null access Abstract_GL_Widget'Class) is limited new Web.DOM.Event_Listeners.Event_Listener with null record; overriding procedure Handle_Event (Self : in out Context_Lost_Dispatcher; Event : in out Web.DOM.Events.Event'Class); type Context_Restored_Dispatcher (Owner : not null access Abstract_GL_Widget'Class) is limited new Web.DOM.Event_Listeners.Event_Listener with null record; overriding procedure Handle_Event (Self : in out Context_Restored_Dispatcher; Event : in out Web.DOM.Events.Event'Class); type Abstract_GL_Widget is abstract new Web.UI.Widgets.Abstract_Widget with record Canvas : Web.HTML.Canvases.HTML_Canvas_Element; Context : OpenGL.Contexts.OpenGL_Context_Access; Lost : aliased Context_Lost_Dispatcher (Abstract_GL_Widget'Unchecked_Access); Restored : aliased Context_Restored_Dispatcher (Abstract_GL_Widget'Unchecked_Access); Initialized : Boolean := False; Redraw_Needed : Boolean := True; -- Redraw should be done on next handling of animation frame. end record; end Web.UI.Widgets.GL_Widgets;
LiberatorUSA/GUCEF
Ada
117
ads
package Agar.Core.Config is function Load return Boolean; function Save return Boolean; end Agar.Core.Config;
AdaCore/libadalang
Ada
219
adb
procedure Test is type Arr is array (1 .. 10) of Integer; function Foo return Arr is ((others => 0)); procedure Foo is null; begin for X of Foo loop null; end loop; pragma Test_Block; end Test;
reznikmm/matreshka
Ada
3,630
ads
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Ada Modeling Framework -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2011-2012, Vadim Godunko <[email protected]> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ -- This file is generated, don't edit it. ------------------------------------------------------------------------------ with AMF.Elements.Generic_Hash; function AMF.UML.Template_Signatures.Hash is new AMF.Elements.Generic_Hash (UML_Template_Signature, UML_Template_Signature_Access);
stcarrez/ada-asf
Ada
12,926
adb
----------------------------------------------------------------------- -- asf-navigations -- Navigations -- Copyright (C) 2010, 2011, 2012, 2013, 2018, 2021, 2022 Stephane Carrez -- Written by Stephane Carrez ([email protected]) -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License. -- You may obtain a copy of the License at -- -- http://www.apache.org/licenses/LICENSE-2.0 -- -- Unless required by applicable law or agreed to in writing, software -- distributed under the License is distributed on an "AS IS" BASIS, -- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -- See the License for the specific language governing permissions and -- limitations under the License. ----------------------------------------------------------------------- with ASF.Components.Root; with Util.Strings; with Util.Beans.Objects; with Util.Log.Loggers; with Ada.Unchecked_Deallocation; with ASF.Navigations.Render; package body ASF.Navigations is -- ------------------------------ -- Navigation Case -- ------------------------------ -- The logger Log : constant Util.Log.Loggers.Logger := Util.Log.Loggers.Create ("ASF.Navigations"); -- ------------------------------ -- Check if the navigator specific condition matches the current execution context. -- ------------------------------ function Matches (Navigator : in Navigation_Case; Action : in String; Outcome : in String; Context : in ASF.Contexts.Faces.Faces_Context'Class) return Boolean is begin -- outcome must match if Navigator.Outcome /= null and then Navigator.Outcome.all /= Outcome then return False; end if; -- action must match if Navigator.Action /= null and then Navigator.Action.all /= Action then return False; end if; -- condition must be true if not Navigator.Condition.Is_Constant then declare Value : constant Util.Beans.Objects.Object := Navigator.Condition.Get_Value (Context.Get_ELContext.all); begin if not Util.Beans.Objects.To_Boolean (Value) then return False; end if; end; end if; return True; end Matches; -- ------------------------------ -- Navigation Rule -- ------------------------------ -- ------------------------------ -- Search for the navigator that matches the current action, outcome and context. -- Returns the navigator or null if there was no match. -- ------------------------------ function Find_Navigation (Controller : in Rule; Action : in String; Outcome : in String; Context : in Contexts.Faces.Faces_Context'Class) return Navigation_Access is Iter : Navigator_Vector.Cursor := Controller.Navigators.First; Navigator : Navigation_Access; begin while Navigator_Vector.Has_Element (Iter) loop Navigator := Navigator_Vector.Element (Iter); -- Check if this navigator matches the action/outcome. if Navigator.Matches (Action, Outcome, Context) then return Navigator; end if; Navigator_Vector.Next (Iter); end loop; return null; end Find_Navigation; -- ------------------------------ -- Clear the navigation rules. -- ------------------------------ procedure Clear (Controller : in out Rule) is procedure Free is new Ada.Unchecked_Deallocation (Navigation_Case'Class, Navigation_Access); begin while not Controller.Navigators.Is_Empty loop declare Iter : Navigator_Vector.Cursor := Controller.Navigators.Last; Navigator : Navigation_Access := Navigator_Vector.Element (Iter); begin Free (Navigator.Outcome); Free (Navigator.Action); Free (Navigator); Controller.Navigators.Delete (Iter); end; end loop; end Clear; -- ------------------------------ -- Clear the navigation rules. -- ------------------------------ procedure Clear (Controller : in out Navigation_Rules) is procedure Free is new Ada.Unchecked_Deallocation (Rule'Class, Rule_Access); begin while not Controller.Rules.Is_Empty loop declare Iter : Rule_Map.Cursor := Controller.Rules.First; Rule : Rule_Access := Rule_Map.Element (Iter); begin Rule.Clear; Free (Rule); Controller.Rules.Delete (Iter); end; end loop; end Clear; -- ------------------------------ -- Navigation Handler -- ------------------------------ -- ------------------------------ -- Provide a default navigation rules for the view and the outcome when no application -- navigation was found. The default looks for an XHTML file in the same directory as -- the view and which has the base name defined by <b>Outcome</b>. -- ------------------------------ procedure Handle_Default_Navigation (Handler : in Navigation_Handler; View : in String; Outcome : in String; Context : in out ASF.Contexts.Faces.Faces_Context'Class) is Pos : constant Natural := Util.Strings.Rindex (View, '/'); Root : Components.Root.UIViewRoot; begin if Pos > 0 then declare Name : constant String := View (View'First .. Pos) & Outcome; begin Log.Debug ("Using default navigation from view {0} to {1}", View, Name); Handler.View_Handler.Create_View (Name, Context, Root, Ignore => True); end; else Log.Debug ("Using default navigation from view {0} to {1}", View, View); Handler.View_Handler.Create_View (Outcome, Context, Root, Ignore => True); end if; -- If the 'outcome' refers to a real view, use it. Otherwise keep the current view. if Components.Root.Get_Root (Root) /= null then Context.Set_View_Root (Root); end if; exception when others => Log.Debug ("No suitable navigation rule to navigate from view {0}: {1}", View, Outcome); raise; end Handle_Default_Navigation; -- ------------------------------ -- After executing an action and getting the action outcome, proceed to the navigation -- to the next page. -- ------------------------------ procedure Handle_Navigation (Handler : in Navigation_Handler; Action : in String; Outcome : in String; Context : in out ASF.Contexts.Faces.Faces_Context'Class) is Nav_Rules : constant Navigation_Rules_Access := Handler.Rules; View : constant Components.Root.UIViewRoot := Context.Get_View_Root; Name : constant String := Components.Root.Get_View_Id (View); function Find_Navigation (View : in String) return Navigation_Access; function Find_Navigation (View : in String) return Navigation_Access is Pos : constant Rule_Map.Cursor := Nav_Rules.Rules.Find (To_Unbounded_String (View)); begin if not Rule_Map.Has_Element (Pos) then return null; end if; return Rule_Map.Element (Pos).Find_Navigation (Action, Outcome, Context); end Find_Navigation; Navigator : Navigation_Access; begin Log.Info ("Navigate from view {0} and action {1} with outcome {2}", Name, Action, Outcome); -- Find an exact match Navigator := Find_Navigation (Name); -- Find a wildcard match if Navigator = null then declare Last : Natural := Name'Last; N : Natural; begin loop N := Util.Strings.Rindex (Name, '/', Last); exit when N = 0; Navigator := Find_Navigation (Name (Name'First .. N) & "*"); exit when Navigator /= null or else N = Name'First; Last := N - 1; end loop; end; end if; -- Execute the navigation action. if Navigator /= null then Navigator.Navigate (Context); else Log.Debug ("No navigation rule found for view {0}, action {1} and outcome {2}", Name, Action, Outcome); Navigation_Handler'Class (Handler).Handle_Default_Navigation (Name, Outcome, Context); end if; end Handle_Navigation; -- ------------------------------ -- Initialize the the lifecycle handler. -- ------------------------------ procedure Initialize (Handler : in out Navigation_Handler; Views : ASF.Applications.Views.View_Handler_Access) is begin Handler.Rules := new Navigation_Rules; Handler.View_Handler := Views; end Initialize; -- ------------------------------ -- Free the storage used by the navigation handler. -- ------------------------------ overriding procedure Finalize (Handler : in out Navigation_Handler) is procedure Free is new Ada.Unchecked_Deallocation (Navigation_Rules, Navigation_Rules_Access); begin if Handler.Rules /= null then Clear (Handler.Rules.all); Free (Handler.Rules); end if; end Finalize; -- ------------------------------ -- Add a navigation case to navigate from the view identifier by <b>From</b> -- to the result view identified by <b>To</b>. Some optional conditions are evaluated -- The <b>Outcome</b> must match unless it is empty. -- The <b>Action</b> must match unless it is empty. -- The <b>Condition</b> expression must evaluate to True. -- ------------------------------ procedure Add_Navigation_Case (Handler : in out Navigation_Handler; From : in String; To : in String; Outcome : in String := ""; Action : in String := ""; Condition : in String := ""; Context : in EL.Contexts.ELContext'Class) is C : constant Navigation_Access := Render.Create_Render_Navigator (To, 0); begin Handler.Add_Navigation_Case (C, From, Outcome, Action, Condition, Context); end Add_Navigation_Case; -- ------------------------------ -- Add a navigation case to navigate from the view identifier by <b>From</b> -- by using the navigation rule defined by <b>Navigator</b>. -- Some optional conditions are evaluated: -- The <b>Outcome</b> must match unless it is empty. -- The <b>Action</b> must match unless it is empty. -- The <b>Condition</b> expression must evaluate to True. -- ------------------------------ procedure Add_Navigation_Case (Handler : in out Navigation_Handler'Class; Navigator : in Navigation_Access; From : in String; Outcome : in String := ""; Action : in String := ""; Condition : in String := ""; Context : in EL.Contexts.ELContext'Class) is begin Log.Info ("Add navigation from {0} with outcome {1}", From, Outcome); if Outcome'Length > 0 then Navigator.Outcome := new String '(Outcome); end if; if Action'Length > 0 then Navigator.Action := new String '(Action); end if; -- if Handler.View_Handler = null then -- Handler.View_Handler := Handler.Application.Get_View_Handler; -- end if; if Condition'Length > 0 then Navigator.Condition := EL.Expressions.Create_Expression (Condition, Context); end if; Navigator.View_Handler := Handler.View_Handler; declare View : constant Unbounded_String := To_Unbounded_String (From); Pos : constant Rule_Map.Cursor := Handler.Rules.Rules.Find (View); R : Rule_Access; begin if not Rule_Map.Has_Element (Pos) then R := new Rule; Handler.Rules.Rules.Include (Key => View, New_Item => R); else R := Rule_Map.Element (Pos); end if; R.Navigators.Append (Navigator); end; end Add_Navigation_Case; end ASF.Navigations;
micahwelf/FLTK-Ada
Ada
1,590
ads
package FLTK.Screen is function Get_X return Integer; function Get_Y return Integer; function Get_W return Integer; function Get_H return Integer; function Count return Integer; -- Screen numbers in the range 1 .. Count procedure DPI (Horizontal, Vertical : out Float; Screen_Number : in Integer := 1); function Containing (X, Y : in Integer) return Integer; function Containing (X, Y, W, H : in Integer) return Integer; procedure Work_Area (X, Y, W, H : out Integer; Pos_X, Pos_Y : in Integer); procedure Work_Area (X, Y, W, H : out Integer; Screen_Num : in Integer); procedure Work_Area (X, Y, W, H : out Integer); procedure Bounding_Rect (X, Y, W, H : out Integer; Pos_X, Pos_Y : in Integer); procedure Bounding_Rect (X, Y, W, H : out Integer; Screen_Num : in Integer); procedure Bounding_Rect (X, Y, W, H : out Integer); procedure Bounding_Rect (X, Y, W, H : out Integer; PX, PY, PW, PH : in Integer); private pragma Inline (Get_X); pragma Inline (Get_Y); pragma Inline (Get_W); pragma Inline (Get_H); pragma Inline (Count); pragma Inline (DPI); pragma Inline (Containing); pragma Inline (Work_Area); pragma Inline (Bounding_Rect); end FLTK.Screen;
reznikmm/matreshka
Ada
4,574
adb
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Open Document Toolkit -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2014, Vadim Godunko <[email protected]> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ with Matreshka.DOM_Documents; with Matreshka.ODF_String_Constants; with ODF.DOM.Iterators; with ODF.DOM.Visitors; package body Matreshka.ODF_Svg.ViewBox_Attributes is ------------ -- Create -- ------------ overriding function Create (Parameters : not null access Matreshka.DOM_Attributes.Attribute_L2_Parameters) return Svg_ViewBox_Attribute_Node is begin return Self : Svg_ViewBox_Attribute_Node do Matreshka.ODF_Svg.Constructors.Initialize (Self'Unchecked_Access, Parameters.Document, Matreshka.ODF_String_Constants.Svg_Prefix); end return; end Create; -------------------- -- Get_Local_Name -- -------------------- overriding function Get_Local_Name (Self : not null access constant Svg_ViewBox_Attribute_Node) return League.Strings.Universal_String is pragma Unreferenced (Self); begin return Matreshka.ODF_String_Constants.ViewBox_Attribute; end Get_Local_Name; begin Matreshka.DOM_Documents.Register_Attribute (Matreshka.ODF_String_Constants.Svg_URI, Matreshka.ODF_String_Constants.ViewBox_Attribute, Svg_ViewBox_Attribute_Node'Tag); end Matreshka.ODF_Svg.ViewBox_Attributes;
reznikmm/matreshka
Ada
3,724
ads
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Open Document Toolkit -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2014, Vadim Godunko <[email protected]> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ with XML.DOM.Attributes; package ODF.DOM.Table_Grand_Total_Attributes is pragma Preelaborate; type ODF_Table_Grand_Total_Attribute is limited interface and XML.DOM.Attributes.DOM_Attribute; type ODF_Table_Grand_Total_Attribute_Access is access all ODF_Table_Grand_Total_Attribute'Class with Storage_Size => 0; end ODF.DOM.Table_Grand_Total_Attributes;
jrcarter/Ada_GUI
Ada
7,342
adb
-- Ada_GUI implementation based on Gnoga. Adapted 2021 -- -- -- GNOGA - The GNU Omnificent GUI for Ada -- -- -- -- G N O G A . G U I . E L E M E N T . C A N V A S -- -- -- -- B o d y -- -- -- -- -- -- Copyright (C) 2014 David Botton -- -- -- -- This library is free software; you can redistribute it and/or modify -- -- it under terms of the GNU General Public License as published by the -- -- Free Software Foundation; either version 3, or (at your option) any -- -- later version. This library is distributed in the hope that it will be -- -- useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -- -- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. -- -- -- -- As a special exception under Section 7 of GPL version 3, you are -- -- granted additional permissions described in the GCC Runtime Library -- -- Exception, version 3.1, as published by the Free Software Foundation. -- -- -- -- You should have received a copy of the GNU General Public License and -- -- a copy of the GCC Runtime Library Exception along with this program; -- -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -- -- <http://www.gnu.org/licenses/>. -- -- -- -- As a special exception, if other files instantiate generics from this -- -- unit, or you link this unit with other files to produce an executable, -- -- this unit does not by itself cause the resulting executable to be -- -- covered by the GNU General Public License. This exception does not -- -- however invalidate any other reasons why the executable file might be -- -- covered by the GNU Public License. -- -- -- -- For more information please go to http://www.gnoga.com -- ------------------------------------------------------------------------------ with Ada.Strings.Unbounded; with Ada.Exceptions; with Ada_GUI.Gnoga.Server.Connection; package body Ada_GUI.Gnoga.Gui.Element.Canvas is -------------- -- Finalize -- -------------- overriding procedure Finalize (Object : in out Context_Type) is begin Gnoga.Server.Connection.Execute_Script (Object.Connection_ID, "delete gnoga['" & Ada.Strings.Unbounded.To_String (Object.Context_ID) & "'];"); exception when E : Gnoga.Server.Connection.Connection_Error => Log ("Connection" & Object.Connection_ID'Img & " error during delete object " & Ada.Strings.Unbounded.To_String (Object.Context_ID)); Log (Ada.Exceptions.Exception_Information (E)); end Finalize; ------------ -- Create -- ------------ procedure Create (Canvas : in out Canvas_Type; Parent : in out Gnoga.Gui.Base_Type'Class; Width : in Integer; Height : in Integer; ID : in String := "") is begin Canvas.Create_From_HTML (Parent, "<canvas width=" & Width'Img & " height =" & Height'Img & ">", ID); end Create; ------------------- -- Connection_ID -- ------------------- function Connection_ID (Context : Context_Type) return Gnoga.Connection_ID is begin return Context.Connection_ID; end Connection_ID; -------- -- ID -- -------- function ID (Context : Context_Type) return String is use Ada.Strings.Unbounded; begin return To_String (Context.Context_ID); end ID; -------------- -- Property -- -------------- procedure Property (Context : in out Context_Type; Name : in String; Value : in String) is begin Context.Execute (Name & "='" & Escape_Quotes (Value) & "';"); end Property; procedure Property (Context : in out Context_Type; Name : in String; Value : in Integer) is begin Context.Execute (Name & "=" & Value'Img & ";"); end Property; procedure Property (Context : in out Context_Type; Name : in String; Value : in Boolean) is begin Context.Execute (Name & "=" & Value'Img & ";"); end Property; procedure Property (Context : in out Context_Type; Name : in String; Value : in Float) is begin Context.Execute (Name & "=" & Value'Img & ";"); end Property; function Property (Context : Context_Type; Name : String) return String is begin return Context.Execute (Name); end Property; function Property (Context : Context_Type; Name : String) return Integer is begin return Integer'Value (Context.Property (Name)); exception when E : others => Log ("Error Property converting to Integer (forced to 0)."); Log (Ada.Exceptions.Exception_Information (E)); return 0; end Property; function Property (Context : Context_Type; Name : String) return Boolean is begin return Boolean'Value (Context.Property (Name)); exception when E : others => Log ("Error Property converting to Boolean (forced to False)."); Log (Ada.Exceptions.Exception_Information (E)); return False; end Property; function Property (Context : Context_Type; Name : String) return Float is begin return Float'Value (Context.Property (Name)); exception when E : others => Log ("Error Property converting to Float (forced to 0.0)."); Log (Ada.Exceptions.Exception_Information (E)); return 0.0; end Property; ------------- -- Execute -- ------------- procedure Execute (Context : in out Context_Type; Method : String) is begin Gnoga.Server.Connection.Execute_Script (ID => Context.Connection_ID, Script => "gnoga['" & Context.ID & "']." & Method); end Execute; function Execute (Context : Context_Type; Method : String) return String is begin return Gnoga.Server.Connection.Execute_Script (ID => Context.Connection_ID, Script => "gnoga['" & Context.ID & "']." & Method); end Execute; end Ada_GUI.Gnoga.Gui.Element.Canvas;
reznikmm/matreshka
Ada
180
ads
with Spikedog.Generic_Application_Initializer; with Initializers; package Initializer is new Spikedog.Generic_Application_Initializer (Initializers.Server_Initializer);
optikos/oasis
Ada
2,167
ads
-- Copyright (c) 2019 Maxim Reznik <[email protected]> -- -- SPDX-License-Identifier: MIT -- License-Filename: LICENSE ------------------------------------------------------------- with Program.Elements.Type_Definitions; with Program.Lexical_Elements; with Program.Elements.Expressions; with Program.Elements.Component_Definitions; package Program.Elements.Unconstrained_Array_Types is pragma Pure (Program.Elements.Unconstrained_Array_Types); type Unconstrained_Array_Type is limited interface and Program.Elements.Type_Definitions.Type_Definition; type Unconstrained_Array_Type_Access is access all Unconstrained_Array_Type'Class with Storage_Size => 0; not overriding function Index_Subtypes (Self : Unconstrained_Array_Type) return not null Program.Elements.Expressions.Expression_Vector_Access is abstract; not overriding function Component_Definition (Self : Unconstrained_Array_Type) return not null Program.Elements.Component_Definitions .Component_Definition_Access is abstract; type Unconstrained_Array_Type_Text is limited interface; type Unconstrained_Array_Type_Text_Access is access all Unconstrained_Array_Type_Text'Class with Storage_Size => 0; not overriding function To_Unconstrained_Array_Type_Text (Self : aliased in out Unconstrained_Array_Type) return Unconstrained_Array_Type_Text_Access is abstract; not overriding function Array_Token (Self : Unconstrained_Array_Type_Text) return not null Program.Lexical_Elements.Lexical_Element_Access is abstract; not overriding function Left_Bracket_Token (Self : Unconstrained_Array_Type_Text) return not null Program.Lexical_Elements.Lexical_Element_Access is abstract; not overriding function Right_Bracket_Token (Self : Unconstrained_Array_Type_Text) return not null Program.Lexical_Elements.Lexical_Element_Access is abstract; not overriding function Of_Token (Self : Unconstrained_Array_Type_Text) return not null Program.Lexical_Elements.Lexical_Element_Access is abstract; end Program.Elements.Unconstrained_Array_Types;
greifentor/archimedes-legacy
Ada
335,306
ads
<Diagramm> <AdditionalSQLCode> <SQLCode>$BR$/* Creating the standard maps. */$BR$INSERT INTO "Map" ("Id", "Description", "Name", "Token") VALUES (1, 'Unknown map', 'Unknown', 'Unknown');$BR$INSERT INTO "Map" ("Id", "Description", "Name", "Token") VALUES (2, 'Unmapped map', 'Unmapped', 'Unmapped');$BR$$BR$/* Mark the entires written by the application as created by the customer. */$BR$UPDATE "ConfigurationEntry" SET "CreatedByCustomer"=TRUE WHERE "Key"='Core.core.buildDate';$BR$UPDATE "ConfigurationEntry" SET "CreatedByCustomer"=TRUE WHERE "Key"='Core.isis.core.application.version';$BR$UPDATE "ConfigurationEntry" SET "CreatedByCustomer"=TRUE WHERE "Key"='Core.isis.core.database.version';$BR$UPDATE "ConfigurationEntry" SET "CreatedByCustomer"=TRUE WHERE "Key"='Core.isis.first.start.done';$BR$</SQLCode> </AdditionalSQLCode> <Colors> <Anzahl>23</Anzahl> <Color0> <B>255</B> <G>0</G> <Name>blau</Name> <R>0</R> </Color0> <Color1> <B>221</B> <G>212</G> <Name>blaugrau</Name> <R>175</R> </Color1> <Color10> <B>192</B> <G>192</G> <Name>hellgrau</Name> <R>192</R> </Color10> <Color11> <B>255</B> <G>0</G> <Name>kamesinrot</Name> <R>255</R> </Color11> <Color12> <B>0</B> <G>200</G> <Name>orange</Name> <R>255</R> </Color12> <Color13> <B>255</B> <G>247</G> <Name>pastell-blau</Name> <R>211</R> </Color13> <Color14> <B>186</B> <G>245</G> <Name>pastell-gelb</Name> <R>255</R> </Color14> <Color15> <B>234</B> <G>255</G> <Name>pastell-gr&amp;uuml;n</Name> <R>211</R> </Color15> <Color16> <B>255</B> <G>211</G> <Name>pastell-lila</Name> <R>244</R> </Color16> <Color17> <B>191</B> <G>165</G> <Name>pastell-rot</Name> <R>244</R> </Color17> <Color18> <B>175</B> <G>175</G> <Name>pink</Name> <R>255</R> </Color18> <Color19> <B>0</B> <G>0</G> <Name>rot</Name> <R>255</R> </Color19> <Color2> <B>61</B> <G>125</G> <Name>braun</Name> <R>170</R> </Color2> <Color20> <B>0</B> <G>0</G> <Name>schwarz</Name> <R>0</R> </Color20> <Color21> <B>255</B> <G>255</G> <Name>t&amp;uuml;rkis</Name> <R>0</R> </Color21> <Color22> <B>255</B> <G>255</G> <Name>wei&amp;szlig;</Name> <R>255</R> </Color22> <Color3> <B>64</B> <G>64</G> <Name>dunkelgrau</Name> <R>64</R> </Color3> <Color4> <B>84</B> <G>132</G> <Name>dunkelgr&amp;uuml;n</Name> <R>94</R> </Color4> <Color5> <B>0</B> <G>255</G> <Name>gelb</Name> <R>255</R> </Color5> <Color6> <B>0</B> <G>225</G> <Name>goldgelb</Name> <R>255</R> </Color6> <Color7> <B>128</B> <G>128</G> <Name>grau</Name> <R>128</R> </Color7> <Color8> <B>0</B> <G>255</G> <Name>gr&amp;uuml;n</Name> <R>0</R> </Color8> <Color9> <B>255</B> <G>212</G> <Name>hellblau</Name> <R>191</R> </Color9> </Colors> <ComplexIndices> <IndexCount>0</IndexCount> </ComplexIndices> <DataSource> <Import> <DBName></DBName> <Description></Description> <Domains>false</Domains> <Driver></Driver> <Name></Name> <Referenzen>false</Referenzen> <User></User> </Import> <Update> <DBMode>POSTGRESQL</DBMode> <DBName>jdbc:postgresql://mykene/ISIS_CURRENT_SCHEME</DBName> <Description></Description> <DomainFaehig>false</DomainFaehig> <Driver>org.postgresql.Driver</Driver> <FkNotNullBeachten>true</FkNotNullBeachten> <Name></Name> <Quote>"</Quote> <ReferenzenSetzen>true</ReferenzenSetzen> <User>op1</User> </Update> </DataSource> <DefaultComment> <Anzahl>0</Anzahl> </DefaultComment> <Domains> <Anzahl>23</Anzahl> <Domain0> <Datatype>4</Datatype> <History>@changed OLI 14.11.2011 - Added.</History> <Initialwert>NULL</Initialwert> <Kommentar>This domain stores boolean values: 0 means false, any other value is true.</Kommentar> <Length>0</Length> <NKS>0</NKS> <Name>Boolean</Name> </Domain0> <Domain1> <Datatype>12</Datatype> <History></History> <Initialwert>NULL</Initialwert> <Kommentar>A type for configuration entries. Possible values are: BOOLEAN, DATE, DOUBLE, FLOAT, INTEGER, LONG, STRING, TIMESTAMP. Ensure upper case for the fields content.</Kommentar> <Length>255</Length> <NKS>0</NKS> <Name>ConfigurationType</Name> </Domain1> <Domain10> <Datatype>12</Datatype> <History>@changed OLI 17.04.2013 - Added.</History> <Initialwert>NULL</Initialwert> <Kommentar>A domain for fields with long descriptions.</Kommentar> <Length>2000</Length> <NKS>0</NKS> <Name>LongDescription</Name> </Domain10> <Domain11> <Datatype>2004</Datatype> <History></History> <Initialwert>NULL</Initialwert> <Kommentar>A type binary object fields which contain media informations.</Kommentar> <Length>0</Length> <NKS>0</NKS> <Name>MediaContent</Name> </Domain11> <Domain12> <Datatype>12</Datatype> <History>@changed OLI 30.07.2012 - Added.</History> <Initialwert>NULL</Initialwert> <Kommentar>A type for content type identifiers used in the media manager. This marks technical content types like 'JPEG' or 'AVI', which defines the binary format of the stored content. Only values coming from the enum MediaContentType are valid for fields of this domain.</Kommentar> <Length>20</Length> <NKS>0</NKS> <Name>MediaContentType</Name> </Domain12> <Domain13> <Datatype>12</Datatype> <History>@changed OLI 30.07.2012 - Added.</History> <Initialwert>NULL</Initialwert> <Kommentar>Fields of this type may contain strings specified by the enum MediaType only.</Kommentar> <Length>20</Length> <NKS>0</NKS> <Name>MediaType</Name> </Domain13> <Domain14> <Datatype>12</Datatype> <History>@changed OLI 17.04.2013 - Added.</History> <Initialwert>NULL</Initialwert> <Kommentar>a type for name fields.</Kommentar> <Length>50</Length> <NKS>0</NKS> <Name>Name</Name> </Domain14> <Domain15> <Datatype>-5</Datatype> <History>@changed OLI 14.11.2011 - Added.</History> <Initialwert>NULL</Initialwert> <Kommentar>A domain for numeric id's.</Kommentar> <Length>0</Length> <NKS>0</NKS> <Name>NumericIdent</Name> </Domain15> <Domain16> <Datatype>-5</Datatype> <History>@changed OLI 03.07.2013 - Added.</History> <Initialwert>NULL</Initialwert> <Kommentar>A domain for timestamps in the formar YYYYMMDDHHmmSS (stored as a number).</Kommentar> <Length>0</Length> <NKS>0</NKS> <Name>PTimestamp</Name> </Domain16> <Domain17> <Datatype>12</Datatype> <History>@changed OLI 01.02.2012 - Added.$BR$@changed OLI 30.10.2012 - Changed the length of the string to 255 while changing the encoding strategy for the passwords.</History> <Initialwert>NULL</Initialwert> <Kommentar>A domain for password storage. The content of the fields should be encoded.</Kommentar> <Length>255</Length> <NKS>0</NKS> <Name>Password</Name> </Domain17> <Domain18> <Datatype>12</Datatype> <History></History> <Initialwert>NULL</Initialwert> <Kommentar></Kommentar> <Length>50</Length> <NKS>0</NKS> <Name>PersonName</Name> </Domain18> <Domain19> <Datatype>12</Datatype> <History>@changed OLI 17.04.2013 - Added.</History> <Initialwert>NULL</Initialwert> <Kommentar>A domain for fields which are able to store SQL queries.</Kommentar> <Length>2500</Length> <NKS>0</NKS> <Name>SQLQuery</Name> </Domain19> <Domain2> <Datatype>4</Datatype> <History>@changed OLI 27.08.2012 - Added.</History> <Initialwert>NULL</Initialwert> <Kommentar>A single coordinate, either x or y value.</Kommentar> <Length>0</Length> <NKS>0</NKS> <Name>Coordinate</Name> </Domain2> <Domain20> <Datatype>4</Datatype> <History>@changed OLI 17.04.2013 - Added.</History> <Initialwert>NULL</Initialwert> <Kommentar>A type to store sort orders.</Kommentar> <Length>0</Length> <NKS>0</NKS> <Name>SortOrder</Name> </Domain20> <Domain21> <Datatype>12</Datatype> <History>@changed OLI 01.11.2011 - Added.</History> <Initialwert>NULL</Initialwert> <Kommentar>A string identifier for a data record.</Kommentar> <Length>255</Length> <NKS>0</NKS> <Name>StringIdent</Name> </Domain21> <Domain22> <Datatype>12</Datatype> <History>@changed OLI 01.11.2011 - Added.</History> <Initialwert>NULL</Initialwert> <Kommentar>A type for fields, which are able to store values in their string representation.</Kommentar> <Length>3000</Length> <NKS>0</NKS> <Name>Value</Name> </Domain22> <Domain3> <Datatype>12</Datatype> <History>@changed OLI 01.11.2011 - Added.</History> <Initialwert>NULL</Initialwert> <Kommentar>A description or name of an data object.</Kommentar> <Length>255</Length> <NKS>0</NKS> <Name>Description</Name> </Domain3> <Domain4> <Datatype>12</Datatype> <History>@changed OLI 17.04.2013 - Added.</History> <Initialwert>NULL</Initialwert> <Kommentar>A type for FetchType data.</Kommentar> <Length>20</Length> <NKS>0</NKS> <Name>FetchType</Name> </Domain4> <Domain5> <Datatype>2004</Datatype> <History>@changed OLI 14.11.2011 - Added.</History> <Initialwert>NULL</Initialwert> <Kommentar>A type for bringing file contents to the data base.</Kommentar> <Length>0</Length> <NKS>0</NKS> <Name>FileContent</Name> </Domain5> <Domain6> <Datatype>12</Datatype> <History>@changed OLI 08.11.2011 - Added.</History> <Initialwert>NULL</Initialwert> <Kommentar>This domain contains tokens of the java language locales.</Kommentar> <Length>10</Length> <NKS>0</NKS> <Name>LanguageToken</Name> </Domain6> <Domain7> <Datatype>4</Datatype> <History>@changed OLI 17.04.2013 - Added.</History> <Initialwert>NULL</Initialwert> <Kommentar>A domain for level counts.</Kommentar> <Length>0</Length> <NKS>0</NKS> <Name>Level</Name> </Domain7> <Domain8> <Datatype>12</Datatype> <History>@changed OLI 17.04.2013 - Added.</History> <Initialwert>NULL</Initialwert> <Kommentar>A type for localization resource values (means label texts).</Kommentar> <Length>1024</Length> <NKS>0</NKS> <Name>LocalizationResourceValue</Name> </Domain8> <Domain9> <Datatype>12</Datatype> <History>@changed OLI 12.01.2012 - Added.</History> <Initialwert>NULL</Initialwert> <Kommentar>A domain for user logins.</Kommentar> <Length>20</Length> <NKS>0</NKS> <Name>LoginName</Name> </Domain9> </Domains> <Factories> <Object>archimedes.legacy.scheme.DefaultObjectFactory</Object> </Factories> <Pages> <PerColumn>5</PerColumn> <PerRow>10</PerRow> </Pages> <Parameter> <AdditionalSQLScriptListener></AdditionalSQLScriptListener> <Applicationname></Applicationname> <AufgehobeneAusblenden>false</AufgehobeneAusblenden> <Autor>ollie</Autor> <Basepackagename>de.healthcarion.isis</Basepackagename> <CodeFactoryClassName></CodeFactoryClassName> <Codebasispfad>.\:</Codebasispfad> <DBVersionDBVersionColumn></DBVersionDBVersionColumn> <DBVersionDescriptionColumn></DBVersionDescriptionColumn> <DBVersionTablename></DBVersionTablename> <History>@changed OLI 01.11.2011 - Added.$BR$@changed OLI 11.01.2012 - User administration tables added.$BR$@changed OLI 30.07.2012 - Media manager tables added.</History> <Kommentar>This diagram contains the classes of the Isis core library and modules.$BR$$BR$Version 1 (01.11.2011) - Configuration and license tables. Localization resource table. Plug-in entries. User administration. Media, Zones.</Kommentar> <Name>Core</Name> <PflichtfelderMarkieren>false</PflichtfelderMarkieren> <ReferenzierteSpaltenAnzeigen>true</ReferenzierteSpaltenAnzeigen> <SchemaName>Core</SchemaName> <Schriftgroessen> <Tabelleninhalte>12</Tabelleninhalte> <Ueberschriften>24</Ueberschriften> <Untertitel>12</Untertitel> </Schriftgroessen> <Scripte> <AfterWrite>&amp;lt;null&amp;gt;</AfterWrite> </Scripte> <TechnischeFelderAusgrauen>true</TechnischeFelderAusgrauen> <UdschebtiBaseClassName></UdschebtiBaseClassName> <Version>2</Version> <Versionsdatum>13.06.2013</Versionsdatum> <Versionskommentar>Configuration and license tables. Localization resource table. Plug-in entries. User administration.</Versionskommentar> </Parameter> <Sequences> <Count>15</Count> <Sequence0> <Comment>A sequence for the keys of the ApplicationRight table.</Comment> <History>@changed OLI 24.04.2013 - Added.</History> <Increment>100</Increment> <Name>applicationrightseq</Name> <StartValue>100</StartValue> </Sequence0> <Sequence1> <Comment>A sequence for the keys of the ApplicationUserGroup table.</Comment> <History>@changed OLI 24.04.2013 - Added.</History> <Increment>100</Increment> <Name>applicationusergroupseq</Name> <StartValue>100</StartValue> </Sequence1> <Sequence10> <Comment>A sequence for the keys of the Medium table.</Comment> <History>@changed OLI 24.04.2013 - Added.</History> <Increment>100</Increment> <Name>mediumseq</Name> <StartValue>100</StartValue> </Sequence10> <Sequence11> <Comment>A sequence for the keys of the SQLReport table.</Comment> <History>@changed OLI 24.04.2013 - Added.</History> <Increment>100</Increment> <Name>sqlreportseq</Name> <StartValue>100</StartValue> </Sequence11> <Sequence12> <Comment>A sequence for the keys of the ZoneMapping table.</Comment> <History>@changed OLI 24.04.2013 - Added.</History> <Increment>100</Increment> <Name>zonemappingseq</Name> <StartValue>100</StartValue> </Sequence12> <Sequence13> <Comment>A sequence for the keys of the Zone table.</Comment> <History>@changed OLI 24.04.2013 - Added.</History> <Increment>100</Increment> <Name>zoneseq</Name> <StartValue>100</StartValue> </Sequence13> <Sequence14> <Comment>A sequence for the keys of the ZoneTransition table.</Comment> <History>@changed OLI 24.04.2013 - Added.</History> <Increment>100</Increment> <Name>zonetransitionseq</Name> <StartValue>100</StartValue> </Sequence14> <Sequence2> <Comment>A sequence for the keys of the ApplicationUser table.</Comment> <History>@changed OLI 24.04.2013 - Added.</History> <Increment>100</Increment> <Name>applicationuserseq</Name> <StartValue>100</StartValue> </Sequence2> <Sequence3> <Comment>A sequence for the keys of the DeviceAlias table.</Comment> <History>@changed OLI 24.04.2013 - Added.</History> <Increment>100</Increment> <Name>devicealiasseq</Name> <StartValue>100</StartValue> </Sequence3> <Sequence4> <Comment>A sequence for the keys of the DeviceEngine table.</Comment> <History>@changed OLI 24.04.2013 - Added.</History> <Increment>100</Increment> <Name>deviceengineseq</Name> <StartValue>100</StartValue> </Sequence4> <Sequence5> <Comment>A sequence for the keys of the GUITable table.</Comment> <History>@changed OLI 24.04.2013 - Added.</History> <Increment>100</Increment> <Name>guitableseq</Name> <StartValue>100</StartValue> </Sequence5> <Sequence6> <Comment>A sequence for the keys of the LicenseEntry table.</Comment> <History>@changed OLI 24.04.2013 - Added.</History> <Increment>100</Increment> <Name>licenseentryseq</Name> <StartValue>100</StartValue> </Sequence6> <Sequence7> <Comment>A sequence for id generation for the MapMapping table.</Comment> <History>@changed OLI 13.05.2013 - Added.</History> <Increment>100</Increment> <Name>mapmappingseq</Name> <StartValue>100</StartValue> </Sequence7> <Sequence8> <Comment>A sequence for id generation for the Map table.</Comment> <History>@changed OLI 13.05.2013 - Added.</History> <Increment>100</Increment> <Name>mapseq</Name> <StartValue>110</StartValue> </Sequence8> <Sequence9> <Comment>A sequence for the keys of the MediaCategory table.</Comment> <History>@changed OLI 23.04.2013 - Added.</History> <Increment>100</Increment> <Name>mediacategoryseq</Name> <StartValue>100</StartValue> </Sequence9> </Sequences> <Stereotype> <Anzahl>9</Anzahl> <Stereotype0> <DoNotPrint>false</DoNotPrint> <HideTable>false</HideTable> <History>@changed OLI 01.11.2011 - Added.</History> <Kommentar>This stereotype marks member tables of the configuration module.</Kommentar> <Name>Configuration</Name> </Stereotype0> <Stereotype1> <DoNotPrint>false</DoNotPrint> <HideTable>false</HideTable> <History></History> <Kommentar>-/-</Kommentar> <Name>DeviceManager</Name> </Stereotype1> <Stereotype2> <DoNotPrint>false</DoNotPrint> <HideTable>false</HideTable> <History></History> <Kommentar>-/-</Kommentar> <Name>GUIManager</Name> </Stereotype2> <Stereotype3> <DoNotPrint>false</DoNotPrint> <HideTable>false</HideTable> <History>@changed OLI 01.11.2011 - Added.</History> <Kommentar>A stereo type to mark the tables involved to the licensing system.</Kommentar> <Name>Licensing</Name> </Stereotype3> <Stereotype4> <DoNotPrint>false</DoNotPrint> <HideTable>false</HideTable> <History>@changed OLI 30.07.2012 - Added.</History> <Kommentar>Table which are belonging to the meda manager module.</Kommentar> <Name>MediaManager</Name> </Stereotype4> <Stereotype5> <DoNotPrint>false</DoNotPrint> <HideTable>false</HideTable> <History>@changed VM 12.12.2011 - Added.</History> <Kommentar>This stereotype marks member tables of the plug-in manager module.</Kommentar> <Name>PluginManager</Name> </Stereotype5> <Stereotype6> <DoNotPrint>false</DoNotPrint> <HideTable>false</HideTable> <History>@changed OLI 08.11.2011 - Added.</History> <Kommentar>This stereo type marks all tables, which are included by the resouce management.</Kommentar> <Name>Resource</Name> </Stereotype6> <Stereotype7> <DoNotPrint>false</DoNotPrint> <HideTable>false</HideTable> <History>@changed OLI 11.01.2012 - Added.</History> <Kommentar>Tables of this type are members of the applications user administration.</Kommentar> <Name>UserAdministration</Name> </Stereotype7> <Stereotype8> <DoNotPrint>false</DoNotPrint> <HideTable>false</HideTable> <History></History> <Kommentar>-/-</Kommentar> <Name>ZoneManager</Name> </Stereotype8> </Stereotype> <Tabellen> <Anzahl>26</Anzahl> <Tabelle0> <Aufgehoben>false</Aufgehoben> <Codegenerator> <AuswahlMembers> <Anzahl>0</Anzahl> </AuswahlMembers> <CompareMembers> <Anzahl>0</Anzahl> </CompareMembers> <Equalsmembers> <Anzahl>0</Anzahl> </Equalsmembers> <HashCodeMembers> <Anzahl>0</Anzahl> </HashCodeMembers> <NReferenzen> <Anzahl>0</Anzahl> </NReferenzen> <OrderMembers> <Anzahl>0</Anzahl> </OrderMembers> <ToComboStringMembers> <Anzahl>0</Anzahl> </ToComboStringMembers> <ToStringMembers> <Anzahl>0</Anzahl> </ToStringMembers> </Codegenerator> <Farben> <Hintergrund>pastell-gelb</Hintergrund> <Schrift>schwarz</Schrift> </Farben> <FirstGenerationDone>true</FirstGenerationDone> <History>@changed OLI 01.11.2011 - Added.$BR$@changed OLI 04.01.2012 - Extension by the field 'ChangeableByCustomer', 'CustomerValue', 'CustomerValueSet'. Renaming the field 'Value' to 'DefaultValue'.$BR$@changed OLI 17.01.2012 - Extension by the field 'OwnerPlugIn'.$BR$@changed OLI 10.05.2012 - Extension by the field 'Removable'.$BR$@changed OLI 05.12.2012 - Renamed 'Removable' to 'CreatedByCustomer'-</History> <InDevelopment>false</InDevelopment> <Kommentar>This table contains the configuration entries.</Kommentar> <NMRelation>false</NMRelation> <Name>ConfigurationEntry</Name> <Panels> <Anzahl>1</Anzahl> <Panel0> <PanelClass></PanelClass> <PanelNumber>0</PanelNumber> <TabMnemonic>1</TabMnemonic> <TabTitle>1.Daten</TabTitle> <TabToolTipText>Hier k&ouml;nnen Sie die Daten des Objekt warten</TabToolTipText> </Panel0> </Panels> <Spalten> <Anzahl>9</Anzahl> <Codegenerator> <ActiveInApplication>false</ActiveInApplication> <Codegeneratoroptionen></Codegeneratoroptionen> <Codeverzeichnis>configuration.persistence.db</Codeverzeichnis> <Codieren>false</Codieren> <DynamicCode>true</DynamicCode> <Inherited>false</Inherited> <Kontextname></Kontextname> <UniqueFormula></UniqueFormula> </Codegenerator> <Spalte0> <AlterInBatch>false</AlterInBatch> <Aufgehoben>false</Aufgehoben> <CanBeReferenced>true</CanBeReferenced> <Disabled>false</Disabled> <Domain>StringIdent</Domain> <Editordescriptor> <Editormember>false</Editormember> <LabelText></LabelText> <MaxCharacters>0</MaxCharacters> <Mnemonic></Mnemonic> <Position>0</Position> <ReferenceWeight>keine</ReferenceWeight> <RessourceIdentifier></RessourceIdentifier> <ToolTipText></ToolTipText> </Editordescriptor> <ForeignKey>false</ForeignKey> <Global>false</Global> <GlobalId>false</GlobalId> <HideReference>false</HideReference> <History>@changed OLI 01.11.2011 - Added.</History> <IndexSearchMember>false</IndexSearchMember> <Indexed>false</Indexed> <IndividualDefaultValue></IndividualDefaultValue> <Kodiert>false</Kodiert> <Kommentar>The key of the configuration entry.</Kommentar> <Konsistenz> <Writeablemember>false</Writeablemember> </Konsistenz> <LastModificationField>false</LastModificationField> <ListItemField>false</ListItemField> <Name>Key</Name> <NotNull>true</NotNull> <PanelNumber>0</PanelNumber> <Parameter></Parameter> <PrimaryKey>true</PrimaryKey> <RemovedStateField>false</RemovedStateField> <TechnicalField>false</TechnicalField> <Unique>false</Unique> </Spalte0> <Spalte1> <AlterInBatch>false</AlterInBatch> <Aufgehoben>false</Aufgehoben> <CanBeReferenced>false</CanBeReferenced> <Disabled>false</Disabled> <Domain>StringIdent</Domain> <Editordescriptor> <Editormember>false</Editormember> <LabelText></LabelText> <MaxCharacters>0</MaxCharacters> <Mnemonic></Mnemonic> <Position>0</Position> <ReferenceWeight>keine</ReferenceWeight> <RessourceIdentifier></RessourceIdentifier> <ToolTipText></ToolTipText> </Editordescriptor> <ForeignKey>false</ForeignKey> <Global>false</Global> <GlobalId>false</GlobalId> <HideReference>false</HideReference> <History>@changed OLI 04.01.2012 - Added.$BR$@changed OLI 05.01.2012 - Changed to enum container. The field represents now a level of changeability.</History> <IndexSearchMember>false</IndexSearchMember> <Indexed>false</Indexed> <IndividualDefaultValue></IndividualDefaultValue> <Kodiert>false</Kodiert> <Kommentar>This field contains an identifier, which marks the changeability of the configuration entry. Possible state are e. g. NONE (can not be changed), SUPPORT (could only be changed by the support) and CUSTOMER (changeable by customer and support).</Kommentar> <Konsistenz> <Writeablemember>false</Writeablemember> </Konsistenz> <LastModificationField>false</LastModificationField> <ListItemField>false</ListItemField> <Name>Changeability</Name> <NotNull>true</NotNull> <PanelNumber>0</PanelNumber> <Parameter></Parameter> <PrimaryKey>false</PrimaryKey> <RemovedStateField>false</RemovedStateField> <TechnicalField>false</TechnicalField> <Unique>false</Unique> </Spalte1> <Spalte2> <AlterInBatch>false</AlterInBatch> <Aufgehoben>false</Aufgehoben> <CanBeReferenced>false</CanBeReferenced> <Disabled>false</Disabled> <Domain>Boolean</Domain> <Editordescriptor> <Editormember>false</Editormember> <LabelText></LabelText> <MaxCharacters>0</MaxCharacters> <Mnemonic></Mnemonic> <Position>0</Position> <ReferenceWeight>keine</ReferenceWeight> <RessourceIdentifier></RessourceIdentifier> <ToolTipText></ToolTipText> </Editordescriptor> <ForeignKey>false</ForeignKey> <Global>false</Global> <GlobalId>false</GlobalId> <HideReference>false</HideReference> <History>@changed OLI 10.05.2012.- Added.$BR$@changed OLI 05.12.2012 - Renamed from 'Removable' to 'CreatedByCustomer' and changed in meaning.</History> <IndexSearchMember>false</IndexSearchMember> <Indexed>false</Indexed> <IndividualDefaultValue></IndividualDefaultValue> <Kodiert>false</Kodiert> <Kommentar>This flag has to be set for configuration entries which can not be deleted from the system. A set flag mean that the configuration is created by the customer.</Kommentar> <Konsistenz> <Writeablemember>false</Writeablemember> </Konsistenz> <LastModificationField>false</LastModificationField> <ListItemField>false</ListItemField> <Name>CreatedByCustomer</Name> <NotNull>false</NotNull> <PanelNumber>0</PanelNumber> <Parameter></Parameter> <PrimaryKey>false</PrimaryKey> <RemovedStateField>false</RemovedStateField> <TechnicalField>false</TechnicalField> <Unique>false</Unique> </Spalte2> <Spalte3> <AlterInBatch>false</AlterInBatch> <Aufgehoben>false</Aufgehoben> <CanBeReferenced>false</CanBeReferenced> <Disabled>false</Disabled> <Domain>Value</Domain> <Editordescriptor> <Editormember>false</Editormember> <LabelText></LabelText> <MaxCharacters>0</MaxCharacters> <Mnemonic></Mnemonic> <Position>0</Position> <ReferenceWeight>keine</ReferenceWeight> <RessourceIdentifier></RessourceIdentifier> <ToolTipText></ToolTipText> </Editordescriptor> <ForeignKey>false</ForeignKey> <Global>false</Global> <GlobalId>false</GlobalId> <HideReference>false</HideReference> <History>@changed OLI 04.01.2012 - Added.</History> <IndexSearchMember>false</IndexSearchMember> <Indexed>false</Indexed> <IndividualDefaultValue></IndividualDefaultValue> <Kodiert>false</Kodiert> <Kommentar>A customer value for the configuration. This value should only be set, if the flag 'ChangeableByCustomer' is set too.$BR$If the value is set, it will be preferred over the default value. This should only be done, if the flag 'CustomerValueSet' is raised also. This mechanism is vital to allow setting null values by the customer.</Kommentar> <Konsistenz> <Writeablemember>false</Writeablemember> </Konsistenz> <LastModificationField>false</LastModificationField> <ListItemField>false</ListItemField> <Name>CustomerValue</Name> <NotNull>false</NotNull> <PanelNumber>0</PanelNumber> <Parameter></Parameter> <PrimaryKey>false</PrimaryKey> <RemovedStateField>false</RemovedStateField> <TechnicalField>false</TechnicalField> <Unique>false</Unique> </Spalte3> <Spalte4> <AlterInBatch>false</AlterInBatch> <Aufgehoben>false</Aufgehoben> <CanBeReferenced>false</CanBeReferenced> <Disabled>false</Disabled> <Domain>Boolean</Domain> <Editordescriptor> <Editormember>false</Editormember> <LabelText></LabelText> <MaxCharacters>0</MaxCharacters> <Mnemonic></Mnemonic> <Position>0</Position> <ReferenceWeight>keine</ReferenceWeight> <RessourceIdentifier></RessourceIdentifier> <ToolTipText></ToolTipText> </Editordescriptor> <ForeignKey>false</ForeignKey> <Global>false</Global> <GlobalId>false</GlobalId> <HideReference>false</HideReference> <History>@changed OLI 04.01.2012 - Added.</History> <IndexSearchMember>false</IndexSearchMember> <Indexed>false</Indexed> <IndividualDefaultValue></IndividualDefaultValue> <Kodiert>false</Kodiert> <Kommentar>Set this flag to signal, that the customer value is to use.</Kommentar> <Konsistenz> <Writeablemember>false</Writeablemember> </Konsistenz> <LastModificationField>false</LastModificationField> <ListItemField>false</ListItemField> <Name>CustomerValueSet</Name> <NotNull>true</NotNull> <PanelNumber>0</PanelNumber> <Parameter></Parameter> <PrimaryKey>false</PrimaryKey> <RemovedStateField>false</RemovedStateField> <TechnicalField>false</TechnicalField> <Unique>false</Unique> </Spalte4> <Spalte5> <AlterInBatch>false</AlterInBatch> <Aufgehoben>false</Aufgehoben> <CanBeReferenced>false</CanBeReferenced> <Disabled>false</Disabled> <Domain>Value</Domain> <Editordescriptor> <Editormember>false</Editormember> <LabelText></LabelText> <MaxCharacters>0</MaxCharacters> <Mnemonic></Mnemonic> <Position>0</Position> <ReferenceWeight>keine</ReferenceWeight> <RessourceIdentifier></RessourceIdentifier> <ToolTipText></ToolTipText> </Editordescriptor> <ForeignKey>false</ForeignKey> <Global>false</Global> <GlobalId>false</GlobalId> <HideReference>false</HideReference> <History>@changed OLI 01.11.2011 - Added.$BR$@changed OLI 04.01.2012 - Renamed from 'Value' to 'DefaultValue'.</History> <IndexSearchMember>false</IndexSearchMember> <Indexed>false</Indexed> <IndividualDefaultValue></IndividualDefaultValue> <Kodiert>false</Kodiert> <Kommentar>The default value of the configuration entry in a string format. It must be possible to restore the configuration entries value from this string.$BR$This value will be delivered by the plug-in developer.</Kommentar> <Konsistenz> <Writeablemember>false</Writeablemember> </Konsistenz> <LastModificationField>false</LastModificationField> <ListItemField>false</ListItemField> <Name>DefaultValue</Name> <NotNull>false</NotNull> <PanelNumber>0</PanelNumber> <Parameter></Parameter> <PrimaryKey>false</PrimaryKey> <RemovedStateField>false</RemovedStateField> <TechnicalField>false</TechnicalField> <Unique>false</Unique> </Spalte5> <Spalte6> <AlterInBatch>false</AlterInBatch> <Aufgehoben>false</Aufgehoben> <CanBeReferenced>false</CanBeReferenced> <Disabled>false</Disabled> <Domain>Description</Domain> <Editordescriptor> <Editormember>false</Editormember> <LabelText></LabelText> <MaxCharacters>0</MaxCharacters> <Mnemonic></Mnemonic> <Position>0</Position> <ReferenceWeight>keine</ReferenceWeight> <RessourceIdentifier></RessourceIdentifier> <ToolTipText></ToolTipText> </Editordescriptor> <ForeignKey>false</ForeignKey> <Global>false</Global> <GlobalId>false</GlobalId> <HideReference>false</HideReference> <History>@changed OLI 01.11.2011 - Added.</History> <IndexSearchMember>false</IndexSearchMember> <Indexed>false</Indexed> <IndividualDefaultValue></IndividualDefaultValue> <Kodiert>false</Kodiert> <Kommentar>A short description of the configuration entry and its value.</Kommentar> <Konsistenz> <Writeablemember>false</Writeablemember> </Konsistenz> <LastModificationField>false</LastModificationField> <ListItemField>false</ListItemField> <Name>Description</Name> <NotNull>true</NotNull> <PanelNumber>0</PanelNumber> <Parameter></Parameter> <PrimaryKey>false</PrimaryKey> <RemovedStateField>false</RemovedStateField> <TechnicalField>false</TechnicalField> <Unique>false</Unique> </Spalte6> <Spalte7> <AlterInBatch>false</AlterInBatch> <Aufgehoben>false</Aufgehoben> <CanBeReferenced>false</CanBeReferenced> <Disabled>false</Disabled> <Domain>ConfigurationType</Domain> <Editordescriptor> <Editormember>false</Editormember> <LabelText></LabelText> <MaxCharacters>0</MaxCharacters> <Mnemonic></Mnemonic> <Position>0</Position> <ReferenceWeight>keine</ReferenceWeight> <RessourceIdentifier></RessourceIdentifier> <ToolTipText></ToolTipText> </Editordescriptor> <ForeignKey>false</ForeignKey> <Global>false</Global> <GlobalId>false</GlobalId> <HideReference>false</HideReference> <History>@changed OLI 01.11.2011 - Added.</History> <IndexSearchMember>false</IndexSearchMember> <Indexed>false</Indexed> <IndividualDefaultValue></IndividualDefaultValue> <Kodiert>false</Kodiert> <Kommentar>The type to restore the value of the configuration entry.</Kommentar> <Konsistenz> <Writeablemember>false</Writeablemember> </Konsistenz> <LastModificationField>false</LastModificationField> <ListItemField>false</ListItemField> <Name>Type</Name> <NotNull>true</NotNull> <PanelNumber>0</PanelNumber> <Parameter></Parameter> <PrimaryKey>false</PrimaryKey> <RemovedStateField>false</RemovedStateField> <TechnicalField>false</TechnicalField> <Unique>false</Unique> </Spalte7> <Spalte8> <AlterInBatch>false</AlterInBatch> <Aufgehoben>false</Aufgehoben> <CanBeReferenced>false</CanBeReferenced> <Disabled>false</Disabled> <Domain>StringIdent</Domain> <Editordescriptor> <Editormember>false</Editormember> <LabelText></LabelText> <MaxCharacters>0</MaxCharacters> <Mnemonic></Mnemonic> <Position>0</Position> <ReferenceWeight>keine</ReferenceWeight> <RessourceIdentifier></RessourceIdentifier> <ToolTipText></ToolTipText> </Editordescriptor> <ForeignKey>true</ForeignKey> <Global>false</Global> <GlobalId>false</GlobalId> <HideReference>false</HideReference> <History>@changed OLI 17.01.2012 - Added.$BR$@changed OLI 18.01.2012 - Type changed to varchar.</History> <IndexSearchMember>false</IndexSearchMember> <Indexed>false</Indexed> <IndividualDefaultValue></IndividualDefaultValue> <Kodiert>false</Kodiert> <Kommentar>This field may reference a plug-in entry, if the configuration entry is owned by the plug-in.</Kommentar> <Konsistenz> <Writeablemember>false</Writeablemember> </Konsistenz> <LastModificationField>false</LastModificationField> <ListItemField>false</ListItemField> <Name>OwnerPlugIn</Name> <NotNull>false</NotNull> <PanelNumber>0</PanelNumber> <Parameter></Parameter> <PrimaryKey>false</PrimaryKey> <Referenz> <Direction0>RIGHT</Direction0> <Direction1>LEFT</Direction1> <Offset0>25</Offset0> <Offset1>25</Offset1> <Spalte>Identifier</Spalte> <Tabelle>PlugInEntry</Tabelle> <Views> <Anzahl>1</Anzahl> <View0> <Direction0>RIGHT</Direction0> <Direction1>LEFT</Direction1> <Name>Main</Name> <Offset0>25</Offset0> <Offset1>25</Offset1> <Points> <Anzahl>0</Anzahl> </Points> </View0> </Views> </Referenz> <RemovedStateField>false</RemovedStateField> <TechnicalField>false</TechnicalField> <Unique>false</Unique> </Spalte8> </Spalten> <Stereotype> <Anzahl>1</Anzahl> </Stereotype> <Stereotype0>Configuration</Stereotype0> <Views> <Anzahl>1</Anzahl> <View0> <Name>Main</Name> <X>75</X> <Y>125</Y> </View0> </Views> </Tabelle0> <Tabelle1> <Aufgehoben>false</Aufgehoben> <Codegenerator> <AuswahlMembers> <Anzahl>0</Anzahl> </AuswahlMembers> <CompareMembers> <Anzahl>0</Anzahl> </CompareMembers> <Equalsmembers> <Anzahl>0</Anzahl> </Equalsmembers> <HashCodeMembers> <Anzahl>0</Anzahl> </HashCodeMembers> <NReferenzen> <Anzahl>0</Anzahl> </NReferenzen> <OrderMembers> <Anzahl>0</Anzahl> </OrderMembers> <ToComboStringMembers> <Anzahl>0</Anzahl> </ToComboStringMembers> <ToStringMembers> <Anzahl>0</Anzahl> </ToStringMembers> </Codegenerator> <Farben> <Hintergrund>pastell-blau</Hintergrund> <Schrift>schwarz</Schrift> </Farben> <FirstGenerationDone>true</FirstGenerationDone> <History>@changed OLI 08.11.2011 - Added.</History> <InDevelopment>false</InDevelopment> <Kommentar>This table contains multilingual resources for usage by gui and core routines.</Kommentar> <NMRelation>false</NMRelation> <Name>LocalizationResource</Name> <Panels> <Anzahl>1</Anzahl> <Panel0> <PanelClass></PanelClass> <PanelNumber>0</PanelNumber> <TabMnemonic>1</TabMnemonic> <TabTitle>1.Daten</TabTitle> <TabToolTipText>Hier k&ouml;nnen Sie die Daten des Objekt warten</TabToolTipText> </Panel0> </Panels> <Spalten> <Anzahl>3</Anzahl> <Codegenerator> <ActiveInApplication>false</ActiveInApplication> <Codegeneratoroptionen></Codegeneratoroptionen> <Codeverzeichnis>resources.persistence.db</Codeverzeichnis> <Codieren>false</Codieren> <DynamicCode>true</DynamicCode> <Inherited>false</Inherited> <Kontextname></Kontextname> <UniqueFormula></UniqueFormula> </Codegenerator> <Spalte0> <AlterInBatch>false</AlterInBatch> <Aufgehoben>false</Aufgehoben> <CanBeReferenced>true</CanBeReferenced> <Disabled>false</Disabled> <Domain>StringIdent</Domain> <Editordescriptor> <Editormember>false</Editormember> <LabelText></LabelText> <MaxCharacters>0</MaxCharacters> <Mnemonic></Mnemonic> <Position>0</Position> <ReferenceWeight>keine</ReferenceWeight> <RessourceIdentifier></RessourceIdentifier> <ToolTipText></ToolTipText> </Editordescriptor> <ForeignKey>false</ForeignKey> <Global>false</Global> <GlobalId>false</GlobalId> <HideReference>false</HideReference> <History>@changed OLI 08.11.2011 - Added.</History> <IndexSearchMember>false</IndexSearchMember> <Indexed>false</Indexed> <IndividualDefaultValue></IndividualDefaultValue> <Kodiert>false</Kodiert> <Kommentar>The key and name of the resource. It has to be unique in combination with the language token.</Kommentar> <Konsistenz> <Writeablemember>false</Writeablemember> </Konsistenz> <LastModificationField>false</LastModificationField> <ListItemField>false</ListItemField> <Name>Key</Name> <NotNull>false</NotNull> <PanelNumber>0</PanelNumber> <Parameter></Parameter> <PrimaryKey>true</PrimaryKey> <RemovedStateField>false</RemovedStateField> <TechnicalField>false</TechnicalField> <Unique>false</Unique> </Spalte0> <Spalte1> <AlterInBatch>false</AlterInBatch> <Aufgehoben>false</Aufgehoben> <CanBeReferenced>true</CanBeReferenced> <Disabled>false</Disabled> <Domain>LanguageToken</Domain> <Editordescriptor> <Editormember>false</Editormember> <LabelText></LabelText> <MaxCharacters>0</MaxCharacters> <Mnemonic></Mnemonic> <Position>0</Position> <ReferenceWeight>keine</ReferenceWeight> <RessourceIdentifier></RessourceIdentifier> <ToolTipText></ToolTipText> </Editordescriptor> <ForeignKey>false</ForeignKey> <Global>false</Global> <GlobalId>false</GlobalId> <HideReference>false</HideReference> <History>@changed OLI 08.11.2011 - Added.</History> <IndexSearchMember>false</IndexSearchMember> <Indexed>false</Indexed> <IndividualDefaultValue></IndividualDefaultValue> <Kodiert>false</Kodiert> <Kommentar>The token of the java language locale, which describes the language of the value. It has to be unique in combination with the key.</Kommentar> <Konsistenz> <Writeablemember>false</Writeablemember> </Konsistenz> <LastModificationField>false</LastModificationField> <ListItemField>false</ListItemField> <Name>LanguageToken</Name> <NotNull>false</NotNull> <PanelNumber>0</PanelNumber> <Parameter></Parameter> <PrimaryKey>true</PrimaryKey> <RemovedStateField>false</RemovedStateField> <TechnicalField>false</TechnicalField> <Unique>false</Unique> </Spalte1> <Spalte2> <AlterInBatch>false</AlterInBatch> <Aufgehoben>false</Aufgehoben> <CanBeReferenced>false</CanBeReferenced> <Disabled>false</Disabled> <Domain>LocalizationResourceValue</Domain> <Editordescriptor> <Editormember>false</Editormember> <LabelText></LabelText> <MaxCharacters>0</MaxCharacters> <Mnemonic></Mnemonic> <Position>0</Position> <ReferenceWeight>keine</ReferenceWeight> <RessourceIdentifier></RessourceIdentifier> <ToolTipText></ToolTipText> </Editordescriptor> <ForeignKey>false</ForeignKey> <Global>false</Global> <GlobalId>false</GlobalId> <HideReference>false</HideReference> <History>@changed OLI 08.11.2011 - Added.</History> <IndexSearchMember>false</IndexSearchMember> <Indexed>false</Indexed> <IndividualDefaultValue></IndividualDefaultValue> <Kodiert>false</Kodiert> <Kommentar>A value for the resource in the specified language.</Kommentar> <Konsistenz> <Writeablemember>false</Writeablemember> </Konsistenz> <LastModificationField>false</LastModificationField> <ListItemField>false</ListItemField> <Name>Value</Name> <NotNull>true</NotNull> <PanelNumber>0</PanelNumber> <Parameter></Parameter> <PrimaryKey>false</PrimaryKey> <RemovedStateField>false</RemovedStateField> <TechnicalField>false</TechnicalField> <Unique>false</Unique> </Spalte2> </Spalten> <Stereotype> <Anzahl>1</Anzahl> </Stereotype> <Stereotype0>Resource</Stereotype0> <Views> <Anzahl>1</Anzahl> <View0> <Name>Main</Name> <X>675</X> <Y>375</Y> </View0> </Views> </Tabelle1> <Tabelle10> <Aufgehoben>false</Aufgehoben> <Codegenerator> <AuswahlMembers> <Anzahl>0</Anzahl> </AuswahlMembers> <CompareMembers> <Anzahl>0</Anzahl> </CompareMembers> <Equalsmembers> <Anzahl>0</Anzahl> </Equalsmembers> <HashCodeMembers> <Anzahl>0</Anzahl> </HashCodeMembers> <NReferenzen> <Anzahl>0</Anzahl> </NReferenzen> <OrderMembers> <Anzahl>0</Anzahl> </OrderMembers> <ToComboStringMembers> <Anzahl>0</Anzahl> </ToComboStringMembers> <ToStringMembers> <Anzahl>0</Anzahl> </ToStringMembers> </Codegenerator> <Farben> <Hintergrund>pastell-blau</Hintergrund> <Schrift>schwarz</Schrift> </Farben> <FirstGenerationDone>false</FirstGenerationDone> <History></History> <InDevelopment>false</InDevelopment> <Kommentar>The table contains real device engine entries</Kommentar> <NMRelation>false</NMRelation> <Name>DeviceEngine</Name> <Panels> <Anzahl>1</Anzahl> <Panel0> <PanelClass></PanelClass> <PanelNumber>0</PanelNumber> <TabMnemonic>1</TabMnemonic> <TabTitle>1.Daten</TabTitle> <TabToolTipText>Hier k&ouml;nnen Sie die Daten des Objekt warten</TabToolTipText> </Panel0> </Panels> <Spalten> <Anzahl>2</Anzahl> <Codegenerator> <ActiveInApplication>false</ActiveInApplication> <Codegeneratoroptionen></Codegeneratoroptionen> <Codeverzeichnis>.</Codeverzeichnis> <Codieren>true</Codieren> <DynamicCode>true</DynamicCode> <Inherited>false</Inherited> <Kontextname></Kontextname> <UniqueFormula></UniqueFormula> </Codegenerator> <Spalte0> <AlterInBatch>false</AlterInBatch> <Aufgehoben>false</Aufgehoben> <CanBeReferenced>true</CanBeReferenced> <Disabled>false</Disabled> <Domain>NumericIdent</Domain> <Editordescriptor> <Editormember>false</Editormember> <LabelText></LabelText> <MaxCharacters>0</MaxCharacters> <Mnemonic></Mnemonic> <Position>0</Position> <ReferenceWeight>keine</ReferenceWeight> <RessourceIdentifier></RessourceIdentifier> <ToolTipText></ToolTipText> </Editordescriptor> <ForeignKey>false</ForeignKey> <Global>false</Global> <GlobalId>false</GlobalId> <HideReference>false</HideReference> <History></History> <IndexSearchMember>false</IndexSearchMember> <Indexed>false</Indexed> <IndividualDefaultValue></IndividualDefaultValue> <Kodiert>false</Kodiert> <Kommentar></Kommentar> <Konsistenz> <Writeablemember>false</Writeablemember> </Konsistenz> <LastModificationField>false</LastModificationField> <ListItemField>false</ListItemField> <Name>Id</Name> <NotNull>true</NotNull> <PanelNumber>0</PanelNumber> <Parameter></Parameter> <PrimaryKey>true</PrimaryKey> <RemovedStateField>false</RemovedStateField> <TechnicalField>false</TechnicalField> <Unique>false</Unique> </Spalte0> <Spalte1> <AlterInBatch>false</AlterInBatch> <Aufgehoben>false</Aufgehoben> <CanBeReferenced>false</CanBeReferenced> <Disabled>false</Disabled> <Domain>StringIdent</Domain> <Editordescriptor> <Editormember>false</Editormember> <LabelText></LabelText> <MaxCharacters>0</MaxCharacters> <Mnemonic></Mnemonic> <Position>0</Position> <ReferenceWeight>keine</ReferenceWeight> <RessourceIdentifier></RessourceIdentifier> <ToolTipText></ToolTipText> </Editordescriptor> <ForeignKey>false</ForeignKey> <Global>false</Global> <GlobalId>false</GlobalId> <HideReference>false</HideReference> <History></History> <IndexSearchMember>false</IndexSearchMember> <Indexed>true</Indexed> <IndividualDefaultValue></IndividualDefaultValue> <Kodiert>false</Kodiert> <Kommentar></Kommentar> <Konsistenz> <Writeablemember>false</Writeablemember> </Konsistenz> <LastModificationField>false</LastModificationField> <ListItemField>false</ListItemField> <Name>Name</Name> <NotNull>true</NotNull> <PanelNumber>0</PanelNumber> <Parameter></Parameter> <PrimaryKey>false</PrimaryKey> <RemovedStateField>false</RemovedStateField> <TechnicalField>false</TechnicalField> <Unique>true</Unique> </Spalte1> </Spalten> <Stereotype> <Anzahl>1</Anzahl> </Stereotype> <Stereotype0>ZoneManager</Stereotype0> <Views> <Anzahl>1</Anzahl> <View0> <Name>Main</Name> <X>75</X> <Y>1100</Y> </View0> </Views> </Tabelle10> <Tabelle11> <Aufgehoben>false</Aufgehoben> <Codegenerator> <AuswahlMembers> <Anzahl>0</Anzahl> </AuswahlMembers> <CompareMembers> <Anzahl>0</Anzahl> </CompareMembers> <Equalsmembers> <Anzahl>0</Anzahl> </Equalsmembers> <HashCodeMembers> <Anzahl>0</Anzahl> </HashCodeMembers> <NReferenzen> <Anzahl>0</Anzahl> </NReferenzen> <OrderMembers> <Anzahl>0</Anzahl> </OrderMembers> <ToComboStringMembers> <Anzahl>0</Anzahl> </ToComboStringMembers> <ToStringMembers> <Anzahl>0</Anzahl> </ToStringMembers> </Codegenerator> <Farben> <Hintergrund>pastell-blau</Hintergrund> <Schrift>schwarz</Schrift> </Farben> <FirstGenerationDone>false</FirstGenerationDone> <History></History> <InDevelopment>false</InDevelopment> <Kommentar>The table contains real Zone entries</Kommentar> <NMRelation>false</NMRelation> <Name>ZoneMapping</Name> <Panels> <Anzahl>1</Anzahl> <Panel0> <PanelClass></PanelClass> <PanelNumber>0</PanelNumber> <TabMnemonic>1</TabMnemonic> <TabTitle>1.Daten</TabTitle> <TabToolTipText>Hier k&ouml;nnen Sie die Daten des Objekt warten</TabToolTipText> </Panel0> </Panels> <Spalten> <Anzahl>4</Anzahl> <Codegenerator> <ActiveInApplication>false</ActiveInApplication> <Codegeneratoroptionen></Codegeneratoroptionen> <Codeverzeichnis>.</Codeverzeichnis> <Codieren>true</Codieren> <DynamicCode>true</DynamicCode> <Inherited>false</Inherited> <Kontextname></Kontextname> <UniqueFormula></UniqueFormula> </Codegenerator> <Spalte0> <AlterInBatch>false</AlterInBatch> <Aufgehoben>false</Aufgehoben> <CanBeReferenced>true</CanBeReferenced> <Disabled>false</Disabled> <Domain>NumericIdent</Domain> <Editordescriptor> <Editormember>false</Editormember> <LabelText></LabelText> <MaxCharacters>0</MaxCharacters> <Mnemonic></Mnemonic> <Position>0</Position> <ReferenceWeight>keine</ReferenceWeight> <RessourceIdentifier></RessourceIdentifier> <ToolTipText></ToolTipText> </Editordescriptor> <ForeignKey>false</ForeignKey> <Global>false</Global> <GlobalId>false</GlobalId> <HideReference>false</HideReference> <History></History> <IndexSearchMember>false</IndexSearchMember> <Indexed>false</Indexed> <IndividualDefaultValue></IndividualDefaultValue> <Kodiert>false</Kodiert> <Kommentar></Kommentar> <Konsistenz> <Writeablemember>false</Writeablemember> </Konsistenz> <LastModificationField>false</LastModificationField> <ListItemField>false</ListItemField> <Name>Id</Name> <NotNull>true</NotNull> <PanelNumber>0</PanelNumber> <Parameter></Parameter> <PrimaryKey>true</PrimaryKey> <RemovedStateField>false</RemovedStateField> <TechnicalField>false</TechnicalField> <Unique>false</Unique> </Spalte0> <Spalte1> <AlterInBatch>false</AlterInBatch> <Aufgehoben>false</Aufgehoben> <CanBeReferenced>false</CanBeReferenced> <Disabled>false</Disabled> <Domain>StringIdent</Domain> <Editordescriptor> <Editormember>false</Editormember> <LabelText></LabelText> <MaxCharacters>0</MaxCharacters> <Mnemonic></Mnemonic> <Position>0</Position> <ReferenceWeight>keine</ReferenceWeight> <RessourceIdentifier></RessourceIdentifier> <ToolTipText></ToolTipText> </Editordescriptor> <ForeignKey>false</ForeignKey> <Global>false</Global> <GlobalId>false</GlobalId> <HideReference>false</HideReference> <History></History> <IndexSearchMember>false</IndexSearchMember> <Indexed>true</Indexed> <IndividualDefaultValue></IndividualDefaultValue> <Kodiert>false</Kodiert> <Kommentar></Kommentar> <Konsistenz> <Writeablemember>false</Writeablemember> </Konsistenz> <LastModificationField>false</LastModificationField> <ListItemField>false</ListItemField> <Name>RealZoneIdentifier</Name> <NotNull>true</NotNull> <PanelNumber>0</PanelNumber> <Parameter></Parameter> <PrimaryKey>false</PrimaryKey> <RemovedStateField>false</RemovedStateField> <TechnicalField>false</TechnicalField> <Unique>true</Unique> </Spalte1> <Spalte2> <AlterInBatch>false</AlterInBatch> <Aufgehoben>false</Aufgehoben> <CanBeReferenced>false</CanBeReferenced> <Disabled>false</Disabled> <Domain>NumericIdent</Domain> <Editordescriptor> <Editormember>false</Editormember> <LabelText></LabelText> <MaxCharacters>0</MaxCharacters> <Mnemonic></Mnemonic> <Position>0</Position> <ReferenceWeight>keine</ReferenceWeight> <RessourceIdentifier></RessourceIdentifier> <ToolTipText></ToolTipText> </Editordescriptor> <ForeignKey>true</ForeignKey> <Global>false</Global> <GlobalId>false</GlobalId> <HideReference>false</HideReference> <History></History> <IndexSearchMember>false</IndexSearchMember> <Indexed>false</Indexed> <IndividualDefaultValue></IndividualDefaultValue> <Kodiert>false</Kodiert> <Kommentar></Kommentar> <Konsistenz> <Writeablemember>false</Writeablemember> </Konsistenz> <LastModificationField>false</LastModificationField> <ListItemField>false</ListItemField> <Name>DeviceEngine</Name> <NotNull>true</NotNull> <PanelNumber>0</PanelNumber> <Parameter></Parameter> <PrimaryKey>false</PrimaryKey> <Referenz> <Direction0>DOWN</Direction0> <Direction1>UP</Direction1> <Offset0>25</Offset0> <Offset1>25</Offset1> <Spalte>Id</Spalte> <Tabelle>DeviceEngine</Tabelle> <Views> <Anzahl>1</Anzahl> <View0> <Direction0>DOWN</Direction0> <Direction1>UP</Direction1> <Name>Main</Name> <Offset0>25</Offset0> <Offset1>25</Offset1> <Points> <Anzahl>0</Anzahl> </Points> </View0> </Views> </Referenz> <RemovedStateField>false</RemovedStateField> <TechnicalField>false</TechnicalField> <Unique>false</Unique> </Spalte2> <Spalte3> <AlterInBatch>false</AlterInBatch> <Aufgehoben>false</Aufgehoben> <CanBeReferenced>false</CanBeReferenced> <Disabled>false</Disabled> <Domain>NumericIdent</Domain> <Editordescriptor> <Editormember>false</Editormember> <LabelText></LabelText> <MaxCharacters>0</MaxCharacters> <Mnemonic></Mnemonic> <Position>0</Position> <ReferenceWeight>keine</ReferenceWeight> <RessourceIdentifier></RessourceIdentifier> <ToolTipText></ToolTipText> </Editordescriptor> <ForeignKey>true</ForeignKey> <Global>false</Global> <GlobalId>false</GlobalId> <HideReference>false</HideReference> <History></History> <IndexSearchMember>false</IndexSearchMember> <Indexed>false</Indexed> <IndividualDefaultValue></IndividualDefaultValue> <Kodiert>false</Kodiert> <Kommentar></Kommentar> <Konsistenz> <Writeablemember>false</Writeablemember> </Konsistenz> <LastModificationField>false</LastModificationField> <ListItemField>false</ListItemField> <Name>Zone</Name> <NotNull>true</NotNull> <PanelNumber>0</PanelNumber> <Parameter></Parameter> <PrimaryKey>false</PrimaryKey> <Referenz> <Direction0>UP</Direction0> <Direction1>DOWN</Direction1> <Offset0>25</Offset0> <Offset1>25</Offset1> <Spalte>Id</Spalte> <Tabelle>Zone</Tabelle> <Views> <Anzahl>1</Anzahl> <View0> <Direction0>UP</Direction0> <Direction1>DOWN</Direction1> <Name>Main</Name> <Offset0>25</Offset0> <Offset1>25</Offset1> <Points> <Anzahl>0</Anzahl> </Points> </View0> </Views> </Referenz> <RemovedStateField>false</RemovedStateField> <TechnicalField>false</TechnicalField> <Unique>false</Unique> </Spalte3> </Spalten> <Stereotype> <Anzahl>1</Anzahl> </Stereotype> <Stereotype0>ZoneManager</Stereotype0> <Views> <Anzahl>1</Anzahl> <View0> <Name>Main</Name> <X>75</X> <Y>850</Y> </View0> </Views> </Tabelle11> <Tabelle12> <Aufgehoben>false</Aufgehoben> <Codegenerator> <AuswahlMembers> <Anzahl>0</Anzahl> </AuswahlMembers> <CompareMembers> <Anzahl>0</Anzahl> </CompareMembers> <Equalsmembers> <Anzahl>0</Anzahl> </Equalsmembers> <HashCodeMembers> <Anzahl>0</Anzahl> </HashCodeMembers> <NReferenzen> <Anzahl>0</Anzahl> </NReferenzen> <OrderMembers> <Anzahl>0</Anzahl> </OrderMembers> <ToComboStringMembers> <Anzahl>0</Anzahl> </ToComboStringMembers> <ToStringMembers> <Anzahl>0</Anzahl> </ToStringMembers> </Codegenerator> <Farben> <Hintergrund>braun</Hintergrund> <Schrift>schwarz</Schrift> </Farben> <FirstGenerationDone>false</FirstGenerationDone> <History></History> <InDevelopment>false</InDevelopment> <Kommentar></Kommentar> <NMRelation>false</NMRelation> <Name>LinkedDeviceEntry</Name> <Panels> <Anzahl>1</Anzahl> <Panel0> <PanelClass></PanelClass> <PanelNumber>0</PanelNumber> <TabMnemonic>1</TabMnemonic> <TabTitle>1.Daten</TabTitle> <TabToolTipText>Hier k&ouml;nnen Sie die Daten des Objekt warten</TabToolTipText> </Panel0> </Panels> <Spalten> <Anzahl>3</Anzahl> <Codegenerator> <ActiveInApplication>false</ActiveInApplication> <Codegeneratoroptionen></Codegeneratoroptionen> <Codeverzeichnis>.</Codeverzeichnis> <Codieren>true</Codieren> <DynamicCode>true</DynamicCode> <Inherited>false</Inherited> <Kontextname></Kontextname> <UniqueFormula></UniqueFormula> </Codegenerator> <Spalte0> <AlterInBatch>false</AlterInBatch> <Aufgehoben>false</Aufgehoben> <CanBeReferenced>true</CanBeReferenced> <Disabled>false</Disabled> <Domain>NumericIdent</Domain> <Editordescriptor> <Editormember>false</Editormember> <LabelText></LabelText> <MaxCharacters>0</MaxCharacters> <Mnemonic></Mnemonic> <Position>0</Position> <ReferenceWeight>keine</ReferenceWeight> <RessourceIdentifier></RessourceIdentifier> <ToolTipText></ToolTipText> </Editordescriptor> <ForeignKey>false</ForeignKey> <Global>false</Global> <GlobalId>false</GlobalId> <HideReference>false</HideReference> <History></History> <IndexSearchMember>false</IndexSearchMember> <Indexed>false</Indexed> <IndividualDefaultValue></IndividualDefaultValue> <Kodiert>false</Kodiert> <Kommentar></Kommentar> <Konsistenz> <Writeablemember>false</Writeablemember> </Konsistenz> <LastModificationField>false</LastModificationField> <ListItemField>false</ListItemField> <Name>Id</Name> <NotNull>true</NotNull> <PanelNumber>0</PanelNumber> <Parameter></Parameter> <PrimaryKey>true</PrimaryKey> <RemovedStateField>false</RemovedStateField> <TechnicalField>false</TechnicalField> <Unique>false</Unique> </Spalte0> <Spalte1> <AlterInBatch>false</AlterInBatch> <Aufgehoben>false</Aufgehoben> <CanBeReferenced>false</CanBeReferenced> <Disabled>false</Disabled> <Domain>StringIdent</Domain> <Editordescriptor> <Editormember>false</Editormember> <LabelText></LabelText> <MaxCharacters>0</MaxCharacters> <Mnemonic></Mnemonic> <Position>0</Position> <ReferenceWeight>keine</ReferenceWeight> <RessourceIdentifier></RessourceIdentifier> <ToolTipText></ToolTipText> </Editordescriptor> <ForeignKey>false</ForeignKey> <Global>false</Global> <GlobalId>false</GlobalId> <HideReference>false</HideReference> <History></History> <IndexSearchMember>false</IndexSearchMember> <Indexed>true</Indexed> <IndividualDefaultValue></IndividualDefaultValue> <Kodiert>false</Kodiert> <Kommentar></Kommentar> <Konsistenz> <Writeablemember>false</Writeablemember> </Konsistenz> <LastModificationField>false</LastModificationField> <ListItemField>false</ListItemField> <Name>ChildDeviceId</Name> <NotNull>true</NotNull> <PanelNumber>0</PanelNumber> <Parameter></Parameter> <PrimaryKey>false</PrimaryKey> <RemovedStateField>false</RemovedStateField> <TechnicalField>false</TechnicalField> <Unique>true</Unique> </Spalte1> <Spalte2> <AlterInBatch>false</AlterInBatch> <Aufgehoben>false</Aufgehoben> <CanBeReferenced>false</CanBeReferenced> <Disabled>false</Disabled> <Domain>StringIdent</Domain> <Editordescriptor> <Editormember>false</Editormember> <LabelText></LabelText> <MaxCharacters>0</MaxCharacters> <Mnemonic></Mnemonic> <Position>0</Position> <ReferenceWeight>keine</ReferenceWeight> <RessourceIdentifier></RessourceIdentifier> <ToolTipText></ToolTipText> </Editordescriptor> <ForeignKey>false</ForeignKey> <Global>false</Global> <GlobalId>false</GlobalId> <HideReference>false</HideReference> <History></History> <IndexSearchMember>false</IndexSearchMember> <Indexed>false</Indexed> <IndividualDefaultValue></IndividualDefaultValue> <Kodiert>false</Kodiert> <Kommentar></Kommentar> <Konsistenz> <Writeablemember>false</Writeablemember> </Konsistenz> <LastModificationField>false</LastModificationField> <ListItemField>false</ListItemField> <Name>ParentDeviceId</Name> <NotNull>true</NotNull> <PanelNumber>0</PanelNumber> <Parameter></Parameter> <PrimaryKey>false</PrimaryKey> <RemovedStateField>false</RemovedStateField> <TechnicalField>false</TechnicalField> <Unique>false</Unique> </Spalte2> </Spalten> <Stereotype> <Anzahl>1</Anzahl> </Stereotype> <Stereotype0>DeviceManager</Stereotype0> <Views> <Anzahl>1</Anzahl> <View0> <Name>Main</Name> <X>425</X> <Y>1300</Y> </View0> </Views> </Tabelle12> <Tabelle13> <Aufgehoben>false</Aufgehoben> <Codegenerator> <AuswahlMembers> <Anzahl>0</Anzahl> </AuswahlMembers> <CompareMembers> <Anzahl>0</Anzahl> </CompareMembers> <Equalsmembers> <Anzahl>0</Anzahl> </Equalsmembers> <HashCodeMembers> <Anzahl>0</Anzahl> </HashCodeMembers> <NReferenzen> <Anzahl>0</Anzahl> </NReferenzen> <OrderMembers> <Anzahl>0</Anzahl> </OrderMembers> <ToComboStringMembers> <Anzahl>0</Anzahl> </ToComboStringMembers> <ToStringMembers> <Anzahl>0</Anzahl> </ToStringMembers> </Codegenerator> <Farben> <Hintergrund>pastell-blau</Hintergrund> <Schrift>schwarz</Schrift> </Farben> <FirstGenerationDone>false</FirstGenerationDone> <History></History> <InDevelopment>false</InDevelopment> <Kommentar></Kommentar> <NMRelation>false</NMRelation> <Name>ZoneTransition</Name> <Panels> <Anzahl>1</Anzahl> <Panel0> <PanelClass></PanelClass> <PanelNumber>0</PanelNumber> <TabMnemonic>1</TabMnemonic> <TabTitle>1.Daten</TabTitle> <TabToolTipText>Hier k&ouml;nnen Sie die Daten des Objekt warten</TabToolTipText> </Panel0> </Panels> <Spalten> <Anzahl>4</Anzahl> <Codegenerator> <ActiveInApplication>false</ActiveInApplication> <Codegeneratoroptionen></Codegeneratoroptionen> <Codeverzeichnis>.</Codeverzeichnis> <Codieren>true</Codieren> <DynamicCode>true</DynamicCode> <Inherited>false</Inherited> <Kontextname></Kontextname> <UniqueFormula>FromZone &amp; ToZone</UniqueFormula> </Codegenerator> <Spalte0> <AlterInBatch>false</AlterInBatch> <Aufgehoben>false</Aufgehoben> <CanBeReferenced>true</CanBeReferenced> <Disabled>false</Disabled> <Domain>NumericIdent</Domain> <Editordescriptor> <Editormember>false</Editormember> <LabelText></LabelText> <MaxCharacters>0</MaxCharacters> <Mnemonic></Mnemonic> <Position>0</Position> <ReferenceWeight>keine</ReferenceWeight> <RessourceIdentifier></RessourceIdentifier> <ToolTipText></ToolTipText> </Editordescriptor> <ForeignKey>false</ForeignKey> <Global>false</Global> <GlobalId>false</GlobalId> <HideReference>false</HideReference> <History></History> <IndexSearchMember>false</IndexSearchMember> <Indexed>false</Indexed> <IndividualDefaultValue></IndividualDefaultValue> <Kodiert>false</Kodiert> <Kommentar></Kommentar> <Konsistenz> <Writeablemember>false</Writeablemember> </Konsistenz> <LastModificationField>false</LastModificationField> <ListItemField>false</ListItemField> <Name>Id</Name> <NotNull>true</NotNull> <PanelNumber>0</PanelNumber> <Parameter></Parameter> <PrimaryKey>true</PrimaryKey> <RemovedStateField>false</RemovedStateField> <TechnicalField>false</TechnicalField> <Unique>false</Unique> </Spalte0> <Spalte1> <AlterInBatch>false</AlterInBatch> <Aufgehoben>false</Aufgehoben> <CanBeReferenced>false</CanBeReferenced> <Disabled>false</Disabled> <Domain>NumericIdent</Domain> <Editordescriptor> <Editormember>false</Editormember> <LabelText></LabelText> <MaxCharacters>0</MaxCharacters> <Mnemonic></Mnemonic> <Position>0</Position> <ReferenceWeight>keine</ReferenceWeight> <RessourceIdentifier></RessourceIdentifier> <ToolTipText></ToolTipText> </Editordescriptor> <ForeignKey>false</ForeignKey> <Global>false</Global> <GlobalId>false</GlobalId> <HideReference>false</HideReference> <History></History> <IndexSearchMember>false</IndexSearchMember> <Indexed>false</Indexed> <IndividualDefaultValue></IndividualDefaultValue> <Kodiert>false</Kodiert> <Kommentar></Kommentar> <Konsistenz> <Writeablemember>false</Writeablemember> </Konsistenz> <LastModificationField>false</LastModificationField> <ListItemField>false</ListItemField> <Name>TransitionTime</Name> <NotNull>true</NotNull> <PanelNumber>0</PanelNumber> <Parameter></Parameter> <PrimaryKey>false</PrimaryKey> <RemovedStateField>false</RemovedStateField> <TechnicalField>false</TechnicalField> <Unique>false</Unique> </Spalte1> <Spalte2> <AlterInBatch>false</AlterInBatch> <Aufgehoben>false</Aufgehoben> <CanBeReferenced>false</CanBeReferenced> <Disabled>false</Disabled> <Domain>NumericIdent</Domain> <Editordescriptor> <Editormember>false</Editormember> <LabelText></LabelText> <MaxCharacters>0</MaxCharacters> <Mnemonic></Mnemonic> <Position>0</Position> <ReferenceWeight>keine</ReferenceWeight> <RessourceIdentifier></RessourceIdentifier> <ToolTipText></ToolTipText> </Editordescriptor> <ForeignKey>true</ForeignKey> <Global>false</Global> <GlobalId>false</GlobalId> <HideReference>false</HideReference> <History></History> <IndexSearchMember>false</IndexSearchMember> <Indexed>true</Indexed> <IndividualDefaultValue></IndividualDefaultValue> <Kodiert>false</Kodiert> <Kommentar></Kommentar> <Konsistenz> <Writeablemember>false</Writeablemember> </Konsistenz> <LastModificationField>false</LastModificationField> <ListItemField>false</ListItemField> <Name>FromZone</Name> <NotNull>true</NotNull> <PanelNumber>0</PanelNumber> <Parameter></Parameter> <PrimaryKey>false</PrimaryKey> <Referenz> <Direction0>LEFT</Direction0> <Direction1>RIGHT</Direction1> <Offset0>25</Offset0> <Offset1>25</Offset1> <Spalte>Id</Spalte> <Tabelle>Zone</Tabelle> <Views> <Anzahl>1</Anzahl> <View0> <Direction0>LEFT</Direction0> <Direction1>RIGHT</Direction1> <Name>Main</Name> <Offset0>25</Offset0> <Offset1>25</Offset1> <Points> <Anzahl>0</Anzahl> </Points> </View0> </Views> </Referenz> <RemovedStateField>false</RemovedStateField> <TechnicalField>false</TechnicalField> <Unique>false</Unique> </Spalte2> <Spalte3> <AlterInBatch>false</AlterInBatch> <Aufgehoben>false</Aufgehoben> <CanBeReferenced>false</CanBeReferenced> <Disabled>false</Disabled> <Domain>NumericIdent</Domain> <Editordescriptor> <Editormember>false</Editormember> <LabelText></LabelText> <MaxCharacters>0</MaxCharacters> <Mnemonic></Mnemonic> <Position>0</Position> <ReferenceWeight>keine</ReferenceWeight> <RessourceIdentifier></RessourceIdentifier> <ToolTipText></ToolTipText> </Editordescriptor> <ForeignKey>true</ForeignKey> <Global>false</Global> <GlobalId>false</GlobalId> <HideReference>false</HideReference> <History></History> <IndexSearchMember>false</IndexSearchMember> <Indexed>false</Indexed> <IndividualDefaultValue></IndividualDefaultValue> <Kodiert>false</Kodiert> <Kommentar></Kommentar> <Konsistenz> <Writeablemember>false</Writeablemember> </Konsistenz> <LastModificationField>false</LastModificationField> <ListItemField>false</ListItemField> <Name>ToZone</Name> <NotNull>true</NotNull> <PanelNumber>0</PanelNumber> <Parameter></Parameter> <PrimaryKey>false</PrimaryKey> <Referenz> <Direction0>LEFT</Direction0> <Direction1>RIGHT</Direction1> <Offset0>50</Offset0> <Offset1>50</Offset1> <Spalte>Id</Spalte> <Tabelle>Zone</Tabelle> <Views> <Anzahl>1</Anzahl> <View0> <Direction0>LEFT</Direction0> <Direction1>RIGHT</Direction1> <Name>Main</Name> <Offset0>50</Offset0> <Offset1>50</Offset1> <Points> <Anzahl>0</Anzahl> </Points> </View0> </Views> </Referenz> <RemovedStateField>false</RemovedStateField> <TechnicalField>false</TechnicalField> <Unique>false</Unique> </Spalte3> </Spalten> <Stereotype> <Anzahl>1</Anzahl> </Stereotype> <Stereotype0>ZoneManager</Stereotype0> <Views> <Anzahl>1</Anzahl> <View0> <Name>Main</Name> <X>425</X> <Y>650</Y> </View0> </Views> </Tabelle13> <Tabelle14> <Aufgehoben>false</Aufgehoben> <Codegenerator> <AuswahlMembers> <Anzahl>0</Anzahl> </AuswahlMembers> <CompareMembers> <Anzahl>0</Anzahl> </CompareMembers> <Equalsmembers> <Anzahl>0</Anzahl> </Equalsmembers> <HashCodeMembers> <Anzahl>0</Anzahl> </HashCodeMembers> <NReferenzen> <Anzahl>0</Anzahl> </NReferenzen> <OrderMembers> <Anzahl>0</Anzahl> </OrderMembers> <ToComboStringMembers> <Anzahl>0</Anzahl> </ToComboStringMembers> <ToStringMembers> <Anzahl>0</Anzahl> </ToStringMembers> </Codegenerator> <Farben> <Hintergrund>blaugrau</Hintergrund> <Schrift>schwarz</Schrift> </Farben> <FirstGenerationDone>false</FirstGenerationDone> <History>@changed OLI 30.07.2012 - Added.</History> <InDevelopment>false</InDevelopment> <Kommentar>This table contains the media categories like 'icon', "floorplan' etc.</Kommentar> <NMRelation>false</NMRelation> <Name>MediaCategory</Name> <Panels> <Anzahl>1</Anzahl> <Panel0> <PanelClass></PanelClass> <PanelNumber>0</PanelNumber> <TabMnemonic>1</TabMnemonic> <TabTitle>1.Daten</TabTitle> <TabToolTipText>Hier k&ouml;nnen Sie die Daten des Objekt warten</TabToolTipText> </Panel0> </Panels> <Spalten> <Anzahl>2</Anzahl> <Codegenerator> <ActiveInApplication>false</ActiveInApplication> <Codegeneratoroptionen></Codegeneratoroptionen> <Codeverzeichnis>.</Codeverzeichnis> <Codieren>true</Codieren> <DynamicCode>true</DynamicCode> <Inherited>false</Inherited> <Kontextname></Kontextname> <UniqueFormula></UniqueFormula> </Codegenerator> <Spalte0> <AlterInBatch>false</AlterInBatch> <Aufgehoben>false</Aufgehoben> <CanBeReferenced>true</CanBeReferenced> <Disabled>false</Disabled> <Domain>NumericIdent</Domain> <Editordescriptor> <Editormember>false</Editormember> <LabelText></LabelText> <MaxCharacters>0</MaxCharacters> <Mnemonic></Mnemonic> <Position>0</Position> <ReferenceWeight>keine</ReferenceWeight> <RessourceIdentifier></RessourceIdentifier> <ToolTipText></ToolTipText> </Editordescriptor> <ForeignKey>false</ForeignKey> <Global>false</Global> <GlobalId>false</GlobalId> <HideReference>false</HideReference> <History>@changed OLI 30.07.2012 - Added.</History> <IndexSearchMember>false</IndexSearchMember> <Indexed>false</Indexed> <IndividualDefaultValue></IndividualDefaultValue> <Kodiert>false</Kodiert> <Kommentar>The key of the media category.</Kommentar> <Konsistenz> <Writeablemember>false</Writeablemember> </Konsistenz> <LastModificationField>false</LastModificationField> <ListItemField>false</ListItemField> <Name>Id</Name> <NotNull>false</NotNull> <PanelNumber>0</PanelNumber> <Parameter></Parameter> <PrimaryKey>true</PrimaryKey> <RemovedStateField>false</RemovedStateField> <TechnicalField>false</TechnicalField> <Unique>false</Unique> </Spalte0> <Spalte1> <AlterInBatch>false</AlterInBatch> <Aufgehoben>false</Aufgehoben> <CanBeReferenced>false</CanBeReferenced> <Disabled>false</Disabled> <Domain>Description</Domain> <Editordescriptor> <Editormember>false</Editormember> <LabelText></LabelText> <MaxCharacters>0</MaxCharacters> <Mnemonic></Mnemonic> <Position>0</Position> <ReferenceWeight>keine</ReferenceWeight> <RessourceIdentifier></RessourceIdentifier> <ToolTipText></ToolTipText> </Editordescriptor> <ForeignKey>false</ForeignKey> <Global>false</Global> <GlobalId>false</GlobalId> <HideReference>false</HideReference> <History>@changed OLI 30.07.2012 - Added.</History> <IndexSearchMember>false</IndexSearchMember> <Indexed>true</Indexed> <IndividualDefaultValue></IndividualDefaultValue> <Kodiert>false</Kodiert> <Kommentar>A unique name for the media category.</Kommentar> <Konsistenz> <Writeablemember>false</Writeablemember> </Konsistenz> <LastModificationField>false</LastModificationField> <ListItemField>false</ListItemField> <Name>Name</Name> <NotNull>true</NotNull> <PanelNumber>0</PanelNumber> <Parameter></Parameter> <PrimaryKey>false</PrimaryKey> <RemovedStateField>false</RemovedStateField> <TechnicalField>false</TechnicalField> <Unique>true</Unique> </Spalte1> </Spalten> <Stereotype> <Anzahl>1</Anzahl> </Stereotype> <Stereotype0>MediaManager</Stereotype0> <Views> <Anzahl>1</Anzahl> <View0> <Name>Main</Name> <X>1675</X> <Y>125</Y> </View0> </Views> </Tabelle14> <Tabelle15> <Aufgehoben>false</Aufgehoben> <Codegenerator> <AuswahlMembers> <Anzahl>0</Anzahl> </AuswahlMembers> <CompareMembers> <Anzahl>0</Anzahl> </CompareMembers> <Equalsmembers> <Anzahl>0</Anzahl> </Equalsmembers> <HashCodeMembers> <Anzahl>0</Anzahl> </HashCodeMembers> <NReferenzen> <Anzahl>0</Anzahl> </NReferenzen> <OrderMembers> <Anzahl>0</Anzahl> </OrderMembers> <ToComboStringMembers> <Anzahl>0</Anzahl> </ToComboStringMembers> <ToStringMembers> <Anzahl>0</Anzahl> </ToStringMembers> </Codegenerator> <Farben> <Hintergrund>blaugrau</Hintergrund> <Schrift>schwarz</Schrift> </Farben> <FirstGenerationDone>false</FirstGenerationDone> <History>@changed OLI 30.07.2012 - Added.$BR$@changed OLI 27.08.2012 - Extended by the height and width attribute.$BR$@changed OLI 03.07.2013 - Extended by the field ImageLastChangeDate.</History> <InDevelopment>false</InDevelopment> <Kommentar>This table contains the media data.</Kommentar> <NMRelation>false</NMRelation> <Name>Medium</Name> <Panels> <Anzahl>1</Anzahl> <Panel0> <PanelClass></PanelClass> <PanelNumber>0</PanelNumber> <TabMnemonic>1</TabMnemonic> <TabTitle>1.Daten</TabTitle> <TabToolTipText>Hier k&ouml;nnen Sie die Daten des Objekt warten</TabToolTipText> </Panel0> </Panels> <Spalten> <Anzahl>10</Anzahl> <Codegenerator> <ActiveInApplication>false</ActiveInApplication> <Codegeneratoroptionen></Codegeneratoroptionen> <Codeverzeichnis>.</Codeverzeichnis> <Codieren>true</Codieren> <DynamicCode>true</DynamicCode> <Inherited>false</Inherited> <Kontextname></Kontextname> <UniqueFormula></UniqueFormula> </Codegenerator> <Spalte0> <AlterInBatch>false</AlterInBatch> <Aufgehoben>false</Aufgehoben> <CanBeReferenced>true</CanBeReferenced> <Disabled>false</Disabled> <Domain>NumericIdent</Domain> <Editordescriptor> <Editormember>false</Editormember> <LabelText></LabelText> <MaxCharacters>0</MaxCharacters> <Mnemonic></Mnemonic> <Position>0</Position> <ReferenceWeight>keine</ReferenceWeight> <RessourceIdentifier></RessourceIdentifier> <ToolTipText></ToolTipText> </Editordescriptor> <ForeignKey>false</ForeignKey> <Global>false</Global> <GlobalId>false</GlobalId> <HideReference>false</HideReference> <History>@changed OLI 30.07.2012 - Added.</History> <IndexSearchMember>false</IndexSearchMember> <Indexed>false</Indexed> <IndividualDefaultValue></IndividualDefaultValue> <Kodiert>false</Kodiert> <Kommentar>The key of the medium.</Kommentar> <Konsistenz> <Writeablemember>false</Writeablemember> </Konsistenz> <LastModificationField>false</LastModificationField> <ListItemField>false</ListItemField> <Name>Id</Name> <NotNull>false</NotNull> <PanelNumber>0</PanelNumber> <Parameter></Parameter> <PrimaryKey>true</PrimaryKey> <RemovedStateField>false</RemovedStateField> <TechnicalField>false</TechnicalField> <Unique>false</Unique> </Spalte0> <Spalte1> <AlterInBatch>false</AlterInBatch> <Aufgehoben>false</Aufgehoben> <CanBeReferenced>false</CanBeReferenced> <Disabled>false</Disabled> <Domain>MediaContent</Domain> <Editordescriptor> <Editormember>false</Editormember> <LabelText></LabelText> <MaxCharacters>0</MaxCharacters> <Mnemonic></Mnemonic> <Position>0</Position> <ReferenceWeight>keine</ReferenceWeight> <RessourceIdentifier></RessourceIdentifier> <ToolTipText></ToolTipText> </Editordescriptor> <ForeignKey>false</ForeignKey> <Global>false</Global> <GlobalId>false</GlobalId> <HideReference>false</HideReference> <History>@changed OLI 30.07.2012 - Added.</History> <IndexSearchMember>false</IndexSearchMember> <Indexed>false</Indexed> <IndividualDefaultValue></IndividualDefaultValue> <Kodiert>false</Kodiert> <Kommentar>The content of the medium in a binary form.</Kommentar> <Konsistenz> <Writeablemember>false</Writeablemember> </Konsistenz> <LastModificationField>false</LastModificationField> <ListItemField>false</ListItemField> <Name>Content</Name> <NotNull>true</NotNull> <PanelNumber>0</PanelNumber> <Parameter></Parameter> <PrimaryKey>false</PrimaryKey> <RemovedStateField>false</RemovedStateField> <TechnicalField>false</TechnicalField> <Unique>false</Unique> </Spalte1> <Spalte2> <AlterInBatch>false</AlterInBatch> <Aufgehoben>false</Aufgehoben> <CanBeReferenced>false</CanBeReferenced> <Disabled>false</Disabled> <Domain>Description</Domain> <Editordescriptor> <Editormember>false</Editormember> <LabelText></LabelText> <MaxCharacters>0</MaxCharacters> <Mnemonic></Mnemonic> <Position>0</Position> <ReferenceWeight>keine</ReferenceWeight> <RessourceIdentifier></RessourceIdentifier> <ToolTipText></ToolTipText> </Editordescriptor> <ForeignKey>false</ForeignKey> <Global>false</Global> <GlobalId>false</GlobalId> <HideReference>false</HideReference> <History>@changed OLI 30.07.2012 - Added.</History> <IndexSearchMember>false</IndexSearchMember> <Indexed>false</Indexed> <IndividualDefaultValue></IndividualDefaultValue> <Kodiert>false</Kodiert> <Kommentar>A description for the medium.</Kommentar> <Konsistenz> <Writeablemember>false</Writeablemember> </Konsistenz> <LastModificationField>false</LastModificationField> <ListItemField>false</ListItemField> <Name>Description</Name> <NotNull>false</NotNull> <PanelNumber>0</PanelNumber> <Parameter></Parameter> <PrimaryKey>false</PrimaryKey> <RemovedStateField>false</RemovedStateField> <TechnicalField>false</TechnicalField> <Unique>false</Unique> </Spalte2> <Spalte3> <AlterInBatch>false</AlterInBatch> <Aufgehoben>false</Aufgehoben> <CanBeReferenced>false</CanBeReferenced> <Disabled>false</Disabled> <Domain>Coordinate</Domain> <Editordescriptor> <Editormember>false</Editormember> <LabelText></LabelText> <MaxCharacters>0</MaxCharacters> <Mnemonic></Mnemonic> <Position>0</Position> <ReferenceWeight>keine</ReferenceWeight> <RessourceIdentifier></RessourceIdentifier> <ToolTipText></ToolTipText> </Editordescriptor> <ForeignKey>false</ForeignKey> <Global>false</Global> <GlobalId>false</GlobalId> <HideReference>false</HideReference> <History>@changed OLI 27.08.2012 - Added.</History> <IndexSearchMember>false</IndexSearchMember> <Indexed>false</Indexed> <IndividualDefaultValue></IndividualDefaultValue> <Kodiert>false</Kodiert> <Kommentar>The height or maximum y coordinate of the medium in case it is an image (null otherwise).</Kommentar> <Konsistenz> <Writeablemember>false</Writeablemember> </Konsistenz> <LastModificationField>false</LastModificationField> <ListItemField>false</ListItemField> <Name>Height</Name> <NotNull>false</NotNull> <PanelNumber>0</PanelNumber> <Parameter></Parameter> <PrimaryKey>false</PrimaryKey> <RemovedStateField>false</RemovedStateField> <TechnicalField>false</TechnicalField> <Unique>false</Unique> </Spalte3> <Spalte4> <AlterInBatch>false</AlterInBatch> <Aufgehoben>false</Aufgehoben> <CanBeReferenced>false</CanBeReferenced> <Disabled>false</Disabled> <Domain>PTimestamp</Domain> <Editordescriptor> <Editormember>false</Editormember> <LabelText></LabelText> <MaxCharacters>0</MaxCharacters> <Mnemonic></Mnemonic> <Position>0</Position> <ReferenceWeight>keine</ReferenceWeight> <RessourceIdentifier></RessourceIdentifier> <ToolTipText></ToolTipText> </Editordescriptor> <ForeignKey>false</ForeignKey> <Global>false</Global> <GlobalId>false</GlobalId> <HideReference>false</HideReference> <History>@changed OLI 03.07.2013 - Added.</History> <IndexSearchMember>false</IndexSearchMember> <Indexed>false</Indexed> <IndividualDefaultValue></IndividualDefaultValue> <Kodiert>false</Kodiert> <Kommentar>The date of the last change of the medium record.</Kommentar> <Konsistenz> <Writeablemember>false</Writeablemember> </Konsistenz> <LastModificationField>false</LastModificationField> <ListItemField>false</ListItemField> <Name>ImageLastChangeDate</Name> <NotNull>false</NotNull> <PanelNumber>0</PanelNumber> <Parameter></Parameter> <PrimaryKey>false</PrimaryKey> <RemovedStateField>false</RemovedStateField> <TechnicalField>false</TechnicalField> <Unique>false</Unique> </Spalte4> <Spalte5> <AlterInBatch>false</AlterInBatch> <Aufgehoben>false</Aufgehoben> <CanBeReferenced>false</CanBeReferenced> <Disabled>false</Disabled> <Domain>MediaContentType</Domain> <Editordescriptor> <Editormember>false</Editormember> <LabelText></LabelText> <MaxCharacters>0</MaxCharacters> <Mnemonic></Mnemonic> <Position>0</Position> <ReferenceWeight>keine</ReferenceWeight> <RessourceIdentifier></RessourceIdentifier> <ToolTipText></ToolTipText> </Editordescriptor> <ForeignKey>false</ForeignKey> <Global>false</Global> <GlobalId>false</GlobalId> <HideReference>false</HideReference> <History>@changed OLI 30.07.2012 - Added.$BR$@changed OLI 08.08.2012 - Rename to 'MediaContentType'.</History> <IndexSearchMember>false</IndexSearchMember> <Indexed>false</Indexed> <IndividualDefaultValue></IndividualDefaultValue> <Kodiert>false</Kodiert> <Kommentar>A technical definition of the format of the binary content data.</Kommentar> <Konsistenz> <Writeablemember>false</Writeablemember> </Konsistenz> <LastModificationField>false</LastModificationField> <ListItemField>false</ListItemField> <Name>MediaContentType</Name> <NotNull>true</NotNull> <PanelNumber>0</PanelNumber> <Parameter></Parameter> <PrimaryKey>false</PrimaryKey> <RemovedStateField>false</RemovedStateField> <TechnicalField>false</TechnicalField> <Unique>false</Unique> </Spalte5> <Spalte6> <AlterInBatch>false</AlterInBatch> <Aufgehoben>false</Aufgehoben> <CanBeReferenced>false</CanBeReferenced> <Disabled>false</Disabled> <Domain>MediaType</Domain> <Editordescriptor> <Editormember>false</Editormember> <LabelText></LabelText> <MaxCharacters>0</MaxCharacters> <Mnemonic></Mnemonic> <Position>0</Position> <ReferenceWeight>keine</ReferenceWeight> <RessourceIdentifier></RessourceIdentifier> <ToolTipText></ToolTipText> </Editordescriptor> <ForeignKey>false</ForeignKey> <Global>false</Global> <GlobalId>false</GlobalId> <HideReference>false</HideReference> <History>@changed OLI 30.07.2012 - Added.</History> <IndexSearchMember>false</IndexSearchMember> <Indexed>false</Indexed> <IndividualDefaultValue></IndividualDefaultValue> <Kodiert>false</Kodiert> <Kommentar>A media type identifier like 'IMAGE', 'SOUND' or some thing like that. The valid identifiers are defined by the enum MediaType.</Kommentar> <Konsistenz> <Writeablemember>false</Writeablemember> </Konsistenz> <LastModificationField>false</LastModificationField> <ListItemField>false</ListItemField> <Name>MediaType</Name> <NotNull>true</NotNull> <PanelNumber>0</PanelNumber> <Parameter></Parameter> <PrimaryKey>false</PrimaryKey> <RemovedStateField>false</RemovedStateField> <TechnicalField>false</TechnicalField> <Unique>false</Unique> </Spalte6> <Spalte7> <AlterInBatch>false</AlterInBatch> <Aufgehoben>false</Aufgehoben> <CanBeReferenced>false</CanBeReferenced> <Disabled>false</Disabled> <Domain>Description</Domain> <Editordescriptor> <Editormember>false</Editormember> <LabelText></LabelText> <MaxCharacters>0</MaxCharacters> <Mnemonic></Mnemonic> <Position>0</Position> <ReferenceWeight>keine</ReferenceWeight> <RessourceIdentifier></RessourceIdentifier> <ToolTipText></ToolTipText> </Editordescriptor> <ForeignKey>false</ForeignKey> <Global>false</Global> <GlobalId>false</GlobalId> <HideReference>false</HideReference> <History>@changed OLI 30.07.2012 - Added.</History> <IndexSearchMember>false</IndexSearchMember> <Indexed>false</Indexed> <IndividualDefaultValue></IndividualDefaultValue> <Kodiert>false</Kodiert> <Kommentar>A unique name for the medium.</Kommentar> <Konsistenz> <Writeablemember>false</Writeablemember> </Konsistenz> <LastModificationField>false</LastModificationField> <ListItemField>false</ListItemField> <Name>Name</Name> <NotNull>true</NotNull> <PanelNumber>0</PanelNumber> <Parameter></Parameter> <PrimaryKey>false</PrimaryKey> <RemovedStateField>false</RemovedStateField> <TechnicalField>false</TechnicalField> <Unique>false</Unique> </Spalte7> <Spalte8> <AlterInBatch>false</AlterInBatch> <Aufgehoben>false</Aufgehoben> <CanBeReferenced>false</CanBeReferenced> <Disabled>false</Disabled> <Domain>Coordinate</Domain> <Editordescriptor> <Editormember>false</Editormember> <LabelText></LabelText> <MaxCharacters>0</MaxCharacters> <Mnemonic></Mnemonic> <Position>0</Position> <ReferenceWeight>keine</ReferenceWeight> <RessourceIdentifier></RessourceIdentifier> <ToolTipText></ToolTipText> </Editordescriptor> <ForeignKey>false</ForeignKey> <Global>false</Global> <GlobalId>false</GlobalId> <HideReference>false</HideReference> <History>@changed OLI 27.08.2012 - Added.</History> <IndexSearchMember>false</IndexSearchMember> <Indexed>false</Indexed> <IndividualDefaultValue></IndividualDefaultValue> <Kodiert>false</Kodiert> <Kommentar>The width or maximum y coordinate of the image (null, if the medium is not an image).</Kommentar> <Konsistenz> <Writeablemember>false</Writeablemember> </Konsistenz> <LastModificationField>false</LastModificationField> <ListItemField>false</ListItemField> <Name>Width</Name> <NotNull>false</NotNull> <PanelNumber>0</PanelNumber> <Parameter></Parameter> <PrimaryKey>false</PrimaryKey> <RemovedStateField>false</RemovedStateField> <TechnicalField>false</TechnicalField> <Unique>false</Unique> </Spalte8> <Spalte9> <AlterInBatch>false</AlterInBatch> <Aufgehoben>false</Aufgehoben> <CanBeReferenced>false</CanBeReferenced> <Disabled>false</Disabled> <Domain>NumericIdent</Domain> <Editordescriptor> <Editormember>false</Editormember> <LabelText></LabelText> <MaxCharacters>0</MaxCharacters> <Mnemonic></Mnemonic> <Position>0</Position> <ReferenceWeight>keine</ReferenceWeight> <RessourceIdentifier></RessourceIdentifier> <ToolTipText></ToolTipText> </Editordescriptor> <ForeignKey>true</ForeignKey> <Global>false</Global> <GlobalId>false</GlobalId> <HideReference>false</HideReference> <History>@changed OLI 30.07.2012 - Added.$BR$@changed OLI 08.08.2012 - Rename to 'MediaCategory'.</History> <IndexSearchMember>false</IndexSearchMember> <Indexed>false</Indexed> <IndividualDefaultValue></IndividualDefaultValue> <Kodiert>false</Kodiert> <Kommentar>The category of the medium.</Kommentar> <Konsistenz> <Writeablemember>false</Writeablemember> </Konsistenz> <LastModificationField>false</LastModificationField> <ListItemField>false</ListItemField> <Name>MediaCategory</Name> <NotNull>true</NotNull> <PanelNumber>0</PanelNumber> <Parameter></Parameter> <PrimaryKey>false</PrimaryKey> <Referenz> <Direction0>UP</Direction0> <Direction1>DOWN</Direction1> <Offset0>25</Offset0> <Offset1>25</Offset1> <Spalte>Id</Spalte> <Tabelle>MediaCategory</Tabelle> <Views> <Anzahl>1</Anzahl> <View0> <Direction0>UP</Direction0> <Direction1>DOWN</Direction1> <Name>Main</Name> <Offset0>25</Offset0> <Offset1>25</Offset1> <Points> <Anzahl>0</Anzahl> </Points> </View0> </Views> </Referenz> <RemovedStateField>false</RemovedStateField> <TechnicalField>false</TechnicalField> <Unique>false</Unique> </Spalte9> </Spalten> <Stereotype> <Anzahl>1</Anzahl> </Stereotype> <Stereotype0>MediaManager</Stereotype0> <Views> <Anzahl>1</Anzahl> <View0> <Name>Main</Name> <X>1675</X> <Y>325</Y> </View0> </Views> </Tabelle15> <Tabelle16> <Aufgehoben>false</Aufgehoben> <Codegenerator> <AuswahlMembers> <Anzahl>0</Anzahl> </AuswahlMembers> <CompareMembers> <Anzahl>0</Anzahl> </CompareMembers> <Equalsmembers> <Anzahl>0</Anzahl> </Equalsmembers> <HashCodeMembers> <Anzahl>0</Anzahl> </HashCodeMembers> <NReferenzen> <Anzahl>0</Anzahl> </NReferenzen> <OrderMembers> <Anzahl>0</Anzahl> </OrderMembers> <ToComboStringMembers> <Anzahl>0</Anzahl> </ToComboStringMembers> <ToStringMembers> <Anzahl>0</Anzahl> </ToStringMembers> </Codegenerator> <Farben> <Hintergrund>t&amp;uuml;rkis</Hintergrund> <Schrift>schwarz</Schrift> </Farben> <FirstGenerationDone>false</FirstGenerationDone> <History></History> <InDevelopment>false</InDevelopment> <Kommentar></Kommentar> <NMRelation>false</NMRelation> <Name>GUITable</Name> <Panels> <Anzahl>1</Anzahl> <Panel0> <PanelClass></PanelClass> <PanelNumber>0</PanelNumber> <TabMnemonic>1</TabMnemonic> <TabTitle>1.Daten</TabTitle> <TabToolTipText>Hier k&ouml;nnen Sie die Daten des Objekt warten</TabToolTipText> </Panel0> </Panels> <Spalten> <Anzahl>3</Anzahl> <Codegenerator> <ActiveInApplication>false</ActiveInApplication> <Codegeneratoroptionen></Codegeneratoroptionen> <Codeverzeichnis>.</Codeverzeichnis> <Codieren>true</Codieren> <DynamicCode>true</DynamicCode> <Inherited>false</Inherited> <Kontextname></Kontextname> <UniqueFormula>"TableId" &amp; "UserId"</UniqueFormula> </Codegenerator> <Spalte0> <AlterInBatch>false</AlterInBatch> <Aufgehoben>false</Aufgehoben> <CanBeReferenced>true</CanBeReferenced> <Disabled>false</Disabled> <Domain>NumericIdent</Domain> <Editordescriptor> <Editormember>false</Editormember> <LabelText></LabelText> <MaxCharacters>0</MaxCharacters> <Mnemonic></Mnemonic> <Position>0</Position> <ReferenceWeight>keine</ReferenceWeight> <RessourceIdentifier></RessourceIdentifier> <ToolTipText></ToolTipText> </Editordescriptor> <ForeignKey>false</ForeignKey> <Global>false</Global> <GlobalId>false</GlobalId> <HideReference>false</HideReference> <History></History> <IndexSearchMember>false</IndexSearchMember> <Indexed>false</Indexed> <IndividualDefaultValue></IndividualDefaultValue> <Kodiert>false</Kodiert> <Kommentar></Kommentar> <Konsistenz> <Writeablemember>false</Writeablemember> </Konsistenz> <LastModificationField>false</LastModificationField> <ListItemField>false</ListItemField> <Name>Id</Name> <NotNull>true</NotNull> <PanelNumber>0</PanelNumber> <Parameter></Parameter> <PrimaryKey>true</PrimaryKey> <RemovedStateField>false</RemovedStateField> <TechnicalField>false</TechnicalField> <Unique>false</Unique> </Spalte0> <Spalte1> <AlterInBatch>false</AlterInBatch> <Aufgehoben>false</Aufgehoben> <CanBeReferenced>false</CanBeReferenced> <Disabled>false</Disabled> <Domain>StringIdent</Domain> <Editordescriptor> <Editormember>false</Editormember> <LabelText></LabelText> <MaxCharacters>0</MaxCharacters> <Mnemonic></Mnemonic> <Position>0</Position> <ReferenceWeight>keine</ReferenceWeight> <RessourceIdentifier></RessourceIdentifier> <ToolTipText></ToolTipText> </Editordescriptor> <ForeignKey>false</ForeignKey> <Global>false</Global> <GlobalId>false</GlobalId> <HideReference>false</HideReference> <History></History> <IndexSearchMember>false</IndexSearchMember> <Indexed>true</Indexed> <IndividualDefaultValue></IndividualDefaultValue> <Kodiert>false</Kodiert> <Kommentar></Kommentar> <Konsistenz> <Writeablemember>false</Writeablemember> </Konsistenz> <LastModificationField>false</LastModificationField> <ListItemField>false</ListItemField> <Name>TableId</Name> <NotNull>true</NotNull> <PanelNumber>0</PanelNumber> <Parameter></Parameter> <PrimaryKey>false</PrimaryKey> <RemovedStateField>false</RemovedStateField> <TechnicalField>false</TechnicalField> <Unique>false</Unique> </Spalte1> <Spalte2> <AlterInBatch>false</AlterInBatch> <Aufgehoben>false</Aufgehoben> <CanBeReferenced>false</CanBeReferenced> <Disabled>false</Disabled> <Domain>NumericIdent</Domain> <Editordescriptor> <Editormember>false</Editormember> <LabelText></LabelText> <MaxCharacters>0</MaxCharacters> <Mnemonic></Mnemonic> <Position>0</Position> <ReferenceWeight>keine</ReferenceWeight> <RessourceIdentifier></RessourceIdentifier> <ToolTipText></ToolTipText> </Editordescriptor> <ForeignKey>false</ForeignKey> <Global>false</Global> <GlobalId>false</GlobalId> <HideReference>false</HideReference> <History></History> <IndexSearchMember>false</IndexSearchMember> <Indexed>false</Indexed> <IndividualDefaultValue></IndividualDefaultValue> <Kodiert>false</Kodiert> <Kommentar></Kommentar> <Konsistenz> <Writeablemember>false</Writeablemember> </Konsistenz> <LastModificationField>false</LastModificationField> <ListItemField>false</ListItemField> <Name>UserId</Name> <NotNull>false</NotNull> <PanelNumber>0</PanelNumber> <Parameter></Parameter> <PrimaryKey>false</PrimaryKey> <RemovedStateField>false</RemovedStateField> <TechnicalField>false</TechnicalField> <Unique>false</Unique> </Spalte2> </Spalten> <Stereotype> <Anzahl>1</Anzahl> </Stereotype> <Stereotype0>GUIManager</Stereotype0> <Views> <Anzahl>1</Anzahl> <View0> <Name>Main</Name> <X>425</X> <Y>1100</Y> </View0> </Views> </Tabelle16> <Tabelle17> <Aufgehoben>false</Aufgehoben> <Codegenerator> <AuswahlMembers> <Anzahl>0</Anzahl> </AuswahlMembers> <CompareMembers> <Anzahl>0</Anzahl> </CompareMembers> <Equalsmembers> <Anzahl>0</Anzahl> </Equalsmembers> <HashCodeMembers> <Anzahl>0</Anzahl> </HashCodeMembers> <NReferenzen> <Anzahl>0</Anzahl> </NReferenzen> <OrderMembers> <Anzahl>0</Anzahl> </OrderMembers> <ToComboStringMembers> <Anzahl>0</Anzahl> </ToComboStringMembers> <ToStringMembers> <Anzahl>0</Anzahl> </ToStringMembers> </Codegenerator> <Farben> <Hintergrund>t&amp;uuml;rkis</Hintergrund> <Schrift>schwarz</Schrift> </Farben> <FirstGenerationDone>false</FirstGenerationDone> <History></History> <InDevelopment>false</InDevelopment> <Kommentar></Kommentar> <NMRelation>false</NMRelation> <Name>GUITableColumn</Name> <Panels> <Anzahl>1</Anzahl> <Panel0> <PanelClass></PanelClass> <PanelNumber>0</PanelNumber> <TabMnemonic>1</TabMnemonic> <TabTitle>1.Daten</TabTitle> <TabToolTipText>Hier k&ouml;nnen Sie die Daten des Objekt warten</TabToolTipText> </Panel0> </Panels> <Spalten> <Anzahl>4</Anzahl> <Codegenerator> <ActiveInApplication>false</ActiveInApplication> <Codegeneratoroptionen></Codegeneratoroptionen> <Codeverzeichnis>.</Codeverzeichnis> <Codieren>true</Codieren> <DynamicCode>true</DynamicCode> <Inherited>false</Inherited> <Kontextname></Kontextname> <UniqueFormula></UniqueFormula> </Codegenerator> <Spalte0> <AlterInBatch>false</AlterInBatch> <Aufgehoben>false</Aufgehoben> <CanBeReferenced>false</CanBeReferenced> <Disabled>false</Disabled> <Domain>StringIdent</Domain> <Editordescriptor> <Editormember>false</Editormember> <LabelText></LabelText> <MaxCharacters>0</MaxCharacters> <Mnemonic></Mnemonic> <Position>0</Position> <ReferenceWeight>keine</ReferenceWeight> <RessourceIdentifier></RessourceIdentifier> <ToolTipText></ToolTipText> </Editordescriptor> <ForeignKey>false</ForeignKey> <Global>false</Global> <GlobalId>false</GlobalId> <HideReference>false</HideReference> <History></History> <IndexSearchMember>false</IndexSearchMember> <Indexed>false</Indexed> <IndividualDefaultValue></IndividualDefaultValue> <Kodiert>false</Kodiert> <Kommentar></Kommentar> <Konsistenz> <Writeablemember>false</Writeablemember> </Konsistenz> <LastModificationField>false</LastModificationField> <ListItemField>false</ListItemField> <Name>ColumnName</Name> <NotNull>true</NotNull> <PanelNumber>0</PanelNumber> <Parameter></Parameter> <PrimaryKey>false</PrimaryKey> <RemovedStateField>false</RemovedStateField> <TechnicalField>false</TechnicalField> <Unique>false</Unique> </Spalte0> <Spalte1> <AlterInBatch>false</AlterInBatch> <Aufgehoben>false</Aufgehoben> <CanBeReferenced>false</CanBeReferenced> <Disabled>false</Disabled> <Domain>NumericIdent</Domain> <Editordescriptor> <Editormember>false</Editormember> <LabelText></LabelText> <MaxCharacters>0</MaxCharacters> <Mnemonic></Mnemonic> <Position>0</Position> <ReferenceWeight>keine</ReferenceWeight> <RessourceIdentifier></RessourceIdentifier> <ToolTipText></ToolTipText> </Editordescriptor> <ForeignKey>false</ForeignKey> <Global>false</Global> <GlobalId>false</GlobalId> <HideReference>false</HideReference> <History></History> <IndexSearchMember>false</IndexSearchMember> <Indexed>false</Indexed> <IndividualDefaultValue></IndividualDefaultValue> <Kodiert>false</Kodiert> <Kommentar></Kommentar> <Konsistenz> <Writeablemember>false</Writeablemember> </Konsistenz> <LastModificationField>false</LastModificationField> <ListItemField>false</ListItemField> <Name>ColumnWidth</Name> <NotNull>false</NotNull> <PanelNumber>0</PanelNumber> <Parameter></Parameter> <PrimaryKey>false</PrimaryKey> <RemovedStateField>false</RemovedStateField> <TechnicalField>false</TechnicalField> <Unique>false</Unique> </Spalte1> <Spalte2> <AlterInBatch>false</AlterInBatch> <Aufgehoben>false</Aufgehoben> <CanBeReferenced>false</CanBeReferenced> <Disabled>false</Disabled> <Domain>NumericIdent</Domain> <Editordescriptor> <Editormember>false</Editormember> <LabelText></LabelText> <MaxCharacters>0</MaxCharacters> <Mnemonic></Mnemonic> <Position>0</Position> <ReferenceWeight>keine</ReferenceWeight> <RessourceIdentifier></RessourceIdentifier> <ToolTipText></ToolTipText> </Editordescriptor> <ForeignKey>false</ForeignKey> <Global>false</Global> <GlobalId>false</GlobalId> <HideReference>false</HideReference> <History></History> <IndexSearchMember>false</IndexSearchMember> <Indexed>false</Indexed> <IndividualDefaultValue></IndividualDefaultValue> <Kodiert>false</Kodiert> <Kommentar></Kommentar> <Konsistenz> <Writeablemember>false</Writeablemember> </Konsistenz> <LastModificationField>false</LastModificationField> <ListItemField>false</ListItemField> <Name>Ordering</Name> <NotNull>true</NotNull> <PanelNumber>0</PanelNumber> <Parameter></Parameter> <PrimaryKey>false</PrimaryKey> <RemovedStateField>false</RemovedStateField> <TechnicalField>false</TechnicalField> <Unique>false</Unique> </Spalte2> <Spalte3> <AlterInBatch>false</AlterInBatch> <Aufgehoben>false</Aufgehoben> <CanBeReferenced>false</CanBeReferenced> <Disabled>false</Disabled> <Domain>NumericIdent</Domain> <Editordescriptor> <Editormember>false</Editormember> <LabelText></LabelText> <MaxCharacters>0</MaxCharacters> <Mnemonic></Mnemonic> <Position>0</Position> <ReferenceWeight>keine</ReferenceWeight> <RessourceIdentifier></RessourceIdentifier> <ToolTipText></ToolTipText> </Editordescriptor> <ForeignKey>true</ForeignKey> <Global>false</Global> <GlobalId>false</GlobalId> <HideReference>false</HideReference> <History></History> <IndexSearchMember>false</IndexSearchMember> <Indexed>false</Indexed> <IndividualDefaultValue></IndividualDefaultValue> <Kodiert>false</Kodiert> <Kommentar></Kommentar> <Konsistenz> <Writeablemember>false</Writeablemember> </Konsistenz> <LastModificationField>false</LastModificationField> <ListItemField>false</ListItemField> <Name>GUITableId</Name> <NotNull>true</NotNull> <PanelNumber>0</PanelNumber> <Parameter></Parameter> <PrimaryKey>false</PrimaryKey> <Referenz> <Direction0>LEFT</Direction0> <Direction1>RIGHT</Direction1> <Offset0>25</Offset0> <Offset1>25</Offset1> <Spalte>Id</Spalte> <Tabelle>GUITable</Tabelle> <Views> <Anzahl>1</Anzahl> <View0> <Direction0>LEFT</Direction0> <Direction1>RIGHT</Direction1> <Name>Main</Name> <Offset0>25</Offset0> <Offset1>25</Offset1> <Points> <Anzahl>0</Anzahl> </Points> </View0> </Views> </Referenz> <RemovedStateField>false</RemovedStateField> <TechnicalField>false</TechnicalField> <Unique>false</Unique> </Spalte3> </Spalten> <Stereotype> <Anzahl>1</Anzahl> </Stereotype> <Stereotype0>GUIManager</Stereotype0> <Views> <Anzahl>1</Anzahl> <View0> <Name>Main</Name> <X>725</X> <Y>1100</Y> </View0> </Views> </Tabelle17> <Tabelle18> <Aufgehoben>false</Aufgehoben> <Codegenerator> <AuswahlMembers> <Anzahl>0</Anzahl> </AuswahlMembers> <CompareMembers> <Anzahl>0</Anzahl> </CompareMembers> <Equalsmembers> <Anzahl>0</Anzahl> </Equalsmembers> <HashCodeMembers> <Anzahl>0</Anzahl> </HashCodeMembers> <NReferenzen> <Anzahl>0</Anzahl> </NReferenzen> <OrderMembers> <Anzahl>0</Anzahl> </OrderMembers> <ToComboStringMembers> <Anzahl>0</Anzahl> </ToComboStringMembers> <ToStringMembers> <Anzahl>0</Anzahl> </ToStringMembers> </Codegenerator> <Farben> <Hintergrund>hellgrau</Hintergrund> <Schrift>schwarz</Schrift> </Farben> <FirstGenerationDone>false</FirstGenerationDone> <History>@changed OLI 17.04.2013 - Added by using the database update script.</History> <InDevelopment>false</InDevelopment> <Kommentar></Kommentar> <NMRelation>false</NMRelation> <Name>ButtonMapping</Name> <Panels> <Anzahl>1</Anzahl> <Panel0> <PanelClass></PanelClass> <PanelNumber>0</PanelNumber> <TabMnemonic>1</TabMnemonic> <TabTitle>1.Daten</TabTitle> <TabToolTipText>Hier k&ouml;nnen Sie die Daten des Objekt warten</TabToolTipText> </Panel0> </Panels> <Spalten> <Anzahl>4</Anzahl> <Codegenerator> <ActiveInApplication>false</ActiveInApplication> <Codegeneratoroptionen></Codegeneratoroptionen> <Codeverzeichnis>.</Codeverzeichnis> <Codieren>true</Codieren> <DynamicCode>true</DynamicCode> <Inherited>false</Inherited> <Kontextname></Kontextname> <UniqueFormula></UniqueFormula> </Codegenerator> <Spalte0> <AlterInBatch>false</AlterInBatch> <Aufgehoben>false</Aufgehoben> <CanBeReferenced>true</CanBeReferenced> <Disabled>false</Disabled> <Domain>NumericIdent</Domain> <Editordescriptor> <Editormember>false</Editormember> <LabelText></LabelText> <MaxCharacters>0</MaxCharacters> <Mnemonic></Mnemonic> <Position>0</Position> <ReferenceWeight>keine</ReferenceWeight> <RessourceIdentifier></RessourceIdentifier> <ToolTipText></ToolTipText> </Editordescriptor> <ForeignKey>false</ForeignKey> <Global>false</Global> <GlobalId>false</GlobalId> <HideReference>false</HideReference> <History></History> <IndexSearchMember>false</IndexSearchMember> <Indexed>false</Indexed> <IndividualDefaultValue></IndividualDefaultValue> <Kodiert>false</Kodiert> <Kommentar></Kommentar> <Konsistenz> <Writeablemember>false</Writeablemember> </Konsistenz> <LastModificationField>false</LastModificationField> <ListItemField>false</ListItemField> <Name>NativeButton</Name> <NotNull>true</NotNull> <PanelNumber>0</PanelNumber> <Parameter></Parameter> <PrimaryKey>true</PrimaryKey> <RemovedStateField>false</RemovedStateField> <TechnicalField>false</TechnicalField> <Unique>false</Unique> </Spalte0> <Spalte1> <AlterInBatch>false</AlterInBatch> <Aufgehoben>false</Aufgehoben> <CanBeReferenced>false</CanBeReferenced> <Disabled>false</Disabled> <Domain>NumericIdent</Domain> <Editordescriptor> <Editormember>false</Editormember> <LabelText></LabelText> <MaxCharacters>0</MaxCharacters> <Mnemonic></Mnemonic> <Position>0</Position> <ReferenceWeight>keine</ReferenceWeight> <RessourceIdentifier></RessourceIdentifier> <ToolTipText></ToolTipText> </Editordescriptor> <ForeignKey>false</ForeignKey> <Global>false</Global> <GlobalId>false</GlobalId> <HideReference>false</HideReference> <History></History> <IndexSearchMember>false</IndexSearchMember> <Indexed>false</Indexed> <IndividualDefaultValue></IndividualDefaultValue> <Kodiert>false</Kodiert> <Kommentar></Kommentar> <Konsistenz> <Writeablemember>false</Writeablemember> </Konsistenz> <LastModificationField>false</LastModificationField> <ListItemField>false</ListItemField> <Name>MappedButton</Name> <NotNull>true</NotNull> <PanelNumber>0</PanelNumber> <Parameter></Parameter> <PrimaryKey>false</PrimaryKey> <RemovedStateField>false</RemovedStateField> <TechnicalField>false</TechnicalField> <Unique>false</Unique> </Spalte1> <Spalte2> <AlterInBatch>false</AlterInBatch> <Aufgehoben>false</Aufgehoben> <CanBeReferenced>false</CanBeReferenced> <Disabled>false</Disabled> <Domain>NumericIdent</Domain> <Editordescriptor> <Editormember>false</Editormember> <LabelText></LabelText> <MaxCharacters>0</MaxCharacters> <Mnemonic></Mnemonic> <Position>0</Position> <ReferenceWeight>keine</ReferenceWeight> <RessourceIdentifier></RessourceIdentifier> <ToolTipText></ToolTipText> </Editordescriptor> <ForeignKey>false</ForeignKey> <Global>false</Global> <GlobalId>false</GlobalId> <HideReference>false</HideReference> <History>@changed null - Added.</History> <IndexSearchMember>false</IndexSearchMember> <Indexed>false</Indexed> <IndividualDefaultValue></IndividualDefaultValue> <Kodiert>false</Kodiert> <Kommentar>the response option that is selected for the given native button</Kommentar> <Konsistenz> <Writeablemember>false</Writeablemember> </Konsistenz> <LastModificationField>false</LastModificationField> <ListItemField>false</ListItemField> <Name>ResponseOption</Name> <NotNull>false</NotNull> <PanelNumber>0</PanelNumber> <Parameter></Parameter> <PrimaryKey>false</PrimaryKey> <RemovedStateField>false</RemovedStateField> <TechnicalField>false</TechnicalField> <Unique>false</Unique> </Spalte2> <Spalte3> <AlterInBatch>false</AlterInBatch> <Aufgehoben>false</Aufgehoben> <CanBeReferenced>true</CanBeReferenced> <Disabled>false</Disabled> <Domain>StringIdent</Domain> <Editordescriptor> <Editormember>false</Editormember> <LabelText></LabelText> <MaxCharacters>0</MaxCharacters> <Mnemonic></Mnemonic> <Position>0</Position> <ReferenceWeight>keine</ReferenceWeight> <RessourceIdentifier></RessourceIdentifier> <ToolTipText></ToolTipText> </Editordescriptor> <ForeignKey>true</ForeignKey> <Global>false</Global> <GlobalId>false</GlobalId> <HideReference>false</HideReference> <History></History> <IndexSearchMember>false</IndexSearchMember> <Indexed>false</Indexed> <IndividualDefaultValue></IndividualDefaultValue> <Kodiert>false</Kodiert> <Kommentar></Kommentar> <Konsistenz> <Writeablemember>false</Writeablemember> </Konsistenz> <LastModificationField>false</LastModificationField> <ListItemField>false</ListItemField> <Name>DeviceTypeId</Name> <NotNull>true</NotNull> <PanelNumber>0</PanelNumber> <Parameter></Parameter> <PrimaryKey>true</PrimaryKey> <Referenz> <Direction0>DOWN</Direction0> <Direction1>UP</Direction1> <Offset0>25</Offset0> <Offset1>25</Offset1> <Spalte>DeviceType</Spalte> <Tabelle>DeviceType</Tabelle> <Views> <Anzahl>1</Anzahl> <View0> <Direction0>DOWN</Direction0> <Direction1>UP</Direction1> <Name>Main</Name> <Offset0>25</Offset0> <Offset1>25</Offset1> <Points> <Anzahl>0</Anzahl> </Points> </View0> </Views> </Referenz> <RemovedStateField>false</RemovedStateField> <TechnicalField>false</TechnicalField> <Unique>false</Unique> </Spalte3> </Spalten> <Stereotype> <Anzahl>0</Anzahl> </Stereotype> <Views> <Anzahl>1</Anzahl> <View0> <Name>Main</Name> <X>1150</X> <Y>1100</Y> </View0> </Views> </Tabelle18> <Tabelle19> <Aufgehoben>false</Aufgehoben> <Codegenerator> <AuswahlMembers> <Anzahl>0</Anzahl> </AuswahlMembers> <CompareMembers> <Anzahl>0</Anzahl> </CompareMembers> <Equalsmembers> <Anzahl>0</Anzahl> </Equalsmembers> <HashCodeMembers> <Anzahl>0</Anzahl> </HashCodeMembers> <NReferenzen> <Anzahl>0</Anzahl> </NReferenzen> <OrderMembers> <Anzahl>0</Anzahl> </OrderMembers> <ToComboStringMembers> <Anzahl>0</Anzahl> </ToComboStringMembers> <ToStringMembers> <Anzahl>0</Anzahl> </ToStringMembers> </Codegenerator> <Farben> <Hintergrund>hellgrau</Hintergrund> <Schrift>schwarz</Schrift> </Farben> <FirstGenerationDone>false</FirstGenerationDone> <History>@changed OLI 17.04.2013 - Added by using the database update script.</History> <InDevelopment>false</InDevelopment> <Kommentar></Kommentar> <NMRelation>false</NMRelation> <Name>DeviceAlias</Name> <Panels> <Anzahl>1</Anzahl> <Panel0> <PanelClass></PanelClass> <PanelNumber>0</PanelNumber> <TabMnemonic>1</TabMnemonic> <TabTitle>1.Daten</TabTitle> <TabToolTipText>Hier k&ouml;nnen Sie die Daten des Objekt warten</TabToolTipText> </Panel0> </Panels> <Spalten> <Anzahl>3</Anzahl> <Codegenerator> <ActiveInApplication>false</ActiveInApplication> <Codegeneratoroptionen></Codegeneratoroptionen> <Codeverzeichnis>.</Codeverzeichnis> <Codieren>true</Codieren> <DynamicCode>true</DynamicCode> <Inherited>false</Inherited> <Kontextname></Kontextname> <UniqueFormula></UniqueFormula> </Codegenerator> <Spalte0> <AlterInBatch>false</AlterInBatch> <Aufgehoben>false</Aufgehoben> <CanBeReferenced>true</CanBeReferenced> <Disabled>false</Disabled> <Domain>NumericIdent</Domain> <Editordescriptor> <Editormember>false</Editormember> <LabelText></LabelText> <MaxCharacters>0</MaxCharacters> <Mnemonic></Mnemonic> <Position>0</Position> <ReferenceWeight>keine</ReferenceWeight> <RessourceIdentifier></RessourceIdentifier> <ToolTipText></ToolTipText> </Editordescriptor> <ForeignKey>false</ForeignKey> <Global>false</Global> <GlobalId>false</GlobalId> <HideReference>false</HideReference> <History></History> <IndexSearchMember>false</IndexSearchMember> <Indexed>false</Indexed> <IndividualDefaultValue></IndividualDefaultValue> <Kodiert>false</Kodiert> <Kommentar></Kommentar> <Konsistenz> <Writeablemember>false</Writeablemember> </Konsistenz> <LastModificationField>false</LastModificationField> <ListItemField>false</ListItemField> <Name>Id</Name> <NotNull>true</NotNull> <PanelNumber>0</PanelNumber> <Parameter></Parameter> <PrimaryKey>true</PrimaryKey> <RemovedStateField>false</RemovedStateField> <TechnicalField>false</TechnicalField> <Unique>false</Unique> </Spalte0> <Spalte1> <AlterInBatch>false</AlterInBatch> <Aufgehoben>false</Aufgehoben> <CanBeReferenced>false</CanBeReferenced> <Disabled>false</Disabled> <Domain>StringIdent</Domain> <Editordescriptor> <Editormember>false</Editormember> <LabelText></LabelText> <MaxCharacters>0</MaxCharacters> <Mnemonic></Mnemonic> <Position>0</Position> <ReferenceWeight>keine</ReferenceWeight> <RessourceIdentifier></RessourceIdentifier> <ToolTipText></ToolTipText> </Editordescriptor> <ForeignKey>false</ForeignKey> <Global>false</Global> <GlobalId>false</GlobalId> <HideReference>false</HideReference> <History></History> <IndexSearchMember>false</IndexSearchMember> <Indexed>true</Indexed> <IndividualDefaultValue></IndividualDefaultValue> <Kodiert>false</Kodiert> <Kommentar></Kommentar> <Konsistenz> <Writeablemember>false</Writeablemember> </Konsistenz> <LastModificationField>false</LastModificationField> <ListItemField>false</ListItemField> <Name>DeviceAliasId</Name> <NotNull>true</NotNull> <PanelNumber>0</PanelNumber> <Parameter></Parameter> <PrimaryKey>false</PrimaryKey> <RemovedStateField>false</RemovedStateField> <TechnicalField>false</TechnicalField> <Unique>true</Unique> </Spalte1> <Spalte2> <AlterInBatch>false</AlterInBatch> <Aufgehoben>false</Aufgehoben> <CanBeReferenced>false</CanBeReferenced> <Disabled>false</Disabled> <Domain>StringIdent</Domain> <Editordescriptor> <Editormember>false</Editormember> <LabelText></LabelText> <MaxCharacters>0</MaxCharacters> <Mnemonic></Mnemonic> <Position>0</Position> <ReferenceWeight>keine</ReferenceWeight> <RessourceIdentifier></RessourceIdentifier> <ToolTipText></ToolTipText> </Editordescriptor> <ForeignKey>false</ForeignKey> <Global>false</Global> <GlobalId>false</GlobalId> <HideReference>false</HideReference> <History></History> <IndexSearchMember>false</IndexSearchMember> <Indexed>true</Indexed> <IndividualDefaultValue></IndividualDefaultValue> <Kodiert>false</Kodiert> <Kommentar></Kommentar> <Konsistenz> <Writeablemember>false</Writeablemember> </Konsistenz> <LastModificationField>false</LastModificationField> <ListItemField>false</ListItemField> <Name>DeviceId</Name> <NotNull>true</NotNull> <PanelNumber>0</PanelNumber> <Parameter></Parameter> <PrimaryKey>false</PrimaryKey> <RemovedStateField>false</RemovedStateField> <TechnicalField>false</TechnicalField> <Unique>true</Unique> </Spalte2> </Spalten> <Stereotype> <Anzahl>0</Anzahl> </Stereotype> <Views> <Anzahl>1</Anzahl> <View0> <Name>Main</Name> <X>1675</X> <Y>1100</Y> </View0> </Views> </Tabelle19> <Tabelle2> <Aufgehoben>false</Aufgehoben> <Codegenerator> <AuswahlMembers> <Anzahl>0</Anzahl> </AuswahlMembers> <CompareMembers> <Anzahl>0</Anzahl> </CompareMembers> <Equalsmembers> <Anzahl>0</Anzahl> </Equalsmembers> <HashCodeMembers> <Anzahl>0</Anzahl> </HashCodeMembers> <NReferenzen> <Anzahl>0</Anzahl> </NReferenzen> <OrderMembers> <Anzahl>0</Anzahl> </OrderMembers> <ToComboStringMembers> <Anzahl>0</Anzahl> </ToComboStringMembers> <ToStringMembers> <Anzahl>0</Anzahl> </ToStringMembers> </Codegenerator> <Farben> <Hintergrund>pastell-gr&amp;uuml;n</Hintergrund> <Schrift>schwarz</Schrift> </Farben> <FirstGenerationDone>true</FirstGenerationDone> <History>@changed OLI 14.11.2011 - Added.</History> <InDevelopment>false</InDevelopment> <Kommentar>This table contains license files.</Kommentar> <NMRelation>false</NMRelation> <Name>LicenseEntry</Name> <Panels> <Anzahl>1</Anzahl> <Panel0> <PanelClass></PanelClass> <PanelNumber>0</PanelNumber> <TabMnemonic>1</TabMnemonic> <TabTitle>1.Daten</TabTitle> <TabToolTipText>Hier k&ouml;nnen Sie die Daten des Objekt warten</TabToolTipText> </Panel0> </Panels> <Spalten> <Anzahl>3</Anzahl> <Codegenerator> <ActiveInApplication>false</ActiveInApplication> <Codegeneratoroptionen></Codegeneratoroptionen> <Codeverzeichnis>.license.persistence.db</Codeverzeichnis> <Codieren>true</Codieren> <DynamicCode>true</DynamicCode> <Inherited>false</Inherited> <Kontextname></Kontextname> <UniqueFormula></UniqueFormula> </Codegenerator> <Spalte0> <AlterInBatch>false</AlterInBatch> <Aufgehoben>false</Aufgehoben> <CanBeReferenced>true</CanBeReferenced> <Disabled>false</Disabled> <Domain>NumericIdent</Domain> <Editordescriptor> <Editormember>false</Editormember> <LabelText></LabelText> <MaxCharacters>0</MaxCharacters> <Mnemonic></Mnemonic> <Position>0</Position> <ReferenceWeight>keine</ReferenceWeight> <RessourceIdentifier></RessourceIdentifier> <ToolTipText></ToolTipText> </Editordescriptor> <ForeignKey>false</ForeignKey> <Global>false</Global> <GlobalId>false</GlobalId> <HideReference>false</HideReference> <History>@changed OLI 14.11.2011 - Added.</History> <IndexSearchMember>false</IndexSearchMember> <Indexed>false</Indexed> <IndividualDefaultValue></IndividualDefaultValue> <Kodiert>false</Kodiert> <Kommentar>The id of the license entry.</Kommentar> <Konsistenz> <Writeablemember>false</Writeablemember> </Konsistenz> <LastModificationField>false</LastModificationField> <ListItemField>false</ListItemField> <Name>Id</Name> <NotNull>true</NotNull> <PanelNumber>0</PanelNumber> <Parameter></Parameter> <PrimaryKey>true</PrimaryKey> <RemovedStateField>false</RemovedStateField> <TechnicalField>false</TechnicalField> <Unique>false</Unique> </Spalte0> <Spalte1> <AlterInBatch>false</AlterInBatch> <Aufgehoben>false</Aufgehoben> <CanBeReferenced>false</CanBeReferenced> <Disabled>false</Disabled> <Domain>Boolean</Domain> <Editordescriptor> <Editormember>false</Editormember> <LabelText></LabelText> <MaxCharacters>0</MaxCharacters> <Mnemonic></Mnemonic> <Position>0</Position> <ReferenceWeight>keine</ReferenceWeight> <RessourceIdentifier></RessourceIdentifier> <ToolTipText></ToolTipText> </Editordescriptor> <ForeignKey>false</ForeignKey> <Global>false</Global> <GlobalId>false</GlobalId> <HideReference>false</HideReference> <History>@changed OLI 14.11.2011 - Added.</History> <IndexSearchMember>false</IndexSearchMember> <Indexed>false</Indexed> <IndividualDefaultValue></IndividualDefaultValue> <Kodiert>false</Kodiert> <Kommentar>This flag have to be set to true, if the license is the active one. There should be one active flag set to true in the whole table at one time.</Kommentar> <Konsistenz> <Writeablemember>false</Writeablemember> </Konsistenz> <LastModificationField>false</LastModificationField> <ListItemField>false</ListItemField> <Name>Active</Name> <NotNull>false</NotNull> <PanelNumber>0</PanelNumber> <Parameter></Parameter> <PrimaryKey>false</PrimaryKey> <RemovedStateField>false</RemovedStateField> <TechnicalField>false</TechnicalField> <Unique>false</Unique> </Spalte1> <Spalte2> <AlterInBatch>false</AlterInBatch> <Aufgehoben>false</Aufgehoben> <CanBeReferenced>false</CanBeReferenced> <Disabled>false</Disabled> <Domain>FileContent</Domain> <Editordescriptor> <Editormember>false</Editormember> <LabelText></LabelText> <MaxCharacters>0</MaxCharacters> <Mnemonic></Mnemonic> <Position>0</Position> <ReferenceWeight>keine</ReferenceWeight> <RessourceIdentifier></RessourceIdentifier> <ToolTipText></ToolTipText> </Editordescriptor> <ForeignKey>false</ForeignKey> <Global>false</Global> <GlobalId>false</GlobalId> <HideReference>false</HideReference> <History>@changed OLI 14.11.2011 - Added.</History> <IndexSearchMember>false</IndexSearchMember> <Indexed>false</Indexed> <IndividualDefaultValue></IndividualDefaultValue> <Kodiert>false</Kodiert> <Kommentar>This file contains the raw content of the license file in a encrypted form.</Kommentar> <Konsistenz> <Writeablemember>false</Writeablemember> </Konsistenz> <LastModificationField>false</LastModificationField> <ListItemField>false</ListItemField> <Name>FileContent</Name> <NotNull>true</NotNull> <PanelNumber>0</PanelNumber> <Parameter></Parameter> <PrimaryKey>false</PrimaryKey> <RemovedStateField>false</RemovedStateField> <TechnicalField>false</TechnicalField> <Unique>false</Unique> </Spalte2> </Spalten> <Stereotype> <Anzahl>1</Anzahl> </Stereotype> <Stereotype0>Licensing</Stereotype0> <Views> <Anzahl>1</Anzahl> <View0> <Name>Main</Name> <X>75</X> <Y>450</Y> </View0> </Views> </Tabelle2> <Tabelle20> <Aufgehoben>false</Aufgehoben> <Codegenerator> <AuswahlMembers> <Anzahl>0</Anzahl> </AuswahlMembers> <CompareMembers> <Anzahl>0</Anzahl> </CompareMembers> <Equalsmembers> <Anzahl>0</Anzahl> </Equalsmembers> <HashCodeMembers> <Anzahl>0</Anzahl> </HashCodeMembers> <NReferenzen> <Anzahl>0</Anzahl> </NReferenzen> <OrderMembers> <Anzahl>0</Anzahl> </OrderMembers> <ToComboStringMembers> <Anzahl>0</Anzahl> </ToComboStringMembers> <ToStringMembers> <Anzahl>0</Anzahl> </ToStringMembers> </Codegenerator> <Farben> <Hintergrund>hellgrau</Hintergrund> <Schrift>schwarz</Schrift> </Farben> <FirstGenerationDone>false</FirstGenerationDone> <History>@changed OLI 17.04.2013 - Added by using the database update script.</History> <InDevelopment>false</InDevelopment> <Kommentar></Kommentar> <NMRelation>false</NMRelation> <Name>DeviceType</Name> <Panels> <Anzahl>1</Anzahl> <Panel0> <PanelClass></PanelClass> <PanelNumber>0</PanelNumber> <TabMnemonic>1</TabMnemonic> <TabTitle>1.Daten</TabTitle> <TabToolTipText>Hier k&ouml;nnen Sie die Daten des Objekt warten</TabToolTipText> </Panel0> </Panels> <Spalten> <Anzahl>1</Anzahl> <Codegenerator> <ActiveInApplication>false</ActiveInApplication> <Codegeneratoroptionen></Codegeneratoroptionen> <Codeverzeichnis>.</Codeverzeichnis> <Codieren>true</Codieren> <DynamicCode>true</DynamicCode> <Inherited>false</Inherited> <Kontextname></Kontextname> <UniqueFormula></UniqueFormula> </Codegenerator> <Spalte0> <AlterInBatch>false</AlterInBatch> <Aufgehoben>false</Aufgehoben> <CanBeReferenced>true</CanBeReferenced> <Disabled>false</Disabled> <Domain>StringIdent</Domain> <Editordescriptor> <Editormember>false</Editormember> <LabelText></LabelText> <MaxCharacters>0</MaxCharacters> <Mnemonic></Mnemonic> <Position>0</Position> <ReferenceWeight>keine</ReferenceWeight> <RessourceIdentifier></RessourceIdentifier> <ToolTipText></ToolTipText> </Editordescriptor> <ForeignKey>false</ForeignKey> <Global>false</Global> <GlobalId>false</GlobalId> <HideReference>false</HideReference> <History></History> <IndexSearchMember>false</IndexSearchMember> <Indexed>false</Indexed> <IndividualDefaultValue></IndividualDefaultValue> <Kodiert>false</Kodiert> <Kommentar></Kommentar> <Konsistenz> <Writeablemember>false</Writeablemember> </Konsistenz> <LastModificationField>false</LastModificationField> <ListItemField>false</ListItemField> <Name>DeviceType</Name> <NotNull>true</NotNull> <PanelNumber>0</PanelNumber> <Parameter></Parameter> <PrimaryKey>true</PrimaryKey> <RemovedStateField>false</RemovedStateField> <TechnicalField>false</TechnicalField> <Unique>false</Unique> </Spalte0> </Spalten> <Stereotype> <Anzahl>0</Anzahl> </Stereotype> <Views> <Anzahl>1</Anzahl> <View0> <Name>Main</Name> <X>1150</X> <Y>1300</Y> </View0> </Views> </Tabelle20> <Tabelle21> <Aufgehoben>false</Aufgehoben> <Codegenerator> <AuswahlMembers> <Anzahl>0</Anzahl> </AuswahlMembers> <CompareMembers> <Anzahl>0</Anzahl> </CompareMembers> <Equalsmembers> <Anzahl>0</Anzahl> </Equalsmembers> <HashCodeMembers> <Anzahl>0</Anzahl> </HashCodeMembers> <NReferenzen> <Anzahl>0</Anzahl> </NReferenzen> <OrderMembers> <Anzahl>0</Anzahl> </OrderMembers> <ToComboStringMembers> <Anzahl>0</Anzahl> </ToComboStringMembers> <ToStringMembers> <Anzahl>0</Anzahl> </ToStringMembers> </Codegenerator> <Farben> <Hintergrund>pastell-rot</Hintergrund> <Schrift>schwarz</Schrift> </Farben> <FirstGenerationDone>false</FirstGenerationDone> <History>@changed OLI 17.04.2013 - Added by using the database update script.</History> <InDevelopment>false</InDevelopment> <Kommentar></Kommentar> <NMRelation>false</NMRelation> <Name>MenuEntry</Name> <Panels> <Anzahl>1</Anzahl> <Panel0> <PanelClass></PanelClass> <PanelNumber>0</PanelNumber> <TabMnemonic>1</TabMnemonic> <TabTitle>1.Daten</TabTitle> <TabToolTipText>Hier k&ouml;nnen Sie die Daten des Objekt warten</TabToolTipText> </Panel0> </Panels> <Spalten> <Anzahl>4</Anzahl> <Codegenerator> <ActiveInApplication>false</ActiveInApplication> <Codegeneratoroptionen></Codegeneratoroptionen> <Codeverzeichnis>.</Codeverzeichnis> <Codieren>true</Codieren> <DynamicCode>true</DynamicCode> <Inherited>false</Inherited> <Kontextname></Kontextname> <UniqueFormula></UniqueFormula> </Codegenerator> <Spalte0> <AlterInBatch>false</AlterInBatch> <Aufgehoben>false</Aufgehoben> <CanBeReferenced>true</CanBeReferenced> <Disabled>false</Disabled> <Domain>StringIdent</Domain> <Editordescriptor> <Editormember>false</Editormember> <LabelText></LabelText> <MaxCharacters>0</MaxCharacters> <Mnemonic></Mnemonic> <Position>0</Position> <ReferenceWeight>keine</ReferenceWeight> <RessourceIdentifier></RessourceIdentifier> <ToolTipText></ToolTipText> </Editordescriptor> <ForeignKey>false</ForeignKey> <Global>false</Global> <GlobalId>false</GlobalId> <HideReference>false</HideReference> <History></History> <IndexSearchMember>false</IndexSearchMember> <Indexed>false</Indexed> <IndividualDefaultValue></IndividualDefaultValue> <Kodiert>false</Kodiert> <Kommentar></Kommentar> <Konsistenz> <Writeablemember>false</Writeablemember> </Konsistenz> <LastModificationField>false</LastModificationField> <ListItemField>false</ListItemField> <Name>Identifier</Name> <NotNull>true</NotNull> <PanelNumber>0</PanelNumber> <Parameter></Parameter> <PrimaryKey>true</PrimaryKey> <RemovedStateField>false</RemovedStateField> <TechnicalField>false</TechnicalField> <Unique>false</Unique> </Spalte0> <Spalte1> <AlterInBatch>false</AlterInBatch> <Aufgehoben>false</Aufgehoben> <CanBeReferenced>false</CanBeReferenced> <Disabled>false</Disabled> <Domain>Level</Domain> <Editordescriptor> <Editormember>false</Editormember> <LabelText></LabelText> <MaxCharacters>0</MaxCharacters> <Mnemonic></Mnemonic> <Position>0</Position> <ReferenceWeight>keine</ReferenceWeight> <RessourceIdentifier></RessourceIdentifier> <ToolTipText></ToolTipText> </Editordescriptor> <ForeignKey>false</ForeignKey> <Global>false</Global> <GlobalId>false</GlobalId> <HideReference>false</HideReference> <History></History> <IndexSearchMember>false</IndexSearchMember> <Indexed>false</Indexed> <IndividualDefaultValue></IndividualDefaultValue> <Kodiert>false</Kodiert> <Kommentar></Kommentar> <Konsistenz> <Writeablemember>false</Writeablemember> </Konsistenz> <LastModificationField>false</LastModificationField> <ListItemField>false</ListItemField> <Name>Level</Name> <NotNull>false</NotNull> <PanelNumber>0</PanelNumber> <Parameter></Parameter> <PrimaryKey>false</PrimaryKey> <RemovedStateField>false</RemovedStateField> <TechnicalField>false</TechnicalField> <Unique>false</Unique> </Spalte1> <Spalte2> <AlterInBatch>false</AlterInBatch> <Aufgehoben>false</Aufgehoben> <CanBeReferenced>false</CanBeReferenced> <Disabled>false</Disabled> <Domain>StringIdent</Domain> <Editordescriptor> <Editormember>false</Editormember> <LabelText></LabelText> <MaxCharacters>0</MaxCharacters> <Mnemonic></Mnemonic> <Position>0</Position> <ReferenceWeight>keine</ReferenceWeight> <RessourceIdentifier></RessourceIdentifier> <ToolTipText></ToolTipText> </Editordescriptor> <ForeignKey>false</ForeignKey> <Global>false</Global> <GlobalId>false</GlobalId> <HideReference>false</HideReference> <History></History> <IndexSearchMember>false</IndexSearchMember> <Indexed>false</Indexed> <IndividualDefaultValue></IndividualDefaultValue> <Kodiert>false</Kodiert> <Kommentar></Kommentar> <Konsistenz> <Writeablemember>false</Writeablemember> </Konsistenz> <LastModificationField>false</LastModificationField> <ListItemField>false</ListItemField> <Name>Owner</Name> <NotNull>true</NotNull> <PanelNumber>0</PanelNumber> <Parameter></Parameter> <PrimaryKey>false</PrimaryKey> <RemovedStateField>false</RemovedStateField> <TechnicalField>false</TechnicalField> <Unique>false</Unique> </Spalte2> <Spalte3> <AlterInBatch>false</AlterInBatch> <Aufgehoben>false</Aufgehoben> <CanBeReferenced>false</CanBeReferenced> <Disabled>false</Disabled> <Domain>SortOrder</Domain> <Editordescriptor> <Editormember>false</Editormember> <LabelText></LabelText> <MaxCharacters>0</MaxCharacters> <Mnemonic></Mnemonic> <Position>0</Position> <ReferenceWeight>keine</ReferenceWeight> <RessourceIdentifier></RessourceIdentifier> <ToolTipText></ToolTipText> </Editordescriptor> <ForeignKey>false</ForeignKey> <Global>false</Global> <GlobalId>false</GlobalId> <HideReference>false</HideReference> <History></History> <IndexSearchMember>false</IndexSearchMember> <Indexed>false</Indexed> <IndividualDefaultValue></IndividualDefaultValue> <Kodiert>false</Kodiert> <Kommentar></Kommentar> <Konsistenz> <Writeablemember>false</Writeablemember> </Konsistenz> <LastModificationField>false</LastModificationField> <ListItemField>false</ListItemField> <Name>SortOrder</Name> <NotNull>false</NotNull> <PanelNumber>0</PanelNumber> <Parameter></Parameter> <PrimaryKey>false</PrimaryKey> <RemovedStateField>false</RemovedStateField> <TechnicalField>false</TechnicalField> <Unique>false</Unique> </Spalte3> </Spalten> <Stereotype> <Anzahl>0</Anzahl> </Stereotype> <Views> <Anzahl>1</Anzahl> <View0> <Name>Main</Name> <X>1675</X> <Y>1300</Y> </View0> </Views> </Tabelle21> <Tabelle22> <Aufgehoben>false</Aufgehoben> <Codegenerator> <AuswahlMembers> <Anzahl>0</Anzahl> </AuswahlMembers> <CompareMembers> <Anzahl>0</Anzahl> </CompareMembers> <Equalsmembers> <Anzahl>0</Anzahl> </Equalsmembers> <HashCodeMembers> <Anzahl>0</Anzahl> </HashCodeMembers> <NReferenzen> <Anzahl>0</Anzahl> </NReferenzen> <OrderMembers> <Anzahl>0</Anzahl> </OrderMembers> <ToComboStringMembers> <Anzahl>0</Anzahl> </ToComboStringMembers> <ToStringMembers> <Anzahl>0</Anzahl> </ToStringMembers> </Codegenerator> <Farben> <Hintergrund>pastell-blau</Hintergrund> <Schrift>schwarz</Schrift> </Farben> <FirstGenerationDone>false</FirstGenerationDone> <History>@changed OLI 17.04.2013 - Added by using the database update script.</History> <InDevelopment>false</InDevelopment> <Kommentar></Kommentar> <NMRelation>false</NMRelation> <Name>SQLReport</Name> <Panels> <Anzahl>1</Anzahl> <Panel0> <PanelClass></PanelClass> <PanelNumber>0</PanelNumber> <TabMnemonic>1</TabMnemonic> <TabTitle>1.Daten</TabTitle> <TabToolTipText>Hier k&ouml;nnen Sie die Daten des Objekt warten</TabToolTipText> </Panel0> </Panels> <Spalten> <Anzahl>6</Anzahl> <Codegenerator> <ActiveInApplication>false</ActiveInApplication> <Codegeneratoroptionen></Codegeneratoroptionen> <Codeverzeichnis>.</Codeverzeichnis> <Codieren>true</Codieren> <DynamicCode>true</DynamicCode> <Inherited>false</Inherited> <Kontextname></Kontextname> <UniqueFormula></UniqueFormula> </Codegenerator> <Spalte0> <AlterInBatch>false</AlterInBatch> <Aufgehoben>false</Aufgehoben> <CanBeReferenced>true</CanBeReferenced> <Disabled>false</Disabled> <Domain>NumericIdent</Domain> <Editordescriptor> <Editormember>false</Editormember> <LabelText></LabelText> <MaxCharacters>0</MaxCharacters> <Mnemonic></Mnemonic> <Position>0</Position> <ReferenceWeight>keine</ReferenceWeight> <RessourceIdentifier></RessourceIdentifier> <ToolTipText></ToolTipText> </Editordescriptor> <ForeignKey>false</ForeignKey> <Global>false</Global> <GlobalId>false</GlobalId> <HideReference>false</HideReference> <History></History> <IndexSearchMember>false</IndexSearchMember> <Indexed>false</Indexed> <IndividualDefaultValue></IndividualDefaultValue> <Kodiert>false</Kodiert> <Kommentar></Kommentar> <Konsistenz> <Writeablemember>false</Writeablemember> </Konsistenz> <LastModificationField>false</LastModificationField> <ListItemField>false</ListItemField> <Name>Id</Name> <NotNull>true</NotNull> <PanelNumber>0</PanelNumber> <Parameter></Parameter> <PrimaryKey>true</PrimaryKey> <RemovedStateField>false</RemovedStateField> <TechnicalField>false</TechnicalField> <Unique>false</Unique> </Spalte0> <Spalte1> <AlterInBatch>false</AlterInBatch> <Aufgehoben>false</Aufgehoben> <CanBeReferenced>false</CanBeReferenced> <Disabled>false</Disabled> <Domain>LongDescription</Domain> <Editordescriptor> <Editormember>false</Editormember> <LabelText></LabelText> <MaxCharacters>0</MaxCharacters> <Mnemonic></Mnemonic> <Position>0</Position> <ReferenceWeight>keine</ReferenceWeight> <RessourceIdentifier></RessourceIdentifier> <ToolTipText></ToolTipText> </Editordescriptor> <ForeignKey>false</ForeignKey> <Global>false</Global> <GlobalId>false</GlobalId> <HideReference>false</HideReference> <History></History> <IndexSearchMember>false</IndexSearchMember> <Indexed>false</Indexed> <IndividualDefaultValue></IndividualDefaultValue> <Kodiert>false</Kodiert> <Kommentar></Kommentar> <Konsistenz> <Writeablemember>false</Writeablemember> </Konsistenz> <LastModificationField>false</LastModificationField> <ListItemField>false</ListItemField> <Name>Description</Name> <NotNull>false</NotNull> <PanelNumber>0</PanelNumber> <Parameter></Parameter> <PrimaryKey>false</PrimaryKey> <RemovedStateField>false</RemovedStateField> <TechnicalField>false</TechnicalField> <Unique>false</Unique> </Spalte1> <Spalte2> <AlterInBatch>false</AlterInBatch> <Aufgehoben>false</Aufgehoben> <CanBeReferenced>false</CanBeReferenced> <Disabled>false</Disabled> <Domain>FetchType</Domain> <Editordescriptor> <Editormember>false</Editormember> <LabelText></LabelText> <MaxCharacters>0</MaxCharacters> <Mnemonic></Mnemonic> <Position>0</Position> <ReferenceWeight>keine</ReferenceWeight> <RessourceIdentifier></RessourceIdentifier> <ToolTipText></ToolTipText> </Editordescriptor> <ForeignKey>false</ForeignKey> <Global>false</Global> <GlobalId>false</GlobalId> <HideReference>false</HideReference> <History></History> <IndexSearchMember>false</IndexSearchMember> <Indexed>false</Indexed> <IndividualDefaultValue></IndividualDefaultValue> <Kodiert>false</Kodiert> <Kommentar></Kommentar> <Konsistenz> <Writeablemember>false</Writeablemember> </Konsistenz> <LastModificationField>false</LastModificationField> <ListItemField>false</ListItemField> <Name>FetchType</Name> <NotNull>false</NotNull> <PanelNumber>0</PanelNumber> <Parameter></Parameter> <PrimaryKey>false</PrimaryKey> <RemovedStateField>false</RemovedStateField> <TechnicalField>false</TechnicalField> <Unique>false</Unique> </Spalte2> <Spalte3> <AlterInBatch>false</AlterInBatch> <Aufgehoben>false</Aufgehoben> <CanBeReferenced>false</CanBeReferenced> <Disabled>false</Disabled> <Domain>Name</Domain> <Editordescriptor> <Editormember>false</Editormember> <LabelText></LabelText> <MaxCharacters>0</MaxCharacters> <Mnemonic></Mnemonic> <Position>0</Position> <ReferenceWeight>keine</ReferenceWeight> <RessourceIdentifier></RessourceIdentifier> <ToolTipText></ToolTipText> </Editordescriptor> <ForeignKey>false</ForeignKey> <Global>false</Global> <GlobalId>false</GlobalId> <HideReference>false</HideReference> <History></History> <IndexSearchMember>false</IndexSearchMember> <Indexed>false</Indexed> <IndividualDefaultValue></IndividualDefaultValue> <Kodiert>false</Kodiert> <Kommentar></Kommentar> <Konsistenz> <Writeablemember>false</Writeablemember> </Konsistenz> <LastModificationField>false</LastModificationField> <ListItemField>false</ListItemField> <Name>Name</Name> <NotNull>true</NotNull> <PanelNumber>0</PanelNumber> <Parameter></Parameter> <PrimaryKey>false</PrimaryKey> <RemovedStateField>false</RemovedStateField> <TechnicalField>false</TechnicalField> <Unique>false</Unique> </Spalte3> <Spalte4> <AlterInBatch>false</AlterInBatch> <Aufgehoben>false</Aufgehoben> <CanBeReferenced>false</CanBeReferenced> <Disabled>false</Disabled> <Domain>NumericIdent</Domain> <Editordescriptor> <Editormember>false</Editormember> <LabelText></LabelText> <MaxCharacters>0</MaxCharacters> <Mnemonic></Mnemonic> <Position>0</Position> <ReferenceWeight>keine</ReferenceWeight> <RessourceIdentifier></RessourceIdentifier> <ToolTipText></ToolTipText> </Editordescriptor> <ForeignKey>false</ForeignKey> <Global>false</Global> <GlobalId>false</GlobalId> <HideReference>false</HideReference> <History></History> <IndexSearchMember>false</IndexSearchMember> <Indexed>false</Indexed> <IndividualDefaultValue></IndividualDefaultValue> <Kodiert>false</Kodiert> <Kommentar></Kommentar> <Konsistenz> <Writeablemember>false</Writeablemember> </Konsistenz> <LastModificationField>false</LastModificationField> <ListItemField>false</ListItemField> <Name>Owner</Name> <NotNull>false</NotNull> <PanelNumber>0</PanelNumber> <Parameter></Parameter> <PrimaryKey>false</PrimaryKey> <RemovedStateField>false</RemovedStateField> <TechnicalField>false</TechnicalField> <Unique>false</Unique> </Spalte4> <Spalte5> <AlterInBatch>false</AlterInBatch> <Aufgehoben>false</Aufgehoben> <CanBeReferenced>false</CanBeReferenced> <Disabled>false</Disabled> <Domain>SQLQuery</Domain> <Editordescriptor> <Editormember>false</Editormember> <LabelText></LabelText> <MaxCharacters>0</MaxCharacters> <Mnemonic></Mnemonic> <Position>0</Position> <ReferenceWeight>keine</ReferenceWeight> <RessourceIdentifier></RessourceIdentifier> <ToolTipText></ToolTipText> </Editordescriptor> <ForeignKey>false</ForeignKey> <Global>false</Global> <GlobalId>false</GlobalId> <HideReference>false</HideReference> <History></History> <IndexSearchMember>false</IndexSearchMember> <Indexed>false</Indexed> <IndividualDefaultValue></IndividualDefaultValue> <Kodiert>false</Kodiert> <Kommentar></Kommentar> <Konsistenz> <Writeablemember>false</Writeablemember> </Konsistenz> <LastModificationField>false</LastModificationField> <ListItemField>false</ListItemField> <Name>SQLQuery</Name> <NotNull>false</NotNull> <PanelNumber>0</PanelNumber> <Parameter></Parameter> <PrimaryKey>false</PrimaryKey> <RemovedStateField>false</RemovedStateField> <TechnicalField>false</TechnicalField> <Unique>false</Unique> </Spalte5> </Spalten> <Stereotype> <Anzahl>0</Anzahl> </Stereotype> <Views> <Anzahl>1</Anzahl> <View0> <Name>Main</Name> <X>1675</X> <Y>700</Y> </View0> </Views> </Tabelle22> <Tabelle23> <Aufgehoben>false</Aufgehoben> <Codegenerator> <AuswahlMembers> <Anzahl>0</Anzahl> </AuswahlMembers> <CompareMembers> <Anzahl>0</Anzahl> </CompareMembers> <Equalsmembers> <Anzahl>0</Anzahl> </Equalsmembers> <HashCodeMembers> <Anzahl>0</Anzahl> </HashCodeMembers> <NReferenzen> <Anzahl>0</Anzahl> </NReferenzen> <OrderMembers> <Anzahl>0</Anzahl> </OrderMembers> <ToComboStringMembers> <Anzahl>0</Anzahl> </ToComboStringMembers> <ToStringMembers> <Anzahl>0</Anzahl> </ToStringMembers> </Codegenerator> <Farben> <Hintergrund>pastell-blau</Hintergrund> <Schrift>schwarz</Schrift> </Farben> <FirstGenerationDone>false</FirstGenerationDone> <History></History> <InDevelopment>false</InDevelopment> <Kommentar></Kommentar> <NMRelation>false</NMRelation> <Name>SQLReportSharedUser</Name> <Panels> <Anzahl>1</Anzahl> <Panel0> <PanelClass></PanelClass> <PanelNumber>0</PanelNumber> <TabMnemonic>1</TabMnemonic> <TabTitle>1.Daten</TabTitle> <TabToolTipText>Hier k&ouml;nnen Sie die Daten des Objekt warten</TabToolTipText> </Panel0> </Panels> <Spalten> <Anzahl>4</Anzahl> <Codegenerator> <ActiveInApplication>false</ActiveInApplication> <Codegeneratoroptionen></Codegeneratoroptionen> <Codeverzeichnis>.</Codeverzeichnis> <Codieren>true</Codieren> <DynamicCode>true</DynamicCode> <Inherited>false</Inherited> <Kontextname></Kontextname> <UniqueFormula></UniqueFormula> </Codegenerator> <Spalte0> <AlterInBatch>false</AlterInBatch> <Aufgehoben>false</Aufgehoben> <CanBeReferenced>true</CanBeReferenced> <Disabled>false</Disabled> <Domain>Boolean</Domain> <Editordescriptor> <Editormember>false</Editormember> <LabelText></LabelText> <MaxCharacters>0</MaxCharacters> <Mnemonic></Mnemonic> <Position>0</Position> <ReferenceWeight>keine</ReferenceWeight> <RessourceIdentifier></RessourceIdentifier> <ToolTipText></ToolTipText> </Editordescriptor> <ForeignKey>false</ForeignKey> <Global>false</Global> <GlobalId>false</GlobalId> <HideReference>false</HideReference> <History></History> <IndexSearchMember>false</IndexSearchMember> <Indexed>false</Indexed> <IndividualDefaultValue></IndividualDefaultValue> <Kodiert>false</Kodiert> <Kommentar></Kommentar> <Konsistenz> <Writeablemember>false</Writeablemember> </Konsistenz> <LastModificationField>false</LastModificationField> <ListItemField>false</ListItemField> <Name>User</Name> <NotNull>true</NotNull> <PanelNumber>0</PanelNumber> <Parameter></Parameter> <PrimaryKey>true</PrimaryKey> <RemovedStateField>false</RemovedStateField> <TechnicalField>false</TechnicalField> <Unique>false</Unique> </Spalte0> <Spalte1> <AlterInBatch>false</AlterInBatch> <Aufgehoben>false</Aufgehoben> <CanBeReferenced>true</CanBeReferenced> <Disabled>false</Disabled> <Domain>NumericIdent</Domain> <Editordescriptor> <Editormember>false</Editormember> <LabelText></LabelText> <MaxCharacters>0</MaxCharacters> <Mnemonic></Mnemonic> <Position>0</Position> <ReferenceWeight>keine</ReferenceWeight> <RessourceIdentifier></RessourceIdentifier> <ToolTipText></ToolTipText> </Editordescriptor> <ForeignKey>false</ForeignKey> <Global>false</Global> <GlobalId>false</GlobalId> <HideReference>false</HideReference> <History></History> <IndexSearchMember>false</IndexSearchMember> <Indexed>false</Indexed> <IndividualDefaultValue></IndividualDefaultValue> <Kodiert>false</Kodiert> <Kommentar></Kommentar> <Konsistenz> <Writeablemember>false</Writeablemember> </Konsistenz> <LastModificationField>false</LastModificationField> <ListItemField>false</ListItemField> <Name>UserId</Name> <NotNull>true</NotNull> <PanelNumber>0</PanelNumber> <Parameter></Parameter> <PrimaryKey>true</PrimaryKey> <RemovedStateField>false</RemovedStateField> <TechnicalField>false</TechnicalField> <Unique>false</Unique> </Spalte1> <Spalte2> <AlterInBatch>false</AlterInBatch> <Aufgehoben>false</Aufgehoben> <CanBeReferenced>false</CanBeReferenced> <Disabled>false</Disabled> <Domain>Boolean</Domain> <Editordescriptor> <Editormember>false</Editormember> <LabelText></LabelText> <MaxCharacters>0</MaxCharacters> <Mnemonic></Mnemonic> <Position>0</Position> <ReferenceWeight>keine</ReferenceWeight> <RessourceIdentifier></RessourceIdentifier> <ToolTipText></ToolTipText> </Editordescriptor> <ForeignKey>false</ForeignKey> <Global>false</Global> <GlobalId>false</GlobalId> <HideReference>false</HideReference> <History></History> <IndexSearchMember>false</IndexSearchMember> <Indexed>false</Indexed> <IndividualDefaultValue></IndividualDefaultValue> <Kodiert>false</Kodiert> <Kommentar></Kommentar> <Konsistenz> <Writeablemember>false</Writeablemember> </Konsistenz> <LastModificationField>false</LastModificationField> <ListItemField>false</ListItemField> <Name>WriteAccess</Name> <NotNull>false</NotNull> <PanelNumber>0</PanelNumber> <Parameter></Parameter> <PrimaryKey>false</PrimaryKey> <RemovedStateField>false</RemovedStateField> <TechnicalField>false</TechnicalField> <Unique>false</Unique> </Spalte2> <Spalte3> <AlterInBatch>false</AlterInBatch> <Aufgehoben>false</Aufgehoben> <CanBeReferenced>true</CanBeReferenced> <Disabled>false</Disabled> <Domain>NumericIdent</Domain> <Editordescriptor> <Editormember>false</Editormember> <LabelText></LabelText> <MaxCharacters>0</MaxCharacters> <Mnemonic></Mnemonic> <Position>0</Position> <ReferenceWeight>keine</ReferenceWeight> <RessourceIdentifier></RessourceIdentifier> <ToolTipText></ToolTipText> </Editordescriptor> <ForeignKey>true</ForeignKey> <Global>false</Global> <GlobalId>false</GlobalId> <HideReference>false</HideReference> <History></History> <IndexSearchMember>false</IndexSearchMember> <Indexed>false</Indexed> <IndividualDefaultValue></IndividualDefaultValue> <Kodiert>false</Kodiert> <Kommentar></Kommentar> <Konsistenz> <Writeablemember>false</Writeablemember> </Konsistenz> <LastModificationField>false</LastModificationField> <ListItemField>false</ListItemField> <Name>SQLReportId</Name> <NotNull>true</NotNull> <PanelNumber>0</PanelNumber> <Parameter></Parameter> <PrimaryKey>true</PrimaryKey> <Referenz> <Direction0>UP</Direction0> <Direction1>DOWN</Direction1> <Offset0>25</Offset0> <Offset1>25</Offset1> <Spalte>Id</Spalte> <Tabelle>SQLReport</Tabelle> <Views> <Anzahl>1</Anzahl> <View0> <Direction0>UP</Direction0> <Direction1>DOWN</Direction1> <Name>Main</Name> <Offset0>25</Offset0> <Offset1>25</Offset1> <Points> <Anzahl>0</Anzahl> </Points> </View0> </Views> </Referenz> <RemovedStateField>false</RemovedStateField> <TechnicalField>false</TechnicalField> <Unique>false</Unique> </Spalte3> </Spalten> <Stereotype> <Anzahl>0</Anzahl> </Stereotype> <Views> <Anzahl>1</Anzahl> <View0> <Name>Main</Name> <X>1675</X> <Y>900</Y> </View0> </Views> </Tabelle23> <Tabelle24> <Aufgehoben>false</Aufgehoben> <Codegenerator> <AuswahlMembers> <Anzahl>0</Anzahl> </AuswahlMembers> <CompareMembers> <Anzahl>0</Anzahl> </CompareMembers> <Equalsmembers> <Anzahl>0</Anzahl> </Equalsmembers> <HashCodeMembers> <Anzahl>0</Anzahl> </HashCodeMembers> <NReferenzen> <Anzahl>0</Anzahl> </NReferenzen> <OrderMembers> <Anzahl>0</Anzahl> </OrderMembers> <ToComboStringMembers> <Anzahl>0</Anzahl> </ToComboStringMembers> <ToStringMembers> <Anzahl>0</Anzahl> </ToStringMembers> </Codegenerator> <Farben> <Hintergrund>pastell-lila</Hintergrund> <Schrift>schwarz</Schrift> </Farben> <FirstGenerationDone>false</FirstGenerationDone> <History>@changed OLI 13.06.2013 - Added (by Hiba to the script).</History> <InDevelopment>false</InDevelopment> <Kommentar>This table contains the maps (floor plans) of the system.</Kommentar> <NMRelation>false</NMRelation> <Name>Map</Name> <Panels> <Anzahl>1</Anzahl> <Panel0> <PanelClass></PanelClass> <PanelNumber>0</PanelNumber> <TabMnemonic>1</TabMnemonic> <TabTitle>1.Daten</TabTitle> <TabToolTipText>Hier k&ouml;nnen Sie die Daten des Objekt warten</TabToolTipText> </Panel0> </Panels> <Spalten> <Anzahl>4</Anzahl> <Codegenerator> <ActiveInApplication>false</ActiveInApplication> <Codegeneratoroptionen></Codegeneratoroptionen> <Codeverzeichnis>.</Codeverzeichnis> <Codieren>true</Codieren> <DynamicCode>true</DynamicCode> <Inherited>false</Inherited> <Kontextname></Kontextname> <UniqueFormula></UniqueFormula> </Codegenerator> <Spalte0> <AlterInBatch>false</AlterInBatch> <Aufgehoben>false</Aufgehoben> <CanBeReferenced>true</CanBeReferenced> <Disabled>false</Disabled> <Domain>NumericIdent</Domain> <Editordescriptor> <Editormember>false</Editormember> <LabelText></LabelText> <MaxCharacters>0</MaxCharacters> <Mnemonic></Mnemonic> <Position>0</Position> <ReferenceWeight>keine</ReferenceWeight> <RessourceIdentifier></RessourceIdentifier> <ToolTipText></ToolTipText> </Editordescriptor> <ForeignKey>false</ForeignKey> <Global>false</Global> <GlobalId>false</GlobalId> <HideReference>false</HideReference> <History>@changed OLI 13.06.2013 - Added .</History> <IndexSearchMember>false</IndexSearchMember> <Indexed>false</Indexed> <IndividualDefaultValue></IndividualDefaultValue> <Kodiert>false</Kodiert> <Kommentar>The id of the record.</Kommentar> <Konsistenz> <Writeablemember>false</Writeablemember> </Konsistenz> <LastModificationField>false</LastModificationField> <ListItemField>false</ListItemField> <Name>Id</Name> <NotNull>true</NotNull> <PanelNumber>0</PanelNumber> <Parameter></Parameter> <PrimaryKey>true</PrimaryKey> <RemovedStateField>false</RemovedStateField> <TechnicalField>false</TechnicalField> <Unique>false</Unique> </Spalte0> <Spalte1> <AlterInBatch>false</AlterInBatch> <Aufgehoben>false</Aufgehoben> <CanBeReferenced>false</CanBeReferenced> <Disabled>false</Disabled> <Domain>Description</Domain> <Editordescriptor> <Editormember>false</Editormember> <LabelText></LabelText> <MaxCharacters>0</MaxCharacters> <Mnemonic></Mnemonic> <Position>0</Position> <ReferenceWeight>keine</ReferenceWeight> <RessourceIdentifier></RessourceIdentifier> <ToolTipText></ToolTipText> </Editordescriptor> <ForeignKey>false</ForeignKey> <Global>false</Global> <GlobalId>false</GlobalId> <HideReference>false</HideReference> <History>@changed OLI 13.06.2013 - Added.</History> <IndexSearchMember>false</IndexSearchMember> <Indexed>false</Indexed> <IndividualDefaultValue></IndividualDefaultValue> <Kodiert>false</Kodiert> <Kommentar>A description for the record.</Kommentar> <Konsistenz> <Writeablemember>false</Writeablemember> </Konsistenz> <LastModificationField>false</LastModificationField> <ListItemField>false</ListItemField> <Name>Description</Name> <NotNull>false</NotNull> <PanelNumber>0</PanelNumber> <Parameter></Parameter> <PrimaryKey>false</PrimaryKey> <RemovedStateField>false</RemovedStateField> <TechnicalField>false</TechnicalField> <Unique>false</Unique> </Spalte1> <Spalte2> <AlterInBatch>false</AlterInBatch> <Aufgehoben>false</Aufgehoben> <CanBeReferenced>false</CanBeReferenced> <Disabled>false</Disabled> <Domain>Description</Domain> <Editordescriptor> <Editormember>false</Editormember> <LabelText></LabelText> <MaxCharacters>0</MaxCharacters> <Mnemonic></Mnemonic> <Position>0</Position> <ReferenceWeight>keine</ReferenceWeight> <RessourceIdentifier></RessourceIdentifier> <ToolTipText></ToolTipText> </Editordescriptor> <ForeignKey>false</ForeignKey> <Global>false</Global> <GlobalId>false</GlobalId> <HideReference>false</HideReference> <History>@changed OLI 13.06.2013 - Added.</History> <IndexSearchMember>false</IndexSearchMember> <Indexed>true</Indexed> <IndividualDefaultValue></IndividualDefaultValue> <Kodiert>false</Kodiert> <Kommentar>A name for the map record.</Kommentar> <Konsistenz> <Writeablemember>false</Writeablemember> </Konsistenz> <LastModificationField>false</LastModificationField> <ListItemField>false</ListItemField> <Name>Name</Name> <NotNull>true</NotNull> <PanelNumber>0</PanelNumber> <Parameter></Parameter> <PrimaryKey>false</PrimaryKey> <RemovedStateField>false</RemovedStateField> <TechnicalField>false</TechnicalField> <Unique>true</Unique> </Spalte2> <Spalte3> <AlterInBatch>false</AlterInBatch> <Aufgehoben>false</Aufgehoben> <CanBeReferenced>false</CanBeReferenced> <Disabled>false</Disabled> <Domain>Description</Domain> <Editordescriptor> <Editormember>false</Editormember> <LabelText></LabelText> <MaxCharacters>0</MaxCharacters> <Mnemonic></Mnemonic> <Position>0</Position> <ReferenceWeight>keine</ReferenceWeight> <RessourceIdentifier></RessourceIdentifier> <ToolTipText></ToolTipText> </Editordescriptor> <ForeignKey>false</ForeignKey> <Global>false</Global> <GlobalId>false</GlobalId> <HideReference>false</HideReference> <History>@changed OLI 13.06.2013 - Added.</History> <IndexSearchMember>false</IndexSearchMember> <Indexed>true</Indexed> <IndividualDefaultValue></IndividualDefaultValue> <Kodiert>false</Kodiert> <Kommentar>A token for the map record.</Kommentar> <Konsistenz> <Writeablemember>false</Writeablemember> </Konsistenz> <LastModificationField>false</LastModificationField> <ListItemField>false</ListItemField> <Name>Token</Name> <NotNull>true</NotNull> <PanelNumber>0</PanelNumber> <Parameter></Parameter> <PrimaryKey>false</PrimaryKey> <RemovedStateField>false</RemovedStateField> <TechnicalField>false</TechnicalField> <Unique>true</Unique> </Spalte3> </Spalten> <Stereotype> <Anzahl>0</Anzahl> </Stereotype> <Views> <Anzahl>1</Anzahl> <View0> <Name>Main</Name> <X>75</X> <Y>1825</Y> </View0> </Views> </Tabelle24> <Tabelle25> <Aufgehoben>false</Aufgehoben> <Codegenerator> <AuswahlMembers> <Anzahl>0</Anzahl> </AuswahlMembers> <CompareMembers> <Anzahl>0</Anzahl> </CompareMembers> <Equalsmembers> <Anzahl>0</Anzahl> </Equalsmembers> <HashCodeMembers> <Anzahl>0</Anzahl> </HashCodeMembers> <NReferenzen> <Anzahl>0</Anzahl> </NReferenzen> <OrderMembers> <Anzahl>0</Anzahl> </OrderMembers> <ToComboStringMembers> <Anzahl>0</Anzahl> </ToComboStringMembers> <ToStringMembers> <Anzahl>0</Anzahl> </ToStringMembers> </Codegenerator> <Farben> <Hintergrund>pastell-lila</Hintergrund> <Schrift>schwarz</Schrift> </Farben> <FirstGenerationDone>false</FirstGenerationDone> <History>@changed OLI 13.06.2013 - Added.</History> <InDevelopment>false</InDevelopment> <Kommentar>A table which maps virtual maps to the maps of the device engine.</Kommentar> <NMRelation>false</NMRelation> <Name>MapMapping</Name> <Panels> <Anzahl>1</Anzahl> <Panel0> <PanelClass></PanelClass> <PanelNumber>0</PanelNumber> <TabMnemonic>1</TabMnemonic> <TabTitle>1.Daten</TabTitle> <TabToolTipText>Hier k&ouml;nnen Sie die Daten des Objekt warten</TabToolTipText> </Panel0> </Panels> <Spalten> <Anzahl>4</Anzahl> <Codegenerator> <ActiveInApplication>false</ActiveInApplication> <Codegeneratoroptionen></Codegeneratoroptionen> <Codeverzeichnis>.</Codeverzeichnis> <Codieren>true</Codieren> <DynamicCode>true</DynamicCode> <Inherited>false</Inherited> <Kontextname></Kontextname> <UniqueFormula></UniqueFormula> </Codegenerator> <Spalte0> <AlterInBatch>false</AlterInBatch> <Aufgehoben>false</Aufgehoben> <CanBeReferenced>true</CanBeReferenced> <Disabled>false</Disabled> <Domain>NumericIdent</Domain> <Editordescriptor> <Editormember>false</Editormember> <LabelText></LabelText> <MaxCharacters>0</MaxCharacters> <Mnemonic></Mnemonic> <Position>0</Position> <ReferenceWeight>keine</ReferenceWeight> <RessourceIdentifier></RessourceIdentifier> <ToolTipText></ToolTipText> </Editordescriptor> <ForeignKey>false</ForeignKey> <Global>false</Global> <GlobalId>false</GlobalId> <HideReference>false</HideReference> <History>@changed OLI 13.06.2013 - Added.</History> <IndexSearchMember>false</IndexSearchMember> <Indexed>false</Indexed> <IndividualDefaultValue></IndividualDefaultValue> <Kodiert>false</Kodiert> <Kommentar>The id of the mapping record.</Kommentar> <Konsistenz> <Writeablemember>false</Writeablemember> </Konsistenz> <LastModificationField>false</LastModificationField> <ListItemField>false</ListItemField> <Name>Id</Name> <NotNull>true</NotNull> <PanelNumber>0</PanelNumber> <Parameter></Parameter> <PrimaryKey>true</PrimaryKey> <RemovedStateField>false</RemovedStateField> <TechnicalField>false</TechnicalField> <Unique>false</Unique> </Spalte0> <Spalte1> <AlterInBatch>false</AlterInBatch> <Aufgehoben>false</Aufgehoben> <CanBeReferenced>false</CanBeReferenced> <Disabled>false</Disabled> <Domain>Description</Domain> <Editordescriptor> <Editormember>false</Editormember> <LabelText></LabelText> <MaxCharacters>0</MaxCharacters> <Mnemonic></Mnemonic> <Position>0</Position> <ReferenceWeight>keine</ReferenceWeight> <RessourceIdentifier></RessourceIdentifier> <ToolTipText></ToolTipText> </Editordescriptor> <ForeignKey>false</ForeignKey> <Global>false</Global> <GlobalId>false</GlobalId> <HideReference>false</HideReference> <History>@changed OLI - Added.</History> <IndexSearchMember>false</IndexSearchMember> <Indexed>true</Indexed> <IndividualDefaultValue></IndividualDefaultValue> <Kodiert>false</Kodiert> <Kommentar>A textual identifier for the map inside of the device engine.</Kommentar> <Konsistenz> <Writeablemember>false</Writeablemember> </Konsistenz> <LastModificationField>false</LastModificationField> <ListItemField>false</ListItemField> <Name>RealMapIdentifier</Name> <NotNull>true</NotNull> <PanelNumber>0</PanelNumber> <Parameter></Parameter> <PrimaryKey>false</PrimaryKey> <RemovedStateField>false</RemovedStateField> <TechnicalField>false</TechnicalField> <Unique>true</Unique> </Spalte1> <Spalte2> <AlterInBatch>false</AlterInBatch> <Aufgehoben>false</Aufgehoben> <CanBeReferenced>false</CanBeReferenced> <Disabled>false</Disabled> <Domain>NumericIdent</Domain> <Editordescriptor> <Editormember>false</Editormember> <LabelText></LabelText> <MaxCharacters>0</MaxCharacters> <Mnemonic></Mnemonic> <Position>0</Position> <ReferenceWeight>keine</ReferenceWeight> <RessourceIdentifier></RessourceIdentifier> <ToolTipText></ToolTipText> </Editordescriptor> <ForeignKey>true</ForeignKey> <Global>false</Global> <GlobalId>false</GlobalId> <HideReference>false</HideReference> <History>@changed OLI - Added.</History> <IndexSearchMember>false</IndexSearchMember> <Indexed>false</Indexed> <IndividualDefaultValue></IndividualDefaultValue> <Kodiert>false</Kodiert> <Kommentar>A reference to the device engine which the mapping is made for.</Kommentar> <Konsistenz> <Writeablemember>false</Writeablemember> </Konsistenz> <LastModificationField>false</LastModificationField> <ListItemField>false</ListItemField> <Name>DeviceEngine</Name> <NotNull>true</NotNull> <PanelNumber>0</PanelNumber> <Parameter></Parameter> <PrimaryKey>false</PrimaryKey> <Referenz> <Direction0>UP</Direction0> <Direction1>DOWN</Direction1> <Offset0>25</Offset0> <Offset1>25</Offset1> <Spalte>Id</Spalte> <Tabelle>DeviceEngine</Tabelle> <Views> <Anzahl>1</Anzahl> <View0> <Direction0>UP</Direction0> <Direction1>DOWN</Direction1> <Name>Main</Name> <Offset0>25</Offset0> <Offset1>25</Offset1> <Points> <Anzahl>0</Anzahl> </Points> </View0> </Views> </Referenz> <RemovedStateField>false</RemovedStateField> <TechnicalField>false</TechnicalField> <Unique>false</Unique> </Spalte2> <Spalte3> <AlterInBatch>false</AlterInBatch> <Aufgehoben>false</Aufgehoben> <CanBeReferenced>false</CanBeReferenced> <Disabled>false</Disabled> <Domain>NumericIdent</Domain> <Editordescriptor> <Editormember>false</Editormember> <LabelText></LabelText> <MaxCharacters>0</MaxCharacters> <Mnemonic></Mnemonic> <Position>0</Position> <ReferenceWeight>keine</ReferenceWeight> <RessourceIdentifier></RessourceIdentifier> <ToolTipText></ToolTipText> </Editordescriptor> <ForeignKey>true</ForeignKey> <Global>false</Global> <GlobalId>false</GlobalId> <HideReference>false</HideReference> <History>@changed OLI - Added.</History> <IndexSearchMember>false</IndexSearchMember> <Indexed>false</Indexed> <IndividualDefaultValue></IndividualDefaultValue> <Kodiert>false</Kodiert> <Kommentar>A reference to the map which the mapping is made for.</Kommentar> <Konsistenz> <Writeablemember>false</Writeablemember> </Konsistenz> <LastModificationField>false</LastModificationField> <ListItemField>false</ListItemField> <Name>Map</Name> <NotNull>true</NotNull> <PanelNumber>0</PanelNumber> <Parameter></Parameter> <PrimaryKey>false</PrimaryKey> <Referenz> <Direction0>DOWN</Direction0> <Direction1>UP</Direction1> <Offset0>25</Offset0> <Offset1>25</Offset1> <Spalte>Id</Spalte> <Tabelle>Map</Tabelle> <Views> <Anzahl>1</Anzahl> <View0> <Direction0>DOWN</Direction0> <Direction1>UP</Direction1> <Name>Main</Name> <Offset0>25</Offset0> <Offset1>25</Offset1> <Points> <Anzahl>0</Anzahl> </Points> </View0> </Views> </Referenz> <RemovedStateField>false</RemovedStateField> <TechnicalField>false</TechnicalField> <Unique>false</Unique> </Spalte3> </Spalten> <Stereotype> <Anzahl>0</Anzahl> </Stereotype> <Views> <Anzahl>1</Anzahl> <View0> <Name>Main</Name> <X>75</X> <Y>1575</Y> </View0> </Views> </Tabelle25> <Tabelle3> <Aufgehoben>false</Aufgehoben> <Codegenerator> <AuswahlMembers> <Anzahl>0</Anzahl> </AuswahlMembers> <CompareMembers> <Anzahl>0</Anzahl> </CompareMembers> <Equalsmembers> <Anzahl>0</Anzahl> </Equalsmembers> <HashCodeMembers> <Anzahl>0</Anzahl> </HashCodeMembers> <NReferenzen> <Anzahl>0</Anzahl> </NReferenzen> <OrderMembers> <Anzahl>0</Anzahl> </OrderMembers> <ToComboStringMembers> <Anzahl>0</Anzahl> </ToComboStringMembers> <ToStringMembers> <Anzahl>0</Anzahl> </ToStringMembers> </Codegenerator> <Farben> <Hintergrund>pastell-rot</Hintergrund> <Schrift>schwarz</Schrift> </Farben> <FirstGenerationDone>true</FirstGenerationDone> <History>@changed VM 12.12.2011 - Added.$BR$@changed OLI 11.01.2012 - Changed the field names to start with upper case letters.$BR$@changed OLI 18.01.2012 - Removed fields Description, Identifier and Name. Identifier is the same as code. The contents of description and name should come from the resources.$BR$</History> <InDevelopment>false</InDevelopment> <Kommentar>This table contains the insalled plug-ins.</Kommentar> <NMRelation>false</NMRelation> <Name>PlugInEntry</Name> <Panels> <Anzahl>1</Anzahl> <Panel0> <PanelClass></PanelClass> <PanelNumber>0</PanelNumber> <TabMnemonic>1</TabMnemonic> <TabTitle>1.Daten</TabTitle> <TabToolTipText>Hier k&ouml;nnen Sie die Daten des Objekt warten</TabToolTipText> </Panel0> </Panels> <Spalten> <Anzahl>8</Anzahl> <Codegenerator> <ActiveInApplication>false</ActiveInApplication> <Codegeneratoroptionen></Codegeneratoroptionen> <Codeverzeichnis>plugin.manager.persistence.db</Codeverzeichnis> <Codieren>false</Codieren> <DynamicCode>true</DynamicCode> <Inherited>false</Inherited> <Kontextname></Kontextname> <UniqueFormula></UniqueFormula> </Codegenerator> <Spalte0> <AlterInBatch>false</AlterInBatch> <Aufgehoben>false</Aufgehoben> <CanBeReferenced>true</CanBeReferenced> <Disabled>false</Disabled> <Domain>StringIdent</Domain> <Editordescriptor> <Editormember>false</Editormember> <LabelText></LabelText> <MaxCharacters>0</MaxCharacters> <Mnemonic></Mnemonic> <Position>0</Position> <ReferenceWeight>keine</ReferenceWeight> <RessourceIdentifier></RessourceIdentifier> <ToolTipText></ToolTipText> </Editordescriptor> <ForeignKey>false</ForeignKey> <Global>false</Global> <GlobalId>false</GlobalId> <HideReference>false</HideReference> <History>@changed VM 12.12.2011 - Added.$BR$@changed OLI 18.01.2012 - Type changed to varchar.</History> <IndexSearchMember>false</IndexSearchMember> <Indexed>false</Indexed> <IndividualDefaultValue></IndividualDefaultValue> <Kodiert>false</Kodiert> <Kommentar>The primary key of plug-in.</Kommentar> <Konsistenz> <Writeablemember>false</Writeablemember> </Konsistenz> <LastModificationField>false</LastModificationField> <ListItemField>false</ListItemField> <Name>Identifier</Name> <NotNull>true</NotNull> <PanelNumber>0</PanelNumber> <Parameter></Parameter> <PrimaryKey>true</PrimaryKey> <RemovedStateField>false</RemovedStateField> <TechnicalField>false</TechnicalField> <Unique>false</Unique> </Spalte0> <Spalte1> <AlterInBatch>false</AlterInBatch> <Aufgehoben>false</Aufgehoben> <CanBeReferenced>false</CanBeReferenced> <Disabled>false</Disabled> <Domain>Boolean</Domain> <Editordescriptor> <Editormember>false</Editormember> <LabelText></LabelText> <MaxCharacters>0</MaxCharacters> <Mnemonic></Mnemonic> <Position>0</Position> <ReferenceWeight>keine</ReferenceWeight> <RessourceIdentifier></RessourceIdentifier> <ToolTipText></ToolTipText> </Editordescriptor> <ForeignKey>false</ForeignKey> <Global>false</Global> <GlobalId>false</GlobalId> <HideReference>false</HideReference> <History>@changed VM 12.12.2011 - Added.</History> <IndexSearchMember>false</IndexSearchMember> <Indexed>false</Indexed> <IndividualDefaultValue>1</IndividualDefaultValue> <Kodiert>false</Kodiert> <Kommentar>Flag that describes, if plug-in can be activated.</Kommentar> <Konsistenz> <Writeablemember>false</Writeablemember> </Konsistenz> <LastModificationField>false</LastModificationField> <ListItemField>false</ListItemField> <Name>Activatable</Name> <NotNull>true</NotNull> <PanelNumber>0</PanelNumber> <Parameter></Parameter> <PrimaryKey>false</PrimaryKey> <RemovedStateField>false</RemovedStateField> <TechnicalField>false</TechnicalField> <Unique>false</Unique> </Spalte1> <Spalte2> <AlterInBatch>false</AlterInBatch> <Aufgehoben>false</Aufgehoben> <CanBeReferenced>false</CanBeReferenced> <Disabled>false</Disabled> <Domain>Name</Domain> <Editordescriptor> <Editormember>false</Editormember> <LabelText></LabelText> <MaxCharacters>0</MaxCharacters> <Mnemonic></Mnemonic> <Position>0</Position> <ReferenceWeight>keine</ReferenceWeight> <RessourceIdentifier></RessourceIdentifier> <ToolTipText></ToolTipText> </Editordescriptor> <ForeignKey>false</ForeignKey> <Global>false</Global> <GlobalId>false</GlobalId> <HideReference>false</HideReference> <History>@changed VM - Added.</History> <IndexSearchMember>false</IndexSearchMember> <Indexed>false</Indexed> <IndividualDefaultValue></IndividualDefaultValue> <Kodiert>false</Kodiert> <Kommentar>Plug-in build date.</Kommentar> <Konsistenz> <Writeablemember>false</Writeablemember> </Konsistenz> <LastModificationField>false</LastModificationField> <ListItemField>false</ListItemField> <Name>BuildDate</Name> <NotNull>false</NotNull> <PanelNumber>0</PanelNumber> <Parameter></Parameter> <PrimaryKey>false</PrimaryKey> <RemovedStateField>false</RemovedStateField> <TechnicalField>false</TechnicalField> <Unique>false</Unique> </Spalte2> <Spalte3> <AlterInBatch>false</AlterInBatch> <Aufgehoben>false</Aufgehoben> <CanBeReferenced>false</CanBeReferenced> <Disabled>false</Disabled> <Domain>NumericIdent</Domain> <Editordescriptor> <Editormember>false</Editormember> <LabelText></LabelText> <MaxCharacters>0</MaxCharacters> <Mnemonic></Mnemonic> <Position>0</Position> <ReferenceWeight>keine</ReferenceWeight> <RessourceIdentifier></RessourceIdentifier> <ToolTipText></ToolTipText> </Editordescriptor> <ForeignKey>false</ForeignKey> <Global>false</Global> <GlobalId>false</GlobalId> <HideReference>false</HideReference> <History></History> <IndexSearchMember>false</IndexSearchMember> <Indexed>false</Indexed> <IndividualDefaultValue></IndividualDefaultValue> <Kodiert>false</Kodiert> <Kommentar>Plug-in database version.</Kommentar> <Konsistenz> <Writeablemember>false</Writeablemember> </Konsistenz> <LastModificationField>false</LastModificationField> <ListItemField>false</ListItemField> <Name>DBVersion</Name> <NotNull>false</NotNull> <PanelNumber>0</PanelNumber> <Parameter></Parameter> <PrimaryKey>false</PrimaryKey> <RemovedStateField>false</RemovedStateField> <TechnicalField>false</TechnicalField> <Unique>false</Unique> </Spalte3> <Spalte4> <AlterInBatch>false</AlterInBatch> <Aufgehoben>false</Aufgehoben> <CanBeReferenced>false</CanBeReferenced> <Disabled>false</Disabled> <Domain>NumericIdent</Domain> <Editordescriptor> <Editormember>false</Editormember> <LabelText></LabelText> <MaxCharacters>0</MaxCharacters> <Mnemonic></Mnemonic> <Position>0</Position> <ReferenceWeight>keine</ReferenceWeight> <RessourceIdentifier></RessourceIdentifier> <ToolTipText></ToolTipText> </Editordescriptor> <ForeignKey>false</ForeignKey> <Global>false</Global> <GlobalId>false</GlobalId> <HideReference>false</HideReference> <History>@changed VM - Added.</History> <IndexSearchMember>false</IndexSearchMember> <Indexed>false</Indexed> <IndividualDefaultValue>0</IndividualDefaultValue> <Kodiert>false</Kodiert> <Kommentar>Numeric id of the plug-in.</Kommentar> <Konsistenz> <Writeablemember>false</Writeablemember> </Konsistenz> <LastModificationField>false</LastModificationField> <ListItemField>false</ListItemField> <Name>PlugInId</Name> <NotNull>true</NotNull> <PanelNumber>0</PanelNumber> <Parameter></Parameter> <PrimaryKey>false</PrimaryKey> <RemovedStateField>false</RemovedStateField> <TechnicalField>false</TechnicalField> <Unique>false</Unique> </Spalte4> <Spalte5> <AlterInBatch>false</AlterInBatch> <Aufgehoben>false</Aufgehoben> <CanBeReferenced>false</CanBeReferenced> <Disabled>false</Disabled> <Domain>StringIdent</Domain> <Editordescriptor> <Editormember>false</Editormember> <LabelText></LabelText> <MaxCharacters>0</MaxCharacters> <Mnemonic></Mnemonic> <Position>0</Position> <ReferenceWeight>keine</ReferenceWeight> <RessourceIdentifier></RessourceIdentifier> <ToolTipText></ToolTipText> </Editordescriptor> <ForeignKey>false</ForeignKey> <Global>false</Global> <GlobalId>false</GlobalId> <HideReference>false</HideReference> <History>@changed VM 12.12.2011 - Added.</History> <IndexSearchMember>false</IndexSearchMember> <Indexed>false</Indexed> <IndividualDefaultValue></IndividualDefaultValue> <Kodiert>false</Kodiert> <Kommentar>Current state of plug-in.</Kommentar> <Konsistenz> <Writeablemember>false</Writeablemember> </Konsistenz> <LastModificationField>false</LastModificationField> <ListItemField>false</ListItemField> <Name>State</Name> <NotNull>false</NotNull> <PanelNumber>0</PanelNumber> <Parameter></Parameter> <PrimaryKey>false</PrimaryKey> <RemovedStateField>false</RemovedStateField> <TechnicalField>false</TechnicalField> <Unique>false</Unique> </Spalte5> <Spalte6> <AlterInBatch>false</AlterInBatch> <Aufgehoben>false</Aufgehoben> <CanBeReferenced>false</CanBeReferenced> <Disabled>false</Disabled> <Domain>Description</Domain> <Editordescriptor> <Editormember>false</Editormember> <LabelText></LabelText> <MaxCharacters>0</MaxCharacters> <Mnemonic></Mnemonic> <Position>0</Position> <ReferenceWeight>keine</ReferenceWeight> <RessourceIdentifier></RessourceIdentifier> <ToolTipText></ToolTipText> </Editordescriptor> <ForeignKey>false</ForeignKey> <Global>false</Global> <GlobalId>false</GlobalId> <HideReference>false</HideReference> <History>@changed VM 12.12.2011 - Added.</History> <IndexSearchMember>false</IndexSearchMember> <Indexed>false</Indexed> <IndividualDefaultValue></IndividualDefaultValue> <Kodiert>false</Kodiert> <Kommentar>Vendor of plug-in.</Kommentar> <Konsistenz> <Writeablemember>false</Writeablemember> </Konsistenz> <LastModificationField>false</LastModificationField> <ListItemField>false</ListItemField> <Name>Vendor</Name> <NotNull>false</NotNull> <PanelNumber>0</PanelNumber> <Parameter></Parameter> <PrimaryKey>false</PrimaryKey> <RemovedStateField>false</RemovedStateField> <TechnicalField>false</TechnicalField> <Unique>false</Unique> </Spalte6> <Spalte7> <AlterInBatch>false</AlterInBatch> <Aufgehoben>false</Aufgehoben> <CanBeReferenced>false</CanBeReferenced> <Disabled>false</Disabled> <Domain>Description</Domain> <Editordescriptor> <Editormember>false</Editormember> <LabelText></LabelText> <MaxCharacters>0</MaxCharacters> <Mnemonic></Mnemonic> <Position>0</Position> <ReferenceWeight>keine</ReferenceWeight> <RessourceIdentifier></RessourceIdentifier> <ToolTipText></ToolTipText> </Editordescriptor> <ForeignKey>false</ForeignKey> <Global>false</Global> <GlobalId>false</GlobalId> <HideReference>false</HideReference> <History>@changed VM 12.12.2011 - Added.</History> <IndexSearchMember>false</IndexSearchMember> <Indexed>false</Indexed> <IndividualDefaultValue></IndividualDefaultValue> <Kodiert>false</Kodiert> <Kommentar>Version of plug-in</Kommentar> <Konsistenz> <Writeablemember>false</Writeablemember> </Konsistenz> <LastModificationField>false</LastModificationField> <ListItemField>false</ListItemField> <Name>Version</Name> <NotNull>true</NotNull> <PanelNumber>0</PanelNumber> <Parameter></Parameter> <PrimaryKey>false</PrimaryKey> <RemovedStateField>false</RemovedStateField> <TechnicalField>false</TechnicalField> <Unique>false</Unique> </Spalte7> </Spalten> <Stereotype> <Anzahl>1</Anzahl> </Stereotype> <Stereotype0>PluginManager</Stereotype0> <Views> <Anzahl>1</Anzahl> <View0> <Name>Main</Name> <X>675</X> <Y>125</Y> </View0> </Views> </Tabelle3> <Tabelle4> <Aufgehoben>false</Aufgehoben> <Codegenerator> <AuswahlMembers> <Anzahl>0</Anzahl> </AuswahlMembers> <CompareMembers> <Anzahl>0</Anzahl> </CompareMembers> <Equalsmembers> <Anzahl>0</Anzahl> </Equalsmembers> <HashCodeMembers> <Anzahl>0</Anzahl> </HashCodeMembers> <NReferenzen> <Anzahl>0</Anzahl> </NReferenzen> <OrderMembers> <Anzahl>0</Anzahl> </OrderMembers> <ToComboStringMembers> <Anzahl>0</Anzahl> </ToComboStringMembers> <ToStringMembers> <Anzahl>0</Anzahl> </ToStringMembers> </Codegenerator> <Farben> <Hintergrund>goldgelb</Hintergrund> <Schrift>schwarz</Schrift> </Farben> <FirstGenerationDone>false</FirstGenerationDone> <History>@changed 11.01.2012 - Added.</History> <InDevelopment>false</InDevelopment> <Kommentar>This table contains all users of the application.</Kommentar> <NMRelation>false</NMRelation> <Name>ApplicationUser</Name> <Panels> <Anzahl>1</Anzahl> <Panel0> <PanelClass></PanelClass> <PanelNumber>0</PanelNumber> <TabMnemonic>1</TabMnemonic> <TabTitle>1.Daten</TabTitle> <TabToolTipText>Hier k&ouml;nnen Sie die Daten des Objekt warten</TabToolTipText> </Panel0> </Panels> <Spalten> <Anzahl>6</Anzahl> <Codegenerator> <ActiveInApplication>false</ActiveInApplication> <Codegeneratoroptionen></Codegeneratoroptionen> <Codeverzeichnis>.</Codeverzeichnis> <Codieren>true</Codieren> <DynamicCode>true</DynamicCode> <Inherited>false</Inherited> <Kontextname></Kontextname> <UniqueFormula></UniqueFormula> </Codegenerator> <Spalte0> <AlterInBatch>false</AlterInBatch> <Aufgehoben>false</Aufgehoben> <CanBeReferenced>true</CanBeReferenced> <Disabled>false</Disabled> <Domain>NumericIdent</Domain> <Editordescriptor> <Editormember>false</Editormember> <LabelText></LabelText> <MaxCharacters>0</MaxCharacters> <Mnemonic></Mnemonic> <Position>0</Position> <ReferenceWeight>keine</ReferenceWeight> <RessourceIdentifier></RessourceIdentifier> <ToolTipText></ToolTipText> </Editordescriptor> <ForeignKey>false</ForeignKey> <Global>false</Global> <GlobalId>false</GlobalId> <HideReference>false</HideReference> <History>@changed OLI 11.01.2012 - Added.</History> <IndexSearchMember>false</IndexSearchMember> <Indexed>false</Indexed> <IndividualDefaultValue></IndividualDefaultValue> <Kodiert>false</Kodiert> <Kommentar>The key of the data record.</Kommentar> <Konsistenz> <Writeablemember>false</Writeablemember> </Konsistenz> <LastModificationField>false</LastModificationField> <ListItemField>false</ListItemField> <Name>Id</Name> <NotNull>false</NotNull> <PanelNumber>0</PanelNumber> <Parameter></Parameter> <PrimaryKey>true</PrimaryKey> <RemovedStateField>false</RemovedStateField> <TechnicalField>false</TechnicalField> <Unique>false</Unique> </Spalte0> <Spalte1> <AlterInBatch>false</AlterInBatch> <Aufgehoben>false</Aufgehoben> <CanBeReferenced>false</CanBeReferenced> <Disabled>false</Disabled> <Domain>Boolean</Domain> <Editordescriptor> <Editormember>false</Editormember> <LabelText></LabelText> <MaxCharacters>0</MaxCharacters> <Mnemonic></Mnemonic> <Position>0</Position> <ReferenceWeight>keine</ReferenceWeight> <RessourceIdentifier></RessourceIdentifier> <ToolTipText></ToolTipText> </Editordescriptor> <ForeignKey>false</ForeignKey> <Global>false</Global> <GlobalId>false</GlobalId> <HideReference>false</HideReference> <History>@changed OLI 19.02.2013 - Added.</History> <IndexSearchMember>false</IndexSearchMember> <Indexed>false</Indexed> <IndividualDefaultValue></IndividualDefaultValue> <Kodiert>false</Kodiert> <Kommentar>A flag to deactivate an application user. Deactivated users cannot login.</Kommentar> <Konsistenz> <Writeablemember>false</Writeablemember> </Konsistenz> <LastModificationField>false</LastModificationField> <ListItemField>false</ListItemField> <Name>Deactivated</Name> <NotNull>false</NotNull> <PanelNumber>0</PanelNumber> <Parameter></Parameter> <PrimaryKey>false</PrimaryKey> <RemovedStateField>false</RemovedStateField> <TechnicalField>false</TechnicalField> <Unique>false</Unique> </Spalte1> <Spalte2> <AlterInBatch>false</AlterInBatch> <Aufgehoben>false</Aufgehoben> <CanBeReferenced>false</CanBeReferenced> <Disabled>false</Disabled> <Domain>PersonName</Domain> <Editordescriptor> <Editormember>false</Editormember> <LabelText></LabelText> <MaxCharacters>0</MaxCharacters> <Mnemonic></Mnemonic> <Position>0</Position> <ReferenceWeight>keine</ReferenceWeight> <RessourceIdentifier></RessourceIdentifier> <ToolTipText></ToolTipText> </Editordescriptor> <ForeignKey>false</ForeignKey> <Global>false</Global> <GlobalId>false</GlobalId> <HideReference>false</HideReference> <History>@changed OLI 11.01.2012 - Added.</History> <IndexSearchMember>false</IndexSearchMember> <Indexed>false</Indexed> <IndividualDefaultValue></IndividualDefaultValue> <Kodiert>false</Kodiert> <Kommentar>The first name of the user.</Kommentar> <Konsistenz> <Writeablemember>false</Writeablemember> </Konsistenz> <LastModificationField>false</LastModificationField> <ListItemField>false</ListItemField> <Name>FirstName</Name> <NotNull>true</NotNull> <PanelNumber>0</PanelNumber> <Parameter></Parameter> <PrimaryKey>false</PrimaryKey> <RemovedStateField>false</RemovedStateField> <TechnicalField>false</TechnicalField> <Unique>false</Unique> </Spalte2> <Spalte3> <AlterInBatch>false</AlterInBatch> <Aufgehoben>false</Aufgehoben> <CanBeReferenced>false</CanBeReferenced> <Disabled>false</Disabled> <Domain>PersonName</Domain> <Editordescriptor> <Editormember>false</Editormember> <LabelText></LabelText> <MaxCharacters>0</MaxCharacters> <Mnemonic></Mnemonic> <Position>0</Position> <ReferenceWeight>keine</ReferenceWeight> <RessourceIdentifier></RessourceIdentifier> <ToolTipText></ToolTipText> </Editordescriptor> <ForeignKey>false</ForeignKey> <Global>false</Global> <GlobalId>false</GlobalId> <HideReference>false</HideReference> <History>@changed OLI 11.01.2012 - Added.</History> <IndexSearchMember>false</IndexSearchMember> <Indexed>false</Indexed> <IndividualDefaultValue></IndividualDefaultValue> <Kodiert>false</Kodiert> <Kommentar>The last name of the user.</Kommentar> <Konsistenz> <Writeablemember>false</Writeablemember> </Konsistenz> <LastModificationField>false</LastModificationField> <ListItemField>false</ListItemField> <Name>LastName</Name> <NotNull>true</NotNull> <PanelNumber>0</PanelNumber> <Parameter></Parameter> <PrimaryKey>false</PrimaryKey> <RemovedStateField>false</RemovedStateField> <TechnicalField>false</TechnicalField> <Unique>false</Unique> </Spalte3> <Spalte4> <AlterInBatch>false</AlterInBatch> <Aufgehoben>false</Aufgehoben> <CanBeReferenced>false</CanBeReferenced> <Disabled>false</Disabled> <Domain>LoginName</Domain> <Editordescriptor> <Editormember>false</Editormember> <LabelText></LabelText> <MaxCharacters>0</MaxCharacters> <Mnemonic></Mnemonic> <Position>0</Position> <ReferenceWeight>keine</ReferenceWeight> <RessourceIdentifier></RessourceIdentifier> <ToolTipText></ToolTipText> </Editordescriptor> <ForeignKey>false</ForeignKey> <Global>false</Global> <GlobalId>false</GlobalId> <HideReference>false</HideReference> <History>@changed OLI 12.01.2012 - Added.</History> <IndexSearchMember>false</IndexSearchMember> <Indexed>true</Indexed> <IndividualDefaultValue></IndividualDefaultValue> <Kodiert>false</Kodiert> <Kommentar>The login name of the application user.</Kommentar> <Konsistenz> <Writeablemember>false</Writeablemember> </Konsistenz> <LastModificationField>false</LastModificationField> <ListItemField>false</ListItemField> <Name>Login</Name> <NotNull>true</NotNull> <PanelNumber>0</PanelNumber> <Parameter></Parameter> <PrimaryKey>false</PrimaryKey> <RemovedStateField>false</RemovedStateField> <TechnicalField>false</TechnicalField> <Unique>true</Unique> </Spalte4> <Spalte5> <AlterInBatch>false</AlterInBatch> <Aufgehoben>false</Aufgehoben> <CanBeReferenced>false</CanBeReferenced> <Disabled>false</Disabled> <Domain>Password</Domain> <Editordescriptor> <Editormember>false</Editormember> <LabelText></LabelText> <MaxCharacters>0</MaxCharacters> <Mnemonic></Mnemonic> <Position>0</Position> <ReferenceWeight>keine</ReferenceWeight> <RessourceIdentifier></RessourceIdentifier> <ToolTipText></ToolTipText> </Editordescriptor> <ForeignKey>false</ForeignKey> <Global>false</Global> <GlobalId>false</GlobalId> <HideReference>false</HideReference> <History>@changed OLI 01.02.2012 - Added.</History> <IndexSearchMember>false</IndexSearchMember> <Indexed>false</Indexed> <IndividualDefaultValue></IndividualDefaultValue> <Kodiert>false</Kodiert> <Kommentar>The password of the application user account.</Kommentar> <Konsistenz> <Writeablemember>false</Writeablemember> </Konsistenz> <LastModificationField>false</LastModificationField> <ListItemField>false</ListItemField> <Name>Password</Name> <NotNull>true</NotNull> <PanelNumber>0</PanelNumber> <Parameter></Parameter> <PrimaryKey>false</PrimaryKey> <RemovedStateField>false</RemovedStateField> <TechnicalField>false</TechnicalField> <Unique>false</Unique> </Spalte5> </Spalten> <Stereotype> <Anzahl>1</Anzahl> </Stereotype> <Stereotype0>UserAdministration</Stereotype0> <Views> <Anzahl>1</Anzahl> <View0> <Name>Main</Name> <X>1150</X> <Y>125</Y> </View0> </Views> </Tabelle4> <Tabelle5> <Aufgehoben>false</Aufgehoben> <Codegenerator> <AuswahlMembers> <Anzahl>0</Anzahl> </AuswahlMembers> <CompareMembers> <Anzahl>0</Anzahl> </CompareMembers> <Equalsmembers> <Anzahl>0</Anzahl> </Equalsmembers> <HashCodeMembers> <Anzahl>0</Anzahl> </HashCodeMembers> <NReferenzen> <Anzahl>0</Anzahl> </NReferenzen> <OrderMembers> <Anzahl>0</Anzahl> </OrderMembers> <ToComboStringMembers> <Anzahl>0</Anzahl> </ToComboStringMembers> <ToStringMembers> <Anzahl>0</Anzahl> </ToStringMembers> </Codegenerator> <Farben> <Hintergrund>goldgelb</Hintergrund> <Schrift>schwarz</Schrift> </Farben> <FirstGenerationDone>false</FirstGenerationDone> <History>@changed OLI 11.01.2012 - Added.</History> <InDevelopment>false</InDevelopment> <Kommentar>This table contains the user groups of the application. By being assigned to a user group, an application user get access rights to parts of the application.</Kommentar> <NMRelation>false</NMRelation> <Name>ApplicationUserGroup</Name> <Panels> <Anzahl>1</Anzahl> <Panel0> <PanelClass></PanelClass> <PanelNumber>0</PanelNumber> <TabMnemonic>1</TabMnemonic> <TabTitle>1.Daten</TabTitle> <TabToolTipText>Hier k&ouml;nnen Sie die Daten des Objekt warten</TabToolTipText> </Panel0> </Panels> <Spalten> <Anzahl>2</Anzahl> <Codegenerator> <ActiveInApplication>false</ActiveInApplication> <Codegeneratoroptionen></Codegeneratoroptionen> <Codeverzeichnis>.</Codeverzeichnis> <Codieren>true</Codieren> <DynamicCode>true</DynamicCode> <Inherited>false</Inherited> <Kontextname></Kontextname> <UniqueFormula></UniqueFormula> </Codegenerator> <Spalte0> <AlterInBatch>false</AlterInBatch> <Aufgehoben>false</Aufgehoben> <CanBeReferenced>true</CanBeReferenced> <Disabled>false</Disabled> <Domain>NumericIdent</Domain> <Editordescriptor> <Editormember>false</Editormember> <LabelText></LabelText> <MaxCharacters>0</MaxCharacters> <Mnemonic></Mnemonic> <Position>0</Position> <ReferenceWeight>keine</ReferenceWeight> <RessourceIdentifier></RessourceIdentifier> <ToolTipText></ToolTipText> </Editordescriptor> <ForeignKey>false</ForeignKey> <Global>false</Global> <GlobalId>false</GlobalId> <HideReference>false</HideReference> <History>@changed OLI 11.01.2012 - Added.</History> <IndexSearchMember>false</IndexSearchMember> <Indexed>false</Indexed> <IndividualDefaultValue></IndividualDefaultValue> <Kodiert>false</Kodiert> <Kommentar>The key of the data record.</Kommentar> <Konsistenz> <Writeablemember>false</Writeablemember> </Konsistenz> <LastModificationField>false</LastModificationField> <ListItemField>false</ListItemField> <Name>Id</Name> <NotNull>false</NotNull> <PanelNumber>0</PanelNumber> <Parameter></Parameter> <PrimaryKey>true</PrimaryKey> <RemovedStateField>false</RemovedStateField> <TechnicalField>false</TechnicalField> <Unique>false</Unique> </Spalte0> <Spalte1> <AlterInBatch>false</AlterInBatch> <Aufgehoben>false</Aufgehoben> <CanBeReferenced>false</CanBeReferenced> <Disabled>false</Disabled> <Domain>Description</Domain> <Editordescriptor> <Editormember>false</Editormember> <LabelText></LabelText> <MaxCharacters>0</MaxCharacters> <Mnemonic></Mnemonic> <Position>0</Position> <ReferenceWeight>keine</ReferenceWeight> <RessourceIdentifier></RessourceIdentifier> <ToolTipText></ToolTipText> </Editordescriptor> <ForeignKey>false</ForeignKey> <Global>false</Global> <GlobalId>false</GlobalId> <HideReference>false</HideReference> <History>@changed OLI 11.01.2012 - Added.$BR$@changed OLI 15.10.2012 - Renamed to 'GroupName'.</History> <IndexSearchMember>false</IndexSearchMember> <Indexed>true</Indexed> <IndividualDefaultValue></IndividualDefaultValue> <Kodiert>false</Kodiert> <Kommentar>The description of the application user group. It is handled like a key.</Kommentar> <Konsistenz> <Writeablemember>false</Writeablemember> </Konsistenz> <LastModificationField>false</LastModificationField> <ListItemField>false</ListItemField> <Name>GroupName</Name> <NotNull>false</NotNull> <PanelNumber>0</PanelNumber> <Parameter></Parameter> <PrimaryKey>false</PrimaryKey> <RemovedStateField>false</RemovedStateField> <TechnicalField>false</TechnicalField> <Unique>true</Unique> </Spalte1> </Spalten> <Stereotype> <Anzahl>1</Anzahl> </Stereotype> <Stereotype0>UserAdministration</Stereotype0> <Views> <Anzahl>1</Anzahl> <View0> <Name>Main</Name> <X>1150</X> <Y>550</Y> </View0> </Views> </Tabelle5> <Tabelle6> <Aufgehoben>false</Aufgehoben> <Codegenerator> <AuswahlMembers> <Anzahl>0</Anzahl> </AuswahlMembers> <CompareMembers> <Anzahl>0</Anzahl> </CompareMembers> <Equalsmembers> <Anzahl>0</Anzahl> </Equalsmembers> <HashCodeMembers> <Anzahl>0</Anzahl> </HashCodeMembers> <NReferenzen> <Anzahl>0</Anzahl> </NReferenzen> <OrderMembers> <Anzahl>0</Anzahl> </OrderMembers> <ToComboStringMembers> <Anzahl>0</Anzahl> </ToComboStringMembers> <ToStringMembers> <Anzahl>0</Anzahl> </ToStringMembers> </Codegenerator> <Farben> <Hintergrund>goldgelb</Hintergrund> <Schrift>schwarz</Schrift> </Farben> <FirstGenerationDone>false</FirstGenerationDone> <History>@changed 11.01.2012 - Added.$BR$@changed 28.09.2012 - 'Name' field added.</History> <InDevelopment>false</InDevelopment> <Kommentar>This table contains the user groups of the application. By being assigned to a user group, an application user get access rights to parts of the application.</Kommentar> <NMRelation>false</NMRelation> <Name>ApplicationRight</Name> <Panels> <Anzahl>1</Anzahl> <Panel0> <PanelClass></PanelClass> <PanelNumber>0</PanelNumber> <TabMnemonic>1</TabMnemonic> <TabTitle>1.Daten</TabTitle> <TabToolTipText>Hier k&ouml;nnen Sie die Daten des Objekt warten</TabToolTipText> </Panel0> </Panels> <Spalten> <Anzahl>3</Anzahl> <Codegenerator> <ActiveInApplication>false</ActiveInApplication> <Codegeneratoroptionen></Codegeneratoroptionen> <Codeverzeichnis>.</Codeverzeichnis> <Codieren>true</Codieren> <DynamicCode>true</DynamicCode> <Inherited>false</Inherited> <Kontextname></Kontextname> <UniqueFormula></UniqueFormula> </Codegenerator> <Spalte0> <AlterInBatch>false</AlterInBatch> <Aufgehoben>false</Aufgehoben> <CanBeReferenced>true</CanBeReferenced> <Disabled>false</Disabled> <Domain>NumericIdent</Domain> <Editordescriptor> <Editormember>false</Editormember> <LabelText></LabelText> <MaxCharacters>0</MaxCharacters> <Mnemonic></Mnemonic> <Position>0</Position> <ReferenceWeight>keine</ReferenceWeight> <RessourceIdentifier></RessourceIdentifier> <ToolTipText></ToolTipText> </Editordescriptor> <ForeignKey>false</ForeignKey> <Global>false</Global> <GlobalId>false</GlobalId> <HideReference>false</HideReference> <History>@changed 11.01.2012 - Added.</History> <IndexSearchMember>false</IndexSearchMember> <Indexed>false</Indexed> <IndividualDefaultValue></IndividualDefaultValue> <Kodiert>false</Kodiert> <Kommentar>The key of the data record.</Kommentar> <Konsistenz> <Writeablemember>false</Writeablemember> </Konsistenz> <LastModificationField>false</LastModificationField> <ListItemField>false</ListItemField> <Name>Id</Name> <NotNull>false</NotNull> <PanelNumber>0</PanelNumber> <Parameter></Parameter> <PrimaryKey>true</PrimaryKey> <RemovedStateField>false</RemovedStateField> <TechnicalField>false</TechnicalField> <Unique>false</Unique> </Spalte0> <Spalte1> <AlterInBatch>false</AlterInBatch> <Aufgehoben>false</Aufgehoben> <CanBeReferenced>false</CanBeReferenced> <Disabled>false</Disabled> <Domain>Description</Domain> <Editordescriptor> <Editormember>false</Editormember> <LabelText></LabelText> <MaxCharacters>0</MaxCharacters> <Mnemonic></Mnemonic> <Position>0</Position> <ReferenceWeight>keine</ReferenceWeight> <RessourceIdentifier></RessourceIdentifier> <ToolTipText></ToolTipText> </Editordescriptor> <ForeignKey>false</ForeignKey> <Global>false</Global> <GlobalId>false</GlobalId> <HideReference>false</HideReference> <History>@changed 11.01.2012 - Added.</History> <IndexSearchMember>false</IndexSearchMember> <Indexed>false</Indexed> <IndividualDefaultValue></IndividualDefaultValue> <Kodiert>false</Kodiert> <Kommentar>The description of the application right. It comments the function of the right and is written in english.</Kommentar> <Konsistenz> <Writeablemember>false</Writeablemember> </Konsistenz> <LastModificationField>false</LastModificationField> <ListItemField>false</ListItemField> <Name>Description</Name> <NotNull>false</NotNull> <PanelNumber>0</PanelNumber> <Parameter></Parameter> <PrimaryKey>false</PrimaryKey> <RemovedStateField>false</RemovedStateField> <TechnicalField>false</TechnicalField> <Unique>false</Unique> </Spalte1> <Spalte2> <AlterInBatch>false</AlterInBatch> <Aufgehoben>false</Aufgehoben> <CanBeReferenced>false</CanBeReferenced> <Disabled>false</Disabled> <Domain>StringIdent</Domain> <Editordescriptor> <Editormember>false</Editormember> <LabelText></LabelText> <MaxCharacters>0</MaxCharacters> <Mnemonic></Mnemonic> <Position>0</Position> <ReferenceWeight>keine</ReferenceWeight> <RessourceIdentifier></RessourceIdentifier> <ToolTipText></ToolTipText> </Editordescriptor> <ForeignKey>false</ForeignKey> <Global>false</Global> <GlobalId>false</GlobalId> <HideReference>false</HideReference> <History>@changed OLI 28.09.2012 - Added.</History> <IndexSearchMember>false</IndexSearchMember> <Indexed>true</Indexed> <IndividualDefaultValue></IndividualDefaultValue> <Kodiert>false</Kodiert> <Kommentar>A name for the application right which identifies the application right.$BR$The name of a right starts allways with the plug-in identifier or the prefix 'Core' for the core.</Kommentar> <Konsistenz> <Writeablemember>false</Writeablemember> </Konsistenz> <LastModificationField>false</LastModificationField> <ListItemField>false</ListItemField> <Name>Name</Name> <NotNull>true</NotNull> <PanelNumber>0</PanelNumber> <Parameter></Parameter> <PrimaryKey>false</PrimaryKey> <RemovedStateField>false</RemovedStateField> <TechnicalField>false</TechnicalField> <Unique>true</Unique> </Spalte2> </Spalten> <Stereotype> <Anzahl>1</Anzahl> </Stereotype> <Stereotype0>UserAdministration</Stereotype0> <Views> <Anzahl>1</Anzahl> <View0> <Name>Main</Name> <X>1150</X> <Y>900</Y> </View0> </Views> </Tabelle6> <Tabelle7> <Aufgehoben>false</Aufgehoben> <Codegenerator> <AuswahlMembers> <Anzahl>0</Anzahl> </AuswahlMembers> <CompareMembers> <Anzahl>0</Anzahl> </CompareMembers> <Equalsmembers> <Anzahl>0</Anzahl> </Equalsmembers> <HashCodeMembers> <Anzahl>0</Anzahl> </HashCodeMembers> <NReferenzen> <Anzahl>0</Anzahl> </NReferenzen> <OrderMembers> <Anzahl>0</Anzahl> </OrderMembers> <ToComboStringMembers> <Anzahl>0</Anzahl> </ToComboStringMembers> <ToStringMembers> <Anzahl>0</Anzahl> </ToStringMembers> </Codegenerator> <Farben> <Hintergrund>pastell-gelb</Hintergrund> <Schrift>schwarz</Schrift> </Farben> <FirstGenerationDone>false</FirstGenerationDone> <History>@changed 11.01.2012 - Added.</History> <InDevelopment>false</InDevelopment> <Kommentar>Relation between application users and application user groups. It contains the users, which are assigned to user groups.</Kommentar> <NMRelation>true</NMRelation> <Name>GroupMember</Name> <Panels> <Anzahl>1</Anzahl> <Panel0> <PanelClass></PanelClass> <PanelNumber>0</PanelNumber> <TabMnemonic>1</TabMnemonic> <TabTitle>1.Daten</TabTitle> <TabToolTipText>Hier k&ouml;nnen Sie die Daten des Objekt warten</TabToolTipText> </Panel0> </Panels> <Spalten> <Anzahl>2</Anzahl> <Codegenerator> <ActiveInApplication>false</ActiveInApplication> <Codegeneratoroptionen></Codegeneratoroptionen> <Codeverzeichnis>.</Codeverzeichnis> <Codieren>true</Codieren> <DynamicCode>true</DynamicCode> <Inherited>false</Inherited> <Kontextname></Kontextname> <UniqueFormula></UniqueFormula> </Codegenerator> <Spalte0> <AlterInBatch>false</AlterInBatch> <Aufgehoben>false</Aufgehoben> <CanBeReferenced>true</CanBeReferenced> <Disabled>false</Disabled> <Domain>NumericIdent</Domain> <Editordescriptor> <Editormember>false</Editormember> <LabelText></LabelText> <MaxCharacters>0</MaxCharacters> <Mnemonic></Mnemonic> <Position>0</Position> <ReferenceWeight>keine</ReferenceWeight> <RessourceIdentifier></RessourceIdentifier> <ToolTipText></ToolTipText> </Editordescriptor> <ForeignKey>true</ForeignKey> <Global>false</Global> <GlobalId>false</GlobalId> <HideReference>false</HideReference> <History>@changed 11.01.2012 - Added.</History> <IndexSearchMember>false</IndexSearchMember> <Indexed>false</Indexed> <IndividualDefaultValue></IndividualDefaultValue> <Kodiert>false</Kodiert> <Kommentar>The key of the application user, which is member in the assigned application user group.</Kommentar> <Konsistenz> <Writeablemember>false</Writeablemember> </Konsistenz> <LastModificationField>false</LastModificationField> <ListItemField>false</ListItemField> <Name>ApplicationUser</Name> <NotNull>false</NotNull> <PanelNumber>0</PanelNumber> <Parameter></Parameter> <PrimaryKey>true</PrimaryKey> <Referenz> <Direction0>UP</Direction0> <Direction1>DOWN</Direction1> <Offset0>25</Offset0> <Offset1>25</Offset1> <Spalte>Id</Spalte> <Tabelle>ApplicationUser</Tabelle> <Views> <Anzahl>1</Anzahl> <View0> <Direction0>UP</Direction0> <Direction1>DOWN</Direction1> <Name>Main</Name> <Offset0>25</Offset0> <Offset1>25</Offset1> <Points> <Anzahl>0</Anzahl> </Points> </View0> </Views> </Referenz> <RemovedStateField>false</RemovedStateField> <TechnicalField>false</TechnicalField> <Unique>false</Unique> </Spalte0> <Spalte1> <AlterInBatch>false</AlterInBatch> <Aufgehoben>false</Aufgehoben> <CanBeReferenced>true</CanBeReferenced> <Disabled>false</Disabled> <Domain>NumericIdent</Domain> <Editordescriptor> <Editormember>false</Editormember> <LabelText></LabelText> <MaxCharacters>0</MaxCharacters> <Mnemonic></Mnemonic> <Position>0</Position> <ReferenceWeight>keine</ReferenceWeight> <RessourceIdentifier></RessourceIdentifier> <ToolTipText></ToolTipText> </Editordescriptor> <ForeignKey>true</ForeignKey> <Global>false</Global> <GlobalId>false</GlobalId> <HideReference>false</HideReference> <History>@changed 11.01.2012 - Added.</History> <IndexSearchMember>false</IndexSearchMember> <Indexed>false</Indexed> <IndividualDefaultValue></IndividualDefaultValue> <Kodiert>false</Kodiert> <Kommentar>The application user group the application user is assigned to.</Kommentar> <Konsistenz> <Writeablemember>false</Writeablemember> </Konsistenz> <LastModificationField>false</LastModificationField> <ListItemField>false</ListItemField> <Name>ApplicationUserGroup</Name> <NotNull>false</NotNull> <PanelNumber>0</PanelNumber> <Parameter></Parameter> <PrimaryKey>true</PrimaryKey> <Referenz> <Direction0>DOWN</Direction0> <Direction1>UP</Direction1> <Offset0>25</Offset0> <Offset1>25</Offset1> <Spalte>Id</Spalte> <Tabelle>ApplicationUserGroup</Tabelle> <Views> <Anzahl>1</Anzahl> <View0> <Direction0>DOWN</Direction0> <Direction1>UP</Direction1> <Name>Main</Name> <Offset0>25</Offset0> <Offset1>25</Offset1> <Points> <Anzahl>0</Anzahl> </Points> </View0> </Views> </Referenz> <RemovedStateField>false</RemovedStateField> <TechnicalField>false</TechnicalField> <Unique>false</Unique> </Spalte1> </Spalten> <Stereotype> <Anzahl>1</Anzahl> </Stereotype> <Stereotype0>UserAdministration</Stereotype0> <Views> <Anzahl>1</Anzahl> <View0> <Name>Main</Name> <X>1150</X> <Y>350</Y> </View0> </Views> </Tabelle7> <Tabelle8> <Aufgehoben>false</Aufgehoben> <Codegenerator> <AuswahlMembers> <Anzahl>0</Anzahl> </AuswahlMembers> <CompareMembers> <Anzahl>0</Anzahl> </CompareMembers> <Equalsmembers> <Anzahl>0</Anzahl> </Equalsmembers> <HashCodeMembers> <Anzahl>0</Anzahl> </HashCodeMembers> <NReferenzen> <Anzahl>0</Anzahl> </NReferenzen> <OrderMembers> <Anzahl>0</Anzahl> </OrderMembers> <ToComboStringMembers> <Anzahl>0</Anzahl> </ToComboStringMembers> <ToStringMembers> <Anzahl>0</Anzahl> </ToStringMembers> </Codegenerator> <Farben> <Hintergrund>pastell-gelb</Hintergrund> <Schrift>schwarz</Schrift> </Farben> <FirstGenerationDone>false</FirstGenerationDone> <History>@changed OLI 11.01.2012 - Added.</History> <InDevelopment>false</InDevelopment> <Kommentar>Relation between application rights and application user groups. It contains the rights, which are granted to the user groups.</Kommentar> <NMRelation>true</NMRelation> <Name>GroupRight</Name> <Panels> <Anzahl>1</Anzahl> <Panel0> <PanelClass></PanelClass> <PanelNumber>0</PanelNumber> <TabMnemonic>1</TabMnemonic> <TabTitle>1.Daten</TabTitle> <TabToolTipText>Hier k&ouml;nnen Sie die Daten des Objekt warten</TabToolTipText> </Panel0> </Panels> <Spalten> <Anzahl>2</Anzahl> <Codegenerator> <ActiveInApplication>false</ActiveInApplication> <Codegeneratoroptionen></Codegeneratoroptionen> <Codeverzeichnis>.</Codeverzeichnis> <Codieren>true</Codieren> <DynamicCode>true</DynamicCode> <Inherited>false</Inherited> <Kontextname></Kontextname> <UniqueFormula></UniqueFormula> </Codegenerator> <Spalte0> <AlterInBatch>false</AlterInBatch> <Aufgehoben>false</Aufgehoben> <CanBeReferenced>true</CanBeReferenced> <Disabled>false</Disabled> <Domain>NumericIdent</Domain> <Editordescriptor> <Editormember>false</Editormember> <LabelText></LabelText> <MaxCharacters>0</MaxCharacters> <Mnemonic></Mnemonic> <Position>0</Position> <ReferenceWeight>keine</ReferenceWeight> <RessourceIdentifier></RessourceIdentifier> <ToolTipText></ToolTipText> </Editordescriptor> <ForeignKey>true</ForeignKey> <Global>false</Global> <GlobalId>false</GlobalId> <HideReference>false</HideReference> <History>@changed OLI 11.01.2012 - Added.</History> <IndexSearchMember>false</IndexSearchMember> <Indexed>false</Indexed> <IndividualDefaultValue></IndividualDefaultValue> <Kodiert>false</Kodiert> <Kommentar>The key of the application right, which is granted to the assigned application user group.</Kommentar> <Konsistenz> <Writeablemember>false</Writeablemember> </Konsistenz> <LastModificationField>false</LastModificationField> <ListItemField>false</ListItemField> <Name>ApplicationRight</Name> <NotNull>false</NotNull> <PanelNumber>0</PanelNumber> <Parameter></Parameter> <PrimaryKey>true</PrimaryKey> <Referenz> <Direction0>DOWN</Direction0> <Direction1>UP</Direction1> <Offset0>25</Offset0> <Offset1>25</Offset1> <Spalte>Id</Spalte> <Tabelle>ApplicationRight</Tabelle> <Views> <Anzahl>1</Anzahl> <View0> <Direction0>DOWN</Direction0> <Direction1>UP</Direction1> <Name>Main</Name> <Offset0>25</Offset0> <Offset1>25</Offset1> <Points> <Anzahl>0</Anzahl> </Points> </View0> </Views> </Referenz> <RemovedStateField>false</RemovedStateField> <TechnicalField>false</TechnicalField> <Unique>false</Unique> </Spalte0> <Spalte1> <AlterInBatch>false</AlterInBatch> <Aufgehoben>false</Aufgehoben> <CanBeReferenced>true</CanBeReferenced> <Disabled>false</Disabled> <Domain>NumericIdent</Domain> <Editordescriptor> <Editormember>false</Editormember> <LabelText></LabelText> <MaxCharacters>0</MaxCharacters> <Mnemonic></Mnemonic> <Position>0</Position> <ReferenceWeight>keine</ReferenceWeight> <RessourceIdentifier></RessourceIdentifier> <ToolTipText></ToolTipText> </Editordescriptor> <ForeignKey>true</ForeignKey> <Global>false</Global> <GlobalId>false</GlobalId> <HideReference>false</HideReference> <History>@changed OLI 11.01.2012 - Added.</History> <IndexSearchMember>false</IndexSearchMember> <Indexed>false</Indexed> <IndividualDefaultValue></IndividualDefaultValue> <Kodiert>false</Kodiert> <Kommentar>The application user group the application right is assigned to.</Kommentar> <Konsistenz> <Writeablemember>false</Writeablemember> </Konsistenz> <LastModificationField>false</LastModificationField> <ListItemField>false</ListItemField> <Name>ApplicationUserGroup</Name> <NotNull>false</NotNull> <PanelNumber>0</PanelNumber> <Parameter></Parameter> <PrimaryKey>true</PrimaryKey> <Referenz> <Direction0>UP</Direction0> <Direction1>DOWN</Direction1> <Offset0>25</Offset0> <Offset1>25</Offset1> <Spalte>Id</Spalte> <Tabelle>ApplicationUserGroup</Tabelle> <Views> <Anzahl>1</Anzahl> <View0> <Direction0>UP</Direction0> <Direction1>DOWN</Direction1> <Name>Main</Name> <Offset0>25</Offset0> <Offset1>25</Offset1> <Points> <Anzahl>0</Anzahl> </Points> </View0> </Views> </Referenz> <RemovedStateField>false</RemovedStateField> <TechnicalField>false</TechnicalField> <Unique>false</Unique> </Spalte1> </Spalten> <Stereotype> <Anzahl>1</Anzahl> </Stereotype> <Stereotype0>UserAdministration</Stereotype0> <Views> <Anzahl>1</Anzahl> <View0> <Name>Main</Name> <X>1150</X> <Y>700</Y> </View0> </Views> </Tabelle8> <Tabelle9> <Aufgehoben>false</Aufgehoben> <Codegenerator> <AuswahlMembers> <Anzahl>0</Anzahl> </AuswahlMembers> <CompareMembers> <Anzahl>0</Anzahl> </CompareMembers> <Equalsmembers> <Anzahl>0</Anzahl> </Equalsmembers> <HashCodeMembers> <Anzahl>0</Anzahl> </HashCodeMembers> <NReferenzen> <Anzahl>0</Anzahl> </NReferenzen> <OrderMembers> <Anzahl>0</Anzahl> </OrderMembers> <ToComboStringMembers> <Anzahl>0</Anzahl> </ToComboStringMembers> <ToStringMembers> <Anzahl>0</Anzahl> </ToStringMembers> </Codegenerator> <Farben> <Hintergrund>pastell-blau</Hintergrund> <Schrift>schwarz</Schrift> </Farben> <FirstGenerationDone>false</FirstGenerationDone> <History></History> <InDevelopment>false</InDevelopment> <Kommentar>The table contains Zone entries</Kommentar> <NMRelation>false</NMRelation> <Name>Zone</Name> <Panels> <Anzahl>1</Anzahl> <Panel0> <PanelClass></PanelClass> <PanelNumber>0</PanelNumber> <TabMnemonic>1</TabMnemonic> <TabTitle>1.Daten</TabTitle> <TabToolTipText>Hier k&ouml;nnen Sie die Daten des Objekt warten</TabToolTipText> </Panel0> </Panels> <Spalten> <Anzahl>4</Anzahl> <Codegenerator> <ActiveInApplication>false</ActiveInApplication> <Codegeneratoroptionen></Codegeneratoroptionen> <Codeverzeichnis>.</Codeverzeichnis> <Codieren>true</Codieren> <DynamicCode>true</DynamicCode> <Inherited>false</Inherited> <Kontextname></Kontextname> <UniqueFormula></UniqueFormula> </Codegenerator> <Spalte0> <AlterInBatch>false</AlterInBatch> <Aufgehoben>false</Aufgehoben> <CanBeReferenced>true</CanBeReferenced> <Disabled>false</Disabled> <Domain>NumericIdent</Domain> <Editordescriptor> <Editormember>false</Editormember> <LabelText></LabelText> <MaxCharacters>0</MaxCharacters> <Mnemonic></Mnemonic> <Position>0</Position> <ReferenceWeight>keine</ReferenceWeight> <RessourceIdentifier></RessourceIdentifier> <ToolTipText></ToolTipText> </Editordescriptor> <ForeignKey>false</ForeignKey> <Global>false</Global> <GlobalId>false</GlobalId> <HideReference>false</HideReference> <History></History> <IndexSearchMember>false</IndexSearchMember> <Indexed>false</Indexed> <IndividualDefaultValue></IndividualDefaultValue> <Kodiert>false</Kodiert> <Kommentar></Kommentar> <Konsistenz> <Writeablemember>false</Writeablemember> </Konsistenz> <LastModificationField>false</LastModificationField> <ListItemField>false</ListItemField> <Name>Id</Name> <NotNull>true</NotNull> <PanelNumber>0</PanelNumber> <Parameter></Parameter> <PrimaryKey>true</PrimaryKey> <RemovedStateField>false</RemovedStateField> <TechnicalField>false</TechnicalField> <Unique>false</Unique> </Spalte0> <Spalte1> <AlterInBatch>false</AlterInBatch> <Aufgehoben>false</Aufgehoben> <CanBeReferenced>false</CanBeReferenced> <Disabled>false</Disabled> <Domain>Description</Domain> <Editordescriptor> <Editormember>false</Editormember> <LabelText></LabelText> <MaxCharacters>0</MaxCharacters> <Mnemonic></Mnemonic> <Position>0</Position> <ReferenceWeight>keine</ReferenceWeight> <RessourceIdentifier></RessourceIdentifier> <ToolTipText></ToolTipText> </Editordescriptor> <ForeignKey>false</ForeignKey> <Global>false</Global> <GlobalId>false</GlobalId> <HideReference>false</HideReference> <History></History> <IndexSearchMember>false</IndexSearchMember> <Indexed>false</Indexed> <IndividualDefaultValue></IndividualDefaultValue> <Kodiert>false</Kodiert> <Kommentar></Kommentar> <Konsistenz> <Writeablemember>false</Writeablemember> </Konsistenz> <LastModificationField>false</LastModificationField> <ListItemField>false</ListItemField> <Name>Description</Name> <NotNull>false</NotNull> <PanelNumber>0</PanelNumber> <Parameter></Parameter> <PrimaryKey>false</PrimaryKey> <RemovedStateField>false</RemovedStateField> <TechnicalField>false</TechnicalField> <Unique>false</Unique> </Spalte1> <Spalte2> <AlterInBatch>false</AlterInBatch> <Aufgehoben>false</Aufgehoben> <CanBeReferenced>false</CanBeReferenced> <Disabled>false</Disabled> <Domain>StringIdent</Domain> <Editordescriptor> <Editormember>false</Editormember> <LabelText></LabelText> <MaxCharacters>0</MaxCharacters> <Mnemonic></Mnemonic> <Position>0</Position> <ReferenceWeight>keine</ReferenceWeight> <RessourceIdentifier></RessourceIdentifier> <ToolTipText></ToolTipText> </Editordescriptor> <ForeignKey>false</ForeignKey> <Global>false</Global> <GlobalId>false</GlobalId> <HideReference>false</HideReference> <History></History> <IndexSearchMember>false</IndexSearchMember> <Indexed>true</Indexed> <IndividualDefaultValue></IndividualDefaultValue> <Kodiert>false</Kodiert> <Kommentar></Kommentar> <Konsistenz> <Writeablemember>false</Writeablemember> </Konsistenz> <LastModificationField>false</LastModificationField> <ListItemField>false</ListItemField> <Name>Name</Name> <NotNull>true</NotNull> <PanelNumber>0</PanelNumber> <Parameter></Parameter> <PrimaryKey>false</PrimaryKey> <RemovedStateField>false</RemovedStateField> <TechnicalField>false</TechnicalField> <Unique>true</Unique> </Spalte2> <Spalte3> <AlterInBatch>false</AlterInBatch> <Aufgehoben>false</Aufgehoben> <CanBeReferenced>false</CanBeReferenced> <Disabled>false</Disabled> <Domain>StringIdent</Domain> <Editordescriptor> <Editormember>false</Editormember> <LabelText></LabelText> <MaxCharacters>0</MaxCharacters> <Mnemonic></Mnemonic> <Position>0</Position> <ReferenceWeight>keine</ReferenceWeight> <RessourceIdentifier></RessourceIdentifier> <ToolTipText></ToolTipText> </Editordescriptor> <ForeignKey>false</ForeignKey> <Global>false</Global> <GlobalId>false</GlobalId> <HideReference>false</HideReference> <History></History> <IndexSearchMember>false</IndexSearchMember> <Indexed>true</Indexed> <IndividualDefaultValue></IndividualDefaultValue> <Kodiert>false</Kodiert> <Kommentar></Kommentar> <Konsistenz> <Writeablemember>false</Writeablemember> </Konsistenz> <LastModificationField>false</LastModificationField> <ListItemField>false</ListItemField> <Name>Token</Name> <NotNull>true</NotNull> <PanelNumber>0</PanelNumber> <Parameter></Parameter> <PrimaryKey>false</PrimaryKey> <RemovedStateField>false</RemovedStateField> <TechnicalField>false</TechnicalField> <Unique>true</Unique> </Spalte3> </Spalten> <Stereotype> <Anzahl>1</Anzahl> </Stereotype> <Stereotype0>ZoneManager</Stereotype0> <Views> <Anzahl>1</Anzahl> <View0> <Name>Main</Name> <X>75</X> <Y>650</Y> </View0> </Views> </Tabelle9> </Tabellen> <Views> <Anzahl>1</Anzahl> <View0> <Beschreibung>Diese Sicht beinhaltet alle Tabellen des Schemas</Beschreibung> <Name>Main</Name> <ReferenzierteSpaltenAnzeigen>true</ReferenzierteSpaltenAnzeigen> <Tabelle0>ConfigurationEntry</Tabelle0> <Tabelle1>LocalizationResource</Tabelle1> <Tabelle10>DeviceEngine</Tabelle10> <Tabelle11>ZoneMapping</Tabelle11> <Tabelle12>LinkedDeviceEntry</Tabelle12> <Tabelle13>ZoneTransition</Tabelle13> <Tabelle14>MediaCategory</Tabelle14> <Tabelle15>Medium</Tabelle15> <Tabelle16>GUITable</Tabelle16> <Tabelle17>GUITableColumn</Tabelle17> <Tabelle18>ButtonMapping</Tabelle18> <Tabelle19>DeviceAlias</Tabelle19> <Tabelle2>LicenseEntry</Tabelle2> <Tabelle20>DeviceType</Tabelle20> <Tabelle21>MenuEntry</Tabelle21> <Tabelle22>SQLReport</Tabelle22> <Tabelle23>SQLReportSharedUser</Tabelle23> <Tabelle24>Map</Tabelle24> <Tabelle25>MapMapping</Tabelle25> <Tabelle3>PlugInEntry</Tabelle3> <Tabelle4>ApplicationUser</Tabelle4> <Tabelle5>ApplicationUserGroup</Tabelle5> <Tabelle6>ApplicationRight</Tabelle6> <Tabelle7>GroupMember</Tabelle7> <Tabelle8>GroupRight</Tabelle8> <Tabelle9>Zone</Tabelle9> <Tabellenanzahl>26</Tabellenanzahl> <TechnischeSpaltenVerstecken>false</TechnischeSpaltenVerstecken> </View0> </Views> </Diagramm>
godunko/cga
Ada
1,213
adb
-- -- Copyright (C) 2023, Vadim Godunko <[email protected]> -- -- SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -- package body CGK.Primitives.Circles_2D is ------------ -- Center -- ------------ function Center (Self : Circle_2D) return CGK.Primitives.Points_2D.Point_2D is begin return Self.Center; end Center; ---------------------- -- Create_Circle_2D -- ---------------------- function Create_Circle_2D (Center : CGK.Primitives.Points_2D.Point_2D; Radius : CGK.Reals.Real) return Circle_2D is begin return (Center => Center, Radius => Radius); end Create_Circle_2D; ---------------------- -- Create_Circle_2D -- ---------------------- function Create_Circle_2D (X : CGK.Reals.Real; Y : CGK.Reals.Real; Radius : CGK.Reals.Real) return Circle_2D is begin return (Center => CGK.Primitives.Points_2D.Create_Point_2D (X, Y), Radius => Radius); end Create_Circle_2D; ------------ -- Radius -- ------------ function Radius (Self : Circle_2D) return CGK.Reals.Real is begin return Self.Radius; end Radius; end CGK.Primitives.Circles_2D;
jscparker/math_packages
Ada
1,085
ads
-- PACKAGE pc_1_interface -- -- The 17th order coefficients are almost always the best choice. -- -- The Predictor-Corrector method uses least-squares to fit a 17th -- order polynomial to the 33 previous values of F in dY/dt = F(t,Y). -- The least-squares-fit polynomial is used to predict the next -- values of F and Y. with pc_1_coeff_16; with pc_1_coeff_17; with pc_1_coeff_18; package pc_1_interface is -- predictor_Coeff_16 (16th order) gives bit better stability. -- predictor_Coeff_17 (17th order) is usually best for numerical -- accuracy, and best choice for general use. -- predictor_Coeff_18 (18th order) gives a bit better numerical -- accuracy when larger stepsizes are used (and when -- desired accuracy is well below machine's ultimate). --generic package Predictor_Corrector_Rules renames pc_1_coeff_16; generic package Predictor_Corrector_Rules renames pc_1_coeff_17; --use this --generic package Predictor_Corrector_Rules renames pc_1_coeff_18; end pc_1_interface;
AdaCore/libadalang
Ada
2,739
adb
procedure Test is function Foo (X : Integer) return Integer is (42); procedure Foo_Proc is begin null; end Foo_Proc; package T is type TT is tagged null record; procedure Foo (Self : TT) is null; end T; generic type T is private; function Foo_G (X : Integer) return Integer; function Foo_G (X : Integer) return Integer is (42); function Foo_I is new Foo_G (Integer); generic with function F (X : Integer) return Integer; package Pkg_G is function Foo (X : Integer) return Integer is (F (X)); end Pkg_G; package Pkg_I is new Pkg_G (Foo); package Pkg_J is new Pkg_G (Foo_I); function Bar return Integer is (42); type Int_Ptr is access all Integer; function Get_Ptr (X : Integer) return Int_Ptr is (null); function Get_Ptr_2 return Int_Ptr is (null); type Fun_Type_1 is access function return Integer; type Fun_Type_2 is access function (Z : Integer) return Integer; type Fun_Type_3 is access function return Int_Ptr; type Fun_Type_4 is access function (T : Integer := 0) return Integer; type Fun_Type_5 is access function (U : Integer := 0) return Fun_Type_4; type Proc_Type is access procedure (E, F : Integer); type Access_Fun_4 is access Fun_Type_5; function Get_Fun (X : Integer) return Fun_Type_2 is (Foo'Access); function Get_Fun_2 return Fun_Type_2 is (Foo'Access); function Get_Fun_3 return Fun_Type_1 is (null); type Access_Array_1 is array (Integer range 1 .. 2) of Fun_Type_1; type Access_Array_2 is array (Integer range 1 .. 2) of Fun_Type_2; type Access_Array_3 is array (Integer range 1 .. 2) of Proc_Type; Inst : T.TT; R : Integer; F : Fun_Type_1 := Bar'Access; G : Fun_Type_2 := Foo'Access; H : Fun_Type_3 := null; I : Fun_Type_4 := null; J : Fun_Type_5 := null; K : Access_Fun_4 := null; Arr_1 : Access_Array_1; Arr_2 : Access_Array_2; Arr_3 : Access_Array_3; Addr : System.Address; begin R := Foo (3); Foo_Proc; Inst.Foo; T.Foo (Inst); R := Bar; R := Foo_I (3); R := F.all; R := G (2); R := G.all (2); R := H.all.all; R := I.all; R := I (2); R := I.all (2); R := J.all (2).all (3); R := J (U => 2) (T => 3); R := J.all.all; R := J.all (U => 2).all; R := J.all.all (T => 3); R := K.all.all.all; R := K.all (U => 2) (T => 3); R := Get_Ptr (2).all; R := Get_Ptr_2.all; R := Get_Fun (4)(2); R := Get_Fun (4).all (2); R := Get_Fun_2 (4); R := Get_Fun_2.all (4); R := Get_Fun_3.all; R := Arr_1 (1).all; R := Arr_2 (1) (12); R := Arr_2 (1).all (42); Arr_3 (1) (42, 12); R := Pkg_I.Foo (42); R := Foo_I (42); Addr := Bar'Address; end Test;
shinesolutions/swagger-aem
Ada
28,574
adb
-- Adobe Experience Manager (AEM) API -- Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API -- ------------ EDIT NOTE ------------ -- This file was generated with openapi-generator. You can modify it to implement -- the server. After you modify this file, you should add the following line -- to the .openapi-generator-ignore file: -- -- src/-servers.adb -- -- Then, you can drop this edit note comment. -- ------------ EDIT NOTE ------------ package body .Servers is -- overriding procedure Get_Aem_Product_Info (Server : in out Server_Type ; Result : out Swagger.UString_Vectors.Vector; Context : in out Swagger.Servers.Context_Type) is begin null; end Get_Aem_Product_Info; -- overriding procedure Get_Bundle_Info (Server : in out Server_Type; Name : in Swagger.UString; Result : out .Models.BundleInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Get_Bundle_Info; -- overriding procedure Get_Config_Mgr (Server : in out Server_Type ; Result : out Swagger.UString; Context : in out Swagger.Servers.Context_Type) is begin null; end Get_Config_Mgr; -- overriding procedure Post_Bundle (Server : in out Server_Type; Name : in Swagger.UString; Action : in Swagger.UString; Context : in out Swagger.Servers.Context_Type) is begin null; end Post_Bundle; -- overriding procedure Post_Jmx_Repository (Server : in out Server_Type; Action : in Swagger.UString; Context : in out Swagger.Servers.Context_Type) is begin null; end Post_Jmx_Repository; -- overriding procedure Post_Saml_Configuration (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Path : in Swagger.UString_Vectors.Vector; Service_Periodranking : in Swagger.Nullable_Integer; Idp_Url : in Swagger.Nullable_UString; Idp_Cert_Alias : in Swagger.Nullable_UString; Idp_Http_Redirect : in Swagger.Nullable_Boolean; Service_Provider_Entity_Id : in Swagger.Nullable_UString; Assertion_Consumer_Service_URL : in Swagger.Nullable_UString; Sp_Private_Key_Alias : in Swagger.Nullable_UString; Key_Store_Password : in Swagger.Nullable_UString; Default_Redirect_Url : in Swagger.Nullable_UString; User_IDAttribute : in Swagger.Nullable_UString; Use_Encryption : in Swagger.Nullable_Boolean; Create_User : in Swagger.Nullable_Boolean; Add_Group_Memberships : in Swagger.Nullable_Boolean; Group_Membership_Attribute : in Swagger.Nullable_UString; Default_Groups : in Swagger.UString_Vectors.Vector; Name_Id_Format : in Swagger.Nullable_UString; Synchronize_Attributes : in Swagger.UString_Vectors.Vector; Handle_Logout : in Swagger.Nullable_Boolean; Logout_Url : in Swagger.Nullable_UString; Clock_Tolerance : in Swagger.Nullable_Integer; Digest_Method : in Swagger.Nullable_UString; Signature_Method : in Swagger.Nullable_UString; User_Intermediate_Path : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Result : out .Models.SamlConfigurationInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Post_Saml_Configuration; -- overriding procedure Get_Login_Page (Server : in out Server_Type ; Result : out Swagger.UString; Context : in out Swagger.Servers.Context_Type) is begin null; end Get_Login_Page; -- overriding procedure Post_Cq_Actions (Server : in out Server_Type; Authorizable_Id : in Swagger.UString; Changelog : in Swagger.UString; Context : in out Swagger.Servers.Context_Type) is begin null; end Post_Cq_Actions; -- overriding procedure Get_Crxde_Status (Server : in out Server_Type ; Result : out Swagger.UString; Context : in out Swagger.Servers.Context_Type) is begin null; end Get_Crxde_Status; -- overriding procedure Get_Install_Status (Server : in out Server_Type ; Result : out .Models.InstallStatus_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Get_Install_Status; -- overriding procedure Get_Package_Manager_Servlet (Server : in out Server_Type ; Context : in out Swagger.Servers.Context_Type) is begin null; end Get_Package_Manager_Servlet; -- overriding procedure Post_Package_Service (Server : in out Server_Type; Cmd : in Swagger.UString; Result : out Swagger.UString; Context : in out Swagger.Servers.Context_Type) is begin null; end Post_Package_Service; -- overriding procedure Post_Package_Service_Json (Server : in out Server_Type; Path : in Swagger.UString; Cmd : in Swagger.UString; Group_Name : in Swagger.Nullable_UString; Package_Name : in Swagger.Nullable_UString; Package_Version : in Swagger.Nullable_UString; Charset : in Swagger.Nullable_UString; Force : in Swagger.Nullable_Boolean; Recursive : in Swagger.Nullable_Boolean; P_Package : in Swagger.File_Part_Type; Result : out Swagger.UString; Context : in out Swagger.Servers.Context_Type) is begin null; end Post_Package_Service_Json; -- overriding procedure Post_Package_Update (Server : in out Server_Type; Group_Name : in Swagger.UString; Package_Name : in Swagger.UString; Version : in Swagger.UString; Path : in Swagger.UString; Filter : in Swagger.Nullable_UString; Charset : in Swagger.Nullable_UString; Result : out Swagger.UString; Context : in out Swagger.Servers.Context_Type) is begin null; end Post_Package_Update; -- overriding procedure Post_Set_Password (Server : in out Server_Type; Old : in Swagger.UString; Plain : in Swagger.UString; Verify : in Swagger.UString; Result : out Swagger.UString; Context : in out Swagger.Servers.Context_Type) is begin null; end Post_Set_Password; -- overriding procedure Get_Aem_Health_Check (Server : in out Server_Type; Tags : in Swagger.Nullable_UString; Combine_Tags_Or : in Swagger.Nullable_Boolean; Result : out Swagger.UString; Context : in out Swagger.Servers.Context_Type) is begin null; end Get_Aem_Health_Check; -- overriding procedure Post_Config_Aem_Health_Check_Servlet (Server : in out Server_Type; Bundles_Periodignored : in Swagger.UString_Vectors.Vector; Bundles_Periodignored_At_Type_Hint : in Swagger.Nullable_UString; Context : in out Swagger.Servers.Context_Type) is begin null; end Post_Config_Aem_Health_Check_Servlet; -- overriding procedure Post_Config_Aem_Password_Reset (Server : in out Server_Type; Pwdreset_Periodauthorizables : in Swagger.UString_Vectors.Vector; Pwdreset_Periodauthorizables_At_Type_Hint : in Swagger.Nullable_UString; Context : in out Swagger.Servers.Context_Type) is begin null; end Post_Config_Aem_Password_Reset; -- overriding procedure Ssl_Setup (Server : in out Server_Type; Keystore_Password : in Swagger.UString; Keystore_Password_Confirm : in Swagger.UString; Truststore_Password : in Swagger.UString; Truststore_Password_Confirm : in Swagger.UString; Https_Hostname : in Swagger.UString; Https_Port : in Swagger.UString; Privatekey_File : in Swagger.File_Part_Type; Certificate_File : in Swagger.File_Part_Type; Result : out Swagger.UString; Context : in out Swagger.Servers.Context_Type) is begin null; end Ssl_Setup; -- overriding procedure Delete_Agent (Server : in out Server_Type; Runmode : in Swagger.UString; Name : in Swagger.UString; Context : in out Swagger.Servers.Context_Type) is begin null; end Delete_Agent; -- overriding procedure Delete_Node (Server : in out Server_Type; Path : in Swagger.UString; Name : in Swagger.UString; Context : in out Swagger.Servers.Context_Type) is begin null; end Delete_Node; -- overriding procedure Get_Agent (Server : in out Server_Type; Runmode : in Swagger.UString; Name : in Swagger.UString; Context : in out Swagger.Servers.Context_Type) is begin null; end Get_Agent; -- overriding procedure Get_Agents (Server : in out Server_Type; Runmode : in Swagger.UString; Result : out Swagger.UString; Context : in out Swagger.Servers.Context_Type) is begin null; end Get_Agents; -- overriding procedure Get_Authorizable_Keystore (Server : in out Server_Type; Intermediate_Path : in Swagger.UString; Authorizable_Id : in Swagger.UString; Result : out .Models.KeystoreInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Get_Authorizable_Keystore; -- overriding procedure Get_Keystore (Server : in out Server_Type; Intermediate_Path : in Swagger.UString; Authorizable_Id : in Swagger.UString; Result : out Swagger.Http_Content_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Get_Keystore; -- overriding procedure Get_Node (Server : in out Server_Type; Path : in Swagger.UString; Name : in Swagger.UString; Context : in out Swagger.Servers.Context_Type) is begin null; end Get_Node; -- overriding procedure Get_Package (Server : in out Server_Type; Group : in Swagger.UString; Name : in Swagger.UString; Version : in Swagger.UString; Result : out Swagger.Http_Content_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Get_Package; -- overriding procedure Get_Package_Filter (Server : in out Server_Type; Group : in Swagger.UString; Name : in Swagger.UString; Version : in Swagger.UString; Result : out Swagger.UString; Context : in out Swagger.Servers.Context_Type) is begin null; end Get_Package_Filter; -- overriding procedure Get_Query (Server : in out Server_Type; Path : in Swagger.UString; P_Periodlimit : in Swagger.Number; P_1Property : in Swagger.UString; P_1Property_Periodvalue : in Swagger.UString; Result : out Swagger.UString; Context : in out Swagger.Servers.Context_Type) is begin null; end Get_Query; -- overriding procedure Get_Truststore (Server : in out Server_Type ; Result : out Swagger.Http_Content_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Get_Truststore; -- overriding procedure Get_Truststore_Info (Server : in out Server_Type ; Result : out .Models.TruststoreInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Get_Truststore_Info; -- overriding procedure Post_Agent (Server : in out Server_Type; Runmode : in Swagger.UString; Name : in Swagger.UString; Jcr_Content_Slashcq_Distribute : in Swagger.Nullable_Boolean; Jcr_Content_Slashcq_Distribute_At_Type_Hint : in Swagger.Nullable_UString; Jcr_Content_Slashcq_Name : in Swagger.Nullable_UString; Jcr_Content_Slashcq_Template : in Swagger.Nullable_UString; Jcr_Content_Slashenabled : in Swagger.Nullable_Boolean; Jcr_Content_Slashjcr_Description : in Swagger.Nullable_UString; Jcr_Content_Slashjcr_Last_Modified : in Swagger.Nullable_UString; Jcr_Content_Slashjcr_Last_Modified_By : in Swagger.Nullable_UString; Jcr_Content_Slashjcr_Mixin_Types : in Swagger.Nullable_UString; Jcr_Content_Slashjcr_Title : in Swagger.Nullable_UString; Jcr_Content_Slashlog_Level : in Swagger.Nullable_UString; Jcr_Content_Slashno_Status_Update : in Swagger.Nullable_Boolean; Jcr_Content_Slashno_Versioning : in Swagger.Nullable_Boolean; Jcr_Content_Slashprotocol_Connect_Timeout : in Swagger.Number; Jcr_Content_Slashprotocol_HTTPConnection_Closed : in Swagger.Nullable_Boolean; Jcr_Content_Slashprotocol_HTTPExpired : in Swagger.Nullable_UString; Jcr_Content_Slashprotocol_HTTPHeaders : in Swagger.UString_Vectors.Vector; Jcr_Content_Slashprotocol_HTTPHeaders_At_Type_Hint : in Swagger.Nullable_UString; Jcr_Content_Slashprotocol_HTTPMethod : in Swagger.Nullable_UString; Jcr_Content_Slashprotocol_HTTPSRelaxed : in Swagger.Nullable_Boolean; Jcr_Content_Slashprotocol_Interface : in Swagger.Nullable_UString; Jcr_Content_Slashprotocol_Socket_Timeout : in Swagger.Number; Jcr_Content_Slashprotocol_Version : in Swagger.Nullable_UString; Jcr_Content_Slashproxy_NTLMDomain : in Swagger.Nullable_UString; Jcr_Content_Slashproxy_NTLMHost : in Swagger.Nullable_UString; Jcr_Content_Slashproxy_Host : in Swagger.Nullable_UString; Jcr_Content_Slashproxy_Password : in Swagger.Nullable_UString; Jcr_Content_Slashproxy_Port : in Swagger.Number; Jcr_Content_Slashproxy_User : in Swagger.Nullable_UString; Jcr_Content_Slashqueue_Batch_Max_Size : in Swagger.Number; Jcr_Content_Slashqueue_Batch_Mode : in Swagger.Nullable_UString; Jcr_Content_Slashqueue_Batch_Wait_Time : in Swagger.Number; Jcr_Content_Slashretry_Delay : in Swagger.Nullable_UString; Jcr_Content_Slashreverse_Replication : in Swagger.Nullable_Boolean; Jcr_Content_Slashserialization_Type : in Swagger.Nullable_UString; Jcr_Content_Slashsling_Resource_Type : in Swagger.Nullable_UString; Jcr_Content_Slashssl : in Swagger.Nullable_UString; Jcr_Content_Slashtransport_NTLMDomain : in Swagger.Nullable_UString; Jcr_Content_Slashtransport_NTLMHost : in Swagger.Nullable_UString; Jcr_Content_Slashtransport_Password : in Swagger.Nullable_UString; Jcr_Content_Slashtransport_Uri : in Swagger.Nullable_UString; Jcr_Content_Slashtransport_User : in Swagger.Nullable_UString; Jcr_Content_Slashtrigger_Distribute : in Swagger.Nullable_Boolean; Jcr_Content_Slashtrigger_Modified : in Swagger.Nullable_Boolean; Jcr_Content_Slashtrigger_On_Off_Time : in Swagger.Nullable_Boolean; Jcr_Content_Slashtrigger_Receive : in Swagger.Nullable_Boolean; Jcr_Content_Slashtrigger_Specific : in Swagger.Nullable_Boolean; Jcr_Content_Slashuser_Id : in Swagger.Nullable_UString; Jcr_Primary_Type : in Swagger.Nullable_UString; Operation : in Swagger.Nullable_UString; Context : in out Swagger.Servers.Context_Type) is begin null; end Post_Agent; -- overriding procedure Post_Authorizable_Keystore (Server : in out Server_Type; Intermediate_Path : in Swagger.UString; Authorizable_Id : in Swagger.UString; Operation : in Swagger.Nullable_UString; Current_Password : in Swagger.Nullable_UString; New_Password : in Swagger.Nullable_UString; Re_Password : in Swagger.Nullable_UString; Key_Password : in Swagger.Nullable_UString; Key_Store_Pass : in Swagger.Nullable_UString; Alias : in Swagger.Nullable_UString; New_Alias : in Swagger.Nullable_UString; Remove_Alias : in Swagger.Nullable_UString; Cert_Chain : in Swagger.File_Part_Type; Pk : in Swagger.File_Part_Type; Key_Store : in Swagger.File_Part_Type; Result : out .Models.KeystoreInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Post_Authorizable_Keystore; -- overriding procedure Post_Authorizables (Server : in out Server_Type; Authorizable_Id : in Swagger.UString; Intermediate_Path : in Swagger.UString; Create_User : in Swagger.Nullable_UString; Create_Group : in Swagger.Nullable_UString; Rep_Password : in Swagger.Nullable_UString; Profile_Slashgiven_Name : in Swagger.Nullable_UString; Result : out Swagger.UString; Context : in out Swagger.Servers.Context_Type) is begin null; end Post_Authorizables; -- overriding procedure Post_Config_Adobe_Granite_Saml_Authentication_Handler (Server : in out Server_Type; Key_Store_Password : in Swagger.Nullable_UString; Key_Store_Password_At_Type_Hint : in Swagger.Nullable_UString; Service_Periodranking : in Swagger.Nullable_Integer; Service_Periodranking_At_Type_Hint : in Swagger.Nullable_UString; Idp_Http_Redirect : in Swagger.Nullable_Boolean; Idp_Http_Redirect_At_Type_Hint : in Swagger.Nullable_UString; Create_User : in Swagger.Nullable_Boolean; Create_User_At_Type_Hint : in Swagger.Nullable_UString; Default_Redirect_Url : in Swagger.Nullable_UString; Default_Redirect_Url_At_Type_Hint : in Swagger.Nullable_UString; User_IDAttribute : in Swagger.Nullable_UString; User_IDAttribute_At_Type_Hint : in Swagger.Nullable_UString; Default_Groups : in Swagger.UString_Vectors.Vector; Default_Groups_At_Type_Hint : in Swagger.Nullable_UString; Idp_Cert_Alias : in Swagger.Nullable_UString; Idp_Cert_Alias_At_Type_Hint : in Swagger.Nullable_UString; Add_Group_Memberships : in Swagger.Nullable_Boolean; Add_Group_Memberships_At_Type_Hint : in Swagger.Nullable_UString; Path : in Swagger.UString_Vectors.Vector; Path_At_Type_Hint : in Swagger.Nullable_UString; Synchronize_Attributes : in Swagger.UString_Vectors.Vector; Synchronize_Attributes_At_Type_Hint : in Swagger.Nullable_UString; Clock_Tolerance : in Swagger.Nullable_Integer; Clock_Tolerance_At_Type_Hint : in Swagger.Nullable_UString; Group_Membership_Attribute : in Swagger.Nullable_UString; Group_Membership_Attribute_At_Type_Hint : in Swagger.Nullable_UString; Idp_Url : in Swagger.Nullable_UString; Idp_Url_At_Type_Hint : in Swagger.Nullable_UString; Logout_Url : in Swagger.Nullable_UString; Logout_Url_At_Type_Hint : in Swagger.Nullable_UString; Service_Provider_Entity_Id : in Swagger.Nullable_UString; Service_Provider_Entity_Id_At_Type_Hint : in Swagger.Nullable_UString; Assertion_Consumer_Service_URL : in Swagger.Nullable_UString; Assertion_Consumer_Service_URLAt_Type_Hint : in Swagger.Nullable_UString; Handle_Logout : in Swagger.Nullable_Boolean; Handle_Logout_At_Type_Hint : in Swagger.Nullable_UString; Sp_Private_Key_Alias : in Swagger.Nullable_UString; Sp_Private_Key_Alias_At_Type_Hint : in Swagger.Nullable_UString; Use_Encryption : in Swagger.Nullable_Boolean; Use_Encryption_At_Type_Hint : in Swagger.Nullable_UString; Name_Id_Format : in Swagger.Nullable_UString; Name_Id_Format_At_Type_Hint : in Swagger.Nullable_UString; Digest_Method : in Swagger.Nullable_UString; Digest_Method_At_Type_Hint : in Swagger.Nullable_UString; Signature_Method : in Swagger.Nullable_UString; Signature_Method_At_Type_Hint : in Swagger.Nullable_UString; User_Intermediate_Path : in Swagger.Nullable_UString; User_Intermediate_Path_At_Type_Hint : in Swagger.Nullable_UString; Context : in out Swagger.Servers.Context_Type) is begin null; end Post_Config_Adobe_Granite_Saml_Authentication_Handler; -- overriding procedure Post_Config_Apache_Felix_Jetty_Based_Http_Service (Server : in out Server_Type; Org_Periodapache_Periodfelix_Periodhttps_Periodnio : in Swagger.Nullable_Boolean; Org_Periodapache_Periodfelix_Periodhttps_Periodnio_At_Type_Hint : in Swagger.Nullable_UString; Org_Periodapache_Periodfelix_Periodhttps_Periodkeystore : in Swagger.Nullable_UString; Org_Periodapache_Periodfelix_Periodhttps_Periodkeystore_At_Type_Hint : in Swagger.Nullable_UString; Org_Periodapache_Periodfelix_Periodhttps_Periodkeystore_Periodpassword : in Swagger.Nullable_UString; Org_Periodapache_Periodfelix_Periodhttps_Periodkeystore_Periodpassword_At_Type_Hint : in Swagger.Nullable_UString; Org_Periodapache_Periodfelix_Periodhttps_Periodkeystore_Periodkey : in Swagger.Nullable_UString; Org_Periodapache_Periodfelix_Periodhttps_Periodkeystore_Periodkey_At_Type_Hint : in Swagger.Nullable_UString; Org_Periodapache_Periodfelix_Periodhttps_Periodkeystore_Periodkey_Periodpassword : in Swagger.Nullable_UString; Org_Periodapache_Periodfelix_Periodhttps_Periodkeystore_Periodkey_Periodpassword_At_Type_Hint : in Swagger.Nullable_UString; Org_Periodapache_Periodfelix_Periodhttps_Periodtruststore : in Swagger.Nullable_UString; Org_Periodapache_Periodfelix_Periodhttps_Periodtruststore_At_Type_Hint : in Swagger.Nullable_UString; Org_Periodapache_Periodfelix_Periodhttps_Periodtruststore_Periodpassword : in Swagger.Nullable_UString; Org_Periodapache_Periodfelix_Periodhttps_Periodtruststore_Periodpassword_At_Type_Hint : in Swagger.Nullable_UString; Org_Periodapache_Periodfelix_Periodhttps_Periodclientcertificate : in Swagger.Nullable_UString; Org_Periodapache_Periodfelix_Periodhttps_Periodclientcertificate_At_Type_Hint : in Swagger.Nullable_UString; Org_Periodapache_Periodfelix_Periodhttps_Periodenable : in Swagger.Nullable_Boolean; Org_Periodapache_Periodfelix_Periodhttps_Periodenable_At_Type_Hint : in Swagger.Nullable_UString; Org_Periodosgi_Periodservice_Periodhttp_Periodport_Periodsecure : in Swagger.Nullable_UString; Org_Periodosgi_Periodservice_Periodhttp_Periodport_Periodsecure_At_Type_Hint : in Swagger.Nullable_UString; Context : in out Swagger.Servers.Context_Type) is begin null; end Post_Config_Apache_Felix_Jetty_Based_Http_Service; -- overriding procedure Post_Config_Apache_Http_Components_Proxy_Configuration (Server : in out Server_Type; Proxy_Periodhost : in Swagger.Nullable_UString; Proxy_Periodhost_At_Type_Hint : in Swagger.Nullable_UString; Proxy_Periodport : in Swagger.Nullable_Integer; Proxy_Periodport_At_Type_Hint : in Swagger.Nullable_UString; Proxy_Periodexceptions : in Swagger.UString_Vectors.Vector; Proxy_Periodexceptions_At_Type_Hint : in Swagger.Nullable_UString; Proxy_Periodenabled : in Swagger.Nullable_Boolean; Proxy_Periodenabled_At_Type_Hint : in Swagger.Nullable_UString; Proxy_Perioduser : in Swagger.Nullable_UString; Proxy_Perioduser_At_Type_Hint : in Swagger.Nullable_UString; Proxy_Periodpassword : in Swagger.Nullable_UString; Proxy_Periodpassword_At_Type_Hint : in Swagger.Nullable_UString; Context : in out Swagger.Servers.Context_Type) is begin null; end Post_Config_Apache_Http_Components_Proxy_Configuration; -- overriding procedure Post_Config_Apache_Sling_Dav_Ex_Servlet (Server : in out Server_Type; Alias : in Swagger.Nullable_UString; Alias_At_Type_Hint : in Swagger.Nullable_UString; Dav_Periodcreate_Absolute_Uri : in Swagger.Nullable_Boolean; Dav_Periodcreate_Absolute_Uri_At_Type_Hint : in Swagger.Nullable_UString; Context : in out Swagger.Servers.Context_Type) is begin null; end Post_Config_Apache_Sling_Dav_Ex_Servlet; -- overriding procedure Post_Config_Apache_Sling_Get_Servlet (Server : in out Server_Type; Json_Periodmaximumresults : in Swagger.Nullable_UString; Json_Periodmaximumresults_At_Type_Hint : in Swagger.Nullable_UString; Enable_Periodhtml : in Swagger.Nullable_Boolean; Enable_Periodhtml_At_Type_Hint : in Swagger.Nullable_UString; Enable_Periodtxt : in Swagger.Nullable_Boolean; Enable_Periodtxt_At_Type_Hint : in Swagger.Nullable_UString; Enable_Periodxml : in Swagger.Nullable_Boolean; Enable_Periodxml_At_Type_Hint : in Swagger.Nullable_UString; Context : in out Swagger.Servers.Context_Type) is begin null; end Post_Config_Apache_Sling_Get_Servlet; -- overriding procedure Post_Config_Apache_Sling_Referrer_Filter (Server : in out Server_Type; Allow_Periodempty : in Swagger.Nullable_Boolean; Allow_Periodempty_At_Type_Hint : in Swagger.Nullable_UString; Allow_Periodhosts : in Swagger.Nullable_UString; Allow_Periodhosts_At_Type_Hint : in Swagger.Nullable_UString; Allow_Periodhosts_Periodregexp : in Swagger.Nullable_UString; Allow_Periodhosts_Periodregexp_At_Type_Hint : in Swagger.Nullable_UString; Filter_Periodmethods : in Swagger.Nullable_UString; Filter_Periodmethods_At_Type_Hint : in Swagger.Nullable_UString; Context : in out Swagger.Servers.Context_Type) is begin null; end Post_Config_Apache_Sling_Referrer_Filter; -- overriding procedure Post_Config_Property (Server : in out Server_Type; Config_Node_Name : in Swagger.UString; Context : in out Swagger.Servers.Context_Type) is begin null; end Post_Config_Property; -- overriding procedure Post_Node (Server : in out Server_Type; Path : in Swagger.UString; Name : in Swagger.UString; Operation : in Swagger.Nullable_UString; Delete_Authorizable : in Swagger.Nullable_UString; File : in Swagger.File_Part_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Post_Node; -- overriding procedure Post_Node_Rw (Server : in out Server_Type; Path : in Swagger.UString; Name : in Swagger.UString; Add_Members : in Swagger.Nullable_UString; Context : in out Swagger.Servers.Context_Type) is begin null; end Post_Node_Rw; -- overriding procedure Post_Path (Server : in out Server_Type; Path : in Swagger.UString; Jcr_Primary_Type : in Swagger.UString; Name : in Swagger.UString; Context : in out Swagger.Servers.Context_Type) is begin null; end Post_Path; -- overriding procedure Post_Query (Server : in out Server_Type; Path : in Swagger.UString; P_Periodlimit : in Swagger.Number; P_1Property : in Swagger.UString; P_1Property_Periodvalue : in Swagger.UString; Result : out Swagger.UString; Context : in out Swagger.Servers.Context_Type) is begin null; end Post_Query; -- overriding procedure Post_Tree_Activation (Server : in out Server_Type; Ignoredeactivated : in Boolean; Onlymodified : in Boolean; Path : in Swagger.UString; Context : in out Swagger.Servers.Context_Type) is begin null; end Post_Tree_Activation; -- overriding procedure Post_Truststore (Server : in out Server_Type; Operation : in Swagger.Nullable_UString; New_Password : in Swagger.Nullable_UString; Re_Password : in Swagger.Nullable_UString; Key_Store_Type : in Swagger.Nullable_UString; Remove_Alias : in Swagger.Nullable_UString; Certificate : in Swagger.File_Part_Type; Result : out Swagger.UString; Context : in out Swagger.Servers.Context_Type) is begin null; end Post_Truststore; -- overriding procedure Post_Truststore_PKCS12 (Server : in out Server_Type; Truststore_Periodp_12 : in Swagger.File_Part_Type; Result : out Swagger.UString; Context : in out Swagger.Servers.Context_Type) is begin null; end Post_Truststore_PKCS12; end .Servers;
kqr/qweyboard
Ada
21,198
ads
with System; with Interfaces.C; with System.Address_To_Access_Conversions; package XEvent is package C renames Interfaces.C; type XKeyEvent is record c_type : aliased C.Int; serial : aliased C.Unsigned_Long; send_event : aliased C.Int; the_display : System.Address; the_window : aliased C.Unsigned_Long; root : aliased C.Unsigned_Long; subwindow : aliased C.Unsigned_Long; the_time : aliased C.Unsigned_Long; x : aliased C.Int; y : aliased C.Int; x_root : aliased C.Int; y_root : aliased C.Int; state : aliased C.Unsigned; keycode : aliased C.Unsigned; same_screen : aliased C.Int; end record; pragma Convention (C_Pass_By_Copy, XKeyEvent); subtype XKeyPressedEvent is XKeyEvent; subtype XKeyReleasedEvent is XKeyEvent; type XButtonEvent is record c_type : aliased C.Int; serial : aliased C.Unsigned_Long; send_event : aliased C.Int; the_display : System.Address; the_window : aliased C.Unsigned_Long; root : aliased C.Unsigned_Long; subwindow : aliased C.Unsigned_Long; the_time : aliased C.Unsigned_Long; x : aliased C.Int; y : aliased C.Int; x_root : aliased C.Int; y_root : aliased C.Int; state : aliased C.Unsigned; button : aliased C.Unsigned; same_screen : aliased C.Int; end record; pragma Convention (C_Pass_By_Copy, XButtonEvent); subtype XButtonPressedEvent is XButtonEvent; subtype XButtonReleasedEvent is XButtonEvent; type XMotionEvent is record c_type : aliased C.Int; serial : aliased C.Unsigned_Long; send_event : aliased C.Int; the_display : System.Address; the_window : aliased C.Unsigned_Long; root : aliased C.Unsigned_Long; subwindow : aliased C.Unsigned_Long; the_time : aliased C.Unsigned_Long; x : aliased C.Int; y : aliased C.Int; x_root : aliased C.Int; y_root : aliased C.Int; state : aliased C.Unsigned; is_hint : aliased C.char; same_screen : aliased C.Int; end record; pragma Convention (C_Pass_By_Copy, XMotionEvent); subtype XPointerMovedEvent is XMotionEvent; type XCrossingEvent is record c_type : aliased C.Int; serial : aliased C.Unsigned_Long; send_event : aliased C.Int; the_display : System.Address; the_window : aliased C.Unsigned_Long; root : aliased C.Unsigned_Long; subwindow : aliased C.Unsigned_Long; the_time : aliased C.Unsigned_Long; x : aliased C.Int; y : aliased C.Int; x_root : aliased C.Int; y_root : aliased C.Int; mode : aliased C.Int; detail : aliased C.Int; same_screen : aliased C.Int; focus : aliased C.Int; state : aliased C.Unsigned; end record; pragma Convention (C_Pass_By_Copy, XCrossingEvent); subtype XEnterWindowEvent is XCrossingEvent; subtype XLeaveWindowEvent is XCrossingEvent; type XFocusChangeEvent is record c_type : aliased C.Int; serial : aliased C.Unsigned_Long; send_event : aliased C.Int; the_display : System.Address; the_window : aliased C.Unsigned_Long; mode : aliased C.Int; detail : aliased C.Int; end record; pragma Convention (C_Pass_By_Copy, XFocusChangeEvent); subtype XFocusInEvent is XFocusChangeEvent; subtype XFocusOutEvent is XFocusChangeEvent; subtype XKeymapEvent_key_vector_array is Interfaces.C.char_array (0 .. 31); type XKeymapEvent is record c_type : aliased C.Int; serial : aliased C.Unsigned_Long; send_event : aliased C.Int; the_display : System.Address; the_window : aliased C.Unsigned_Long; key_vector : aliased XKeymapEvent_key_vector_array; end record; pragma Convention (C_Pass_By_Copy, XKeymapEvent); type XExposeEvent is record c_type : aliased C.Int; serial : aliased C.Unsigned_Long; send_event : aliased C.Int; the_display : System.Address; the_window : aliased C.Unsigned_Long; x : aliased C.Int; y : aliased C.Int; width : aliased C.Int; height : aliased C.Int; count : aliased C.Int; end record; pragma Convention (C_Pass_By_Copy, XExposeEvent); type XGraphicsExposeEvent is record c_type : aliased C.Int; serial : aliased C.Unsigned_Long; send_event : aliased C.Int; the_display : System.Address; the_drawable : aliased C.Unsigned_Long; x : aliased C.Int; y : aliased C.Int; width : aliased C.Int; height : aliased C.Int; count : aliased C.Int; major_code : aliased C.Int; minor_code : aliased C.Int; end record; pragma Convention (C_Pass_By_Copy, XGraphicsExposeEvent); type XNoExposeEvent is record c_type : aliased C.Int; serial : aliased C.Unsigned_Long; send_event : aliased C.Int; the_display : System.Address; the_drawable : aliased C.Unsigned_Long; major_code : aliased C.Int; minor_code : aliased C.Int; end record; pragma Convention (C_Pass_By_Copy, XNoExposeEvent); type XVisibilityEvent is record c_type : aliased C.Int; serial : aliased C.Unsigned_Long; send_event : aliased C.Int; the_display : System.Address; the_window : aliased C.Unsigned_Long; state : aliased C.Int; end record; pragma Convention (C_Pass_By_Copy, XVisibilityEvent); type XCreateWindowEvent is record c_type : aliased C.Int; serial : aliased C.Unsigned_Long; send_event : aliased C.Int; the_display : System.Address; parent : aliased C.Unsigned_Long; the_window : aliased C.Unsigned_Long; x : aliased C.Int; y : aliased C.Int; width : aliased C.Int; height : aliased C.Int; border_width : aliased C.Int; override_redirect : aliased C.Int; end record; pragma Convention (C_Pass_By_Copy, XCreateWindowEvent); type XDestroyWindowEvent is record c_type : aliased C.Int; serial : aliased C.Unsigned_Long; send_event : aliased C.Int; the_display : System.Address; event : aliased C.Unsigned_Long; the_window : aliased C.Unsigned_Long; end record; pragma Convention (C_Pass_By_Copy, XDestroyWindowEvent); type XUnmapEvent is record c_type : aliased C.Int; serial : aliased C.Unsigned_Long; send_event : aliased C.Int; the_display : System.Address; event : aliased C.Unsigned_Long; the_window : aliased C.Unsigned_Long; from_configure : aliased C.Int; end record; pragma Convention (C_Pass_By_Copy, XUnmapEvent); type XMapEvent is record c_type : aliased C.Int; serial : aliased C.Unsigned_Long; send_event : aliased C.Int; the_display : System.Address; event : aliased C.Unsigned_Long; the_window : aliased C.Unsigned_Long; override_redirect : aliased C.Int; end record; pragma Convention (C_Pass_By_Copy, XMapEvent); type XMapRequestEvent is record c_type : aliased C.Int; serial : aliased C.Unsigned_Long; send_event : aliased C.Int; the_display : System.Address; parent : aliased C.Unsigned_Long; the_window : aliased C.Unsigned_Long; end record; pragma Convention (C_Pass_By_Copy, XMapRequestEvent); type XReparentEvent is record c_type : aliased C.Int; serial : aliased C.Unsigned_Long; send_event : aliased C.Int; the_display : System.Address; event : aliased C.Unsigned_Long; the_window : aliased C.Unsigned_Long; parent : aliased C.Unsigned_Long; x : aliased C.Int; y : aliased C.Int; override_redirect : aliased C.Int; end record; pragma Convention (C_Pass_By_Copy, XReparentEvent); type XConfigureEvent is record c_type : aliased C.Int; serial : aliased C.Unsigned_Long; send_event : aliased C.Int; the_display : System.Address; event : aliased C.Unsigned_Long; the_window : aliased C.Unsigned_Long; x : aliased C.Int; y : aliased C.Int; width : aliased C.Int; height : aliased C.Int; border_width : aliased C.Int; above : aliased C.Unsigned_Long; override_redirect : aliased C.Int; end record; pragma Convention (C_Pass_By_Copy, XConfigureEvent); type XGravityEvent is record c_type : aliased C.Int; serial : aliased C.Unsigned_Long; send_event : aliased C.Int; the_display : System.Address; event : aliased C.Unsigned_Long; the_window : aliased C.Unsigned_Long; x : aliased C.Int; y : aliased C.Int; end record; pragma Convention (C_Pass_By_Copy, XGravityEvent); type XResizeRequestEvent is record c_type : aliased C.Int; serial : aliased C.Unsigned_Long; send_event : aliased C.Int; the_display : System.Address; the_window : aliased C.Unsigned_Long; width : aliased C.Int; height : aliased C.Int; end record; pragma Convention (C_Pass_By_Copy, XResizeRequestEvent); type XConfigureRequestEvent is record c_type : aliased C.Int; serial : aliased C.Unsigned_Long; send_event : aliased C.Int; the_display : System.Address; parent : aliased C.Unsigned_Long; the_window : aliased C.Unsigned_Long; x : aliased C.Int; y : aliased C.Int; width : aliased C.Int; height : aliased C.Int; border_width : aliased C.Int; above : aliased C.Unsigned_Long; detail : aliased C.Int; value_mask : aliased C.Unsigned_Long; end record; pragma Convention (C_Pass_By_Copy, XConfigureRequestEvent); type XCirculateEvent is record c_type : aliased C.Int; serial : aliased C.Unsigned_Long; send_event : aliased C.Int; the_display : System.Address; event : aliased C.Unsigned_Long; the_window : aliased C.Unsigned_Long; place : aliased C.Int; end record; pragma Convention (C_Pass_By_Copy, XCirculateEvent); type XCirculateRequestEvent is record c_type : aliased C.Int; serial : aliased C.Unsigned_Long; send_event : aliased C.Int; the_display : System.Address; parent : aliased C.Unsigned_Long; the_window : aliased C.Unsigned_Long; place : aliased C.Int; end record; pragma Convention (C_Pass_By_Copy, XCirculateRequestEvent); type XPropertyEvent is record c_type : aliased C.Int; serial : aliased C.Unsigned_Long; send_event : aliased C.Int; the_display : System.Address; the_window : aliased C.Unsigned_Long; the_atom : aliased C.Unsigned_Long; the_time : aliased C.Unsigned_Long; state : aliased C.Int; end record; pragma Convention (C_Pass_By_Copy, XPropertyEvent); type XSelectionClearEvent is record c_type : aliased C.Int; serial : aliased C.Unsigned_Long; send_event : aliased C.Int; the_display : System.Address; the_window : aliased C.Unsigned_Long; selection : aliased C.Unsigned_Long; the_time : aliased C.Unsigned_Long; end record; pragma Convention (C_Pass_By_Copy, XSelectionClearEvent); type XSelectionRequestEvent is record c_type : aliased C.Int; serial : aliased C.Unsigned_Long; send_event : aliased C.Int; the_display : System.Address; owner : aliased C.Unsigned_Long; requestor : aliased C.Unsigned_Long; selection : aliased C.Unsigned_Long; target : aliased C.Unsigned_Long; property : aliased C.Unsigned_Long; the_time : aliased C.Unsigned_Long; end record; pragma Convention (C_Pass_By_Copy, XSelectionRequestEvent); type XSelectionEvent is record c_type : aliased C.Int; serial : aliased C.Unsigned_Long; send_event : aliased C.Int; the_display : System.Address; requestor : aliased C.Unsigned_Long; selection : aliased C.Unsigned_Long; target : aliased C.Unsigned_Long; property : aliased C.Unsigned_Long; the_time : aliased C.Unsigned_Long; end record; pragma Convention (C_Pass_By_Copy, XSelectionEvent); type XColormapEvent is record c_type : aliased C.Int; serial : aliased C.Unsigned_Long; send_event : aliased C.Int; the_display : System.Address; the_window : aliased C.Unsigned_Long; the_colormap : aliased C.Unsigned_Long; c_new : aliased C.Int; state : aliased C.Int; end record; pragma Convention (C_Pass_By_Copy, XColormapEvent); subtype anon1357_b_array is Interfaces.C.char_array (0 .. 19); type anon1357_s_array is array (0 .. 9) of aliased C.short; type anon1357_l_array is array (0 .. 4) of aliased C.long; type anon_1357 (discr : C.Unsigned := 0) is record case discr is when 0 => b : aliased anon1357_b_array; when 1 => s : aliased anon1357_s_array; when others => l : aliased anon1357_l_array; end case; end record; pragma Convention (C_Pass_By_Copy, anon_1357); pragma Unchecked_Union (anon_1357); subtype XClientMessageEvent_b_array is Interfaces.C.char_array (0 .. 19); type XClientMessageEvent_s_array is array (0 .. 9) of aliased C.short; type XClientMessageEvent_l_array is array (0 .. 4) of aliased C.long; type XClientMessageEvent_data_union (discr : C.Unsigned := 0) is record case discr is when 0 => b : aliased XClientMessageEvent_b_array; when 1 => s : aliased XClientMessageEvent_s_array; when others => l : aliased XClientMessageEvent_l_array; end case; end record; pragma Convention (C_Pass_By_Copy, XClientMessageEvent_data_union); pragma Unchecked_Union (XClientMessageEvent_data_union); type XClientMessageEvent is record c_type : aliased C.Int; serial : aliased C.Unsigned_Long; send_event : aliased C.Int; the_display : System.Address; the_window : aliased C.Unsigned_Long; message_type : aliased C.Unsigned_Long; format : aliased C.Int; data : XClientMessageEvent_data_union; end record; pragma Convention (C_Pass_By_Copy, XClientMessageEvent); type XMappingEvent is record c_type : aliased C.Int; serial : aliased C.Unsigned_Long; send_event : aliased C.Int; the_display : System.Address; the_window : aliased C.Unsigned_Long; request : aliased C.Int; first_keycode : aliased C.Int; count : aliased C.Int; end record; pragma Convention (C_Pass_By_Copy, XMappingEvent); type XErrorEvent is record c_type : aliased C.Int; the_display : System.Address; resourceid : aliased C.Unsigned_Long; serial : aliased C.Unsigned_Long; error_code : aliased C.Unsigned_char; request_code : aliased C.Unsigned_char; minor_code : aliased C.Unsigned_char; end record; pragma Convention (C_Pass_By_Copy, XErrorEvent); type XAnyEvent is record c_type : aliased C.Int; serial : aliased C.Unsigned_Long; send_event : aliased C.Int; the_display : System.Address; the_window : aliased C.Unsigned_Long; end record; pragma Convention (C_Pass_By_Copy, XAnyEvent); type XGenericEvent is record c_type : aliased C.Int; serial : aliased C.Unsigned_Long; send_event : aliased C.Int; the_display : System.Address; extension : aliased C.Int; evtype : aliased C.Int; end record; pragma Convention (C_Pass_By_Copy, XGenericEvent); type XGenericEventCookie is record c_type : aliased C.Int; serial : aliased C.Unsigned_Long; send_event : aliased C.Int; the_display : System.Address; extension : aliased C.Int; evtype : aliased C.Int; cookie : aliased C.Unsigned; data : aliased System.Address; end record; pragma Convention (C_Pass_By_Copy, XGenericEventCookie); type anon1376_pad_array is array (0 .. 23) of aliased C.long; type u_XEvent (discr : C.Unsigned := 0) is record case discr is when 0 => c_type : aliased C.Int; when 1 => xany : aliased XAnyEvent; when 2 => xkey : aliased XKeyEvent; when 3 => xbutton : aliased XButtonEvent; when 4 => xmotion : aliased XMotionEvent; when 5 => xcrossing : aliased XCrossingEvent; when 6 => xfocus : aliased XFocusChangeEvent; when 7 => xexpose : aliased XExposeEvent; when 8 => xgraphicsexpose : aliased XGraphicsExposeEvent; when 9 => xnoexpose : aliased XNoExposeEvent; when 10 => xvisibility : aliased XVisibilityEvent; when 11 => xcreatewindow : aliased XCreateWindowEvent; when 12 => xdestroywindow : aliased XDestroyWindowEvent; when 13 => xunmap : aliased XUnmapEvent; when 14 => xmap : aliased XMapEvent; when 15 => xmaprequest : aliased XMapRequestEvent; when 16 => xreparent : aliased XReparentEvent; when 17 => xconfigure : aliased XConfigureEvent; when 18 => xgravity : aliased XGravityEvent; when 19 => xresizerequest : aliased XResizeRequestEvent; when 20 => xconfigurerequest : aliased XConfigureRequestEvent; when 21 => xcirculate : aliased XCirculateEvent; when 22 => xcirculaterequest : aliased XCirculateRequestEvent; when 23 => xproperty : aliased XPropertyEvent; when 24 => xselectionclear : aliased XSelectionClearEvent; when 25 => xselectionrequest : aliased XSelectionRequestEvent; when 26 => xselection : aliased XSelectionEvent; when 27 => xcolormap : aliased XColormapEvent; when 28 => xclient : aliased XClientMessageEvent; when 29 => xmapping : aliased XMappingEvent; when 30 => xerror : aliased XErrorEvent; when 31 => xkeymap : aliased XKeymapEvent; when 32 => xgeneric : aliased XGenericEvent; when 33 => xcookie : aliased XGenericEventCookie; when others => pad : aliased anon1376_pad_array; end case; end record; pragma Convention (C_Pass_By_Copy, u_XEvent); pragma Unchecked_Union (u_XEvent); subtype Event is U_XEvent; type XIEvent is record c_type : aliased C.int; serial : aliased C.unsigned_long; send_event : aliased C.int; the_display : System.Address; extension : aliased C.int; evtype : aliased C.int; the_time : aliased C.Unsigned_Long; end record; pragma Convention (C_Pass_By_Copy, XIEvent); type XIButtonState is record mask_len : aliased C.int; mask : access C.unsigned_char; end record; pragma Convention (C_Pass_By_Copy, XIButtonState); type XIValuatorState is record mask_len : aliased C.int; mask : access C.unsigned_char; values : access C.double; end record; pragma Convention (C_Pass_By_Copy, XIValuatorState); type XIModifierState is record base : aliased C.int; latched : aliased C.int; locked : aliased C.int; effective : aliased C.int; end record; pragma Convention (C_Pass_By_Copy, XIModifierState); type XIDeviceEvent is record c_type : aliased C.int; serial : aliased C.unsigned_long; send_event : aliased C.int; the_display : System.Address; extension : aliased C.int; evtype : aliased C.int; the_time : aliased C.Unsigned_Long; deviceid : aliased C.int; sourceid : aliased C.int; detail : aliased C.int; root : aliased C.Unsigned_Long; event : aliased C.Unsigned_Long; child : aliased C.Unsigned_Long; root_x : aliased C.double; root_y : aliased C.double; event_x : aliased C.double; event_y : aliased C.double; flags : aliased C.int; buttons : aliased XIButtonState; valuators : aliased XIValuatorState; mods : aliased XIModifierState; group : aliased XIModifierState; end record; pragma Convention (C_Pass_By_Copy, XIDeviceEvent); function XNextEvent (Display : System.Address; Any_Event : in out U_XEvent) return C.Int; pragma Import (C, XNextEvent, "XNextEvent"); function XGetEventData (Display : System.Address; Cookie : in out XGenericEventCookie) return C.Int; pragma Import (C, XGetEventData, "XGetEventData"); procedure XFreeEventData (Display : System.Address; Cookie : in out XGenericEventCookie); pragma Import (C, XFreeEventData, "XGetEventData"); package CastDeviceEvent is new System.Address_To_Access_Conversions (Object => XIDeviceEvent); subtype XIDeviceEvent_Access is CastDeviceEvent.Object_Pointer; end XEvent;
sungyeon/drake
Ada
2,757
adb
with System.Formatting; with System.Img_Char; with System.Long_Long_Integer_Types; with System.Val_Enum; with System.Value_Errors; package body System.Val_Char is use type Long_Long_Integer_Types.Word_Unsigned; subtype Word_Unsigned is Long_Long_Integer_Types.Word_Unsigned; -- implementation function Value_Character (Str : String) return Character is First : Positive; Last : Natural; begin Val_Enum.Trim (Str, First, Last); if First + 2 = Last and then Str (First) = ''' and then Str (Last) = ''' then return Str (First + 1); else declare S : String := Str (First .. Last); L : constant Natural := First + (HEX_Prefix'Length - 1); begin Val_Enum.To_Upper (S); if L <= Last and then S (First .. L) = HEX_Prefix then declare Used_Last : Natural; Result : Word_Unsigned; Error : Boolean; begin Formatting.Value ( S (First + HEX_Prefix'Length .. Last), Used_Last, Result, Base => 16, Error => Error); if not Error and then Used_Last = Last and then Result <= Character'Pos (Character'Last) then return Character'Val (Result); end if; end; else declare Result : Character; Error : Boolean; begin Get_Named (S, Result, Error); if not Error then return Result; end if; end; end if; end; end if; Value_Errors.Raise_Discrete_Value_Failure ("Character", Str); declare Uninitialized : Character; pragma Unmodified (Uninitialized); begin return Uninitialized; end; end Value_Character; procedure Get_Named ( S : String; Value : out Character; Error : out Boolean) is begin for I in Img_Char.Image_00_1F'Range loop declare E : Img_Char.String_3 renames Img_Char.Image_00_1F (I); begin if S = E (1 .. Img_Char.Length (E)) then Value := I; Error := False; return; -- found end if; end; end loop; if S = Img_Char.Image_7F then Value := Character'Val (16#7f#); Error := False; else Error := True; end if; end Get_Named; end System.Val_Char;
io7m/coreland-cgbc-doc
Ada
188
ads
with CGBC.Bounded_Generic_Strings; package CGBC.Bounded_Wide_Wide_Strings is new Bounded_Generic_Strings (Character_Type => Wide_Wide_Character, String_Type => Wide_Wide_String);
reznikmm/matreshka
Ada
3,739
ads
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Open Document Toolkit -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2014, Vadim Godunko <[email protected]> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ with XML.DOM.Attributes; package ODF.DOM.Table_Filter_Options_Attributes is pragma Preelaborate; type ODF_Table_Filter_Options_Attribute is limited interface and XML.DOM.Attributes.DOM_Attribute; type ODF_Table_Filter_Options_Attribute_Access is access all ODF_Table_Filter_Options_Attribute'Class with Storage_Size => 0; end ODF.DOM.Table_Filter_Options_Attributes;
tum-ei-rcs/StratoX
Ada
2,799
adb
------------------------------------------------------------------------------ -- -- -- Copyright (C) 2015, AdaCore -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions are -- -- met: -- -- 1. Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- 2. Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in -- -- the documentation and/or other materials provided with the -- -- distribution. -- -- 3. Neither the name of STMicroelectronics nor the names of its -- -- contributors may be used to endorse or promote products derived -- -- from this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -- -- LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -- -- DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -- -- THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -- -- (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -- -- OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ with System.Machine_Code; use System.Machine_Code; package body Memory_Barriers is ---------------------------------- -- Data_Synchronization_Barrier -- ---------------------------------- procedure Data_Synchronization_Barrier is pragma Suppress (All_Checks); begin Asm ("DSB #0xF", Volatile => True); -- 15 is 'Sy", ie "full system" end Data_Synchronization_Barrier; end Memory_Barriers;
Fabien-Chouteau/Ada_Drivers_Library
Ada
4,858
ads
------------------------------------------------------------------------------ -- -- -- Copyright (C) 2016, AdaCore -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions are -- -- met: -- -- 1. Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- 2. Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in -- -- the documentation and/or other materials provided with the -- -- distribution. -- -- 3. Neither the name of the copyright holder nor the names of its -- -- contributors may be used to endorse or promote products derived -- -- from this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -- -- LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -- -- DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -- -- THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -- -- (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -- -- OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- A demonstration of a higher-level USART interface using streams. In -- particular, the serial port is presented as a stream type, so these ports -- can be used with stream attributes to send values or arbitrary types, not -- just characters or Strings. -- Polling is used within the procedures to determine when characters are sent -- and received. with Ada.Streams; with Ada.Real_Time; use Ada.Real_Time; package Serial_IO.Streaming is pragma Elaborate_Body; type Serial_Port (Device : not null access Peripheral_Descriptor) is new Ada.Streams.Root_Stream_Type with private; procedure Initialize (This : out Serial_Port) with Post => Initialized (This); function Initialized (This : Serial_Port) return Boolean with Inline; procedure Configure (This : in out Serial_Port; Baud_Rate : Baud_Rates; Parity : Parities := No_Parity; Data_Bits : Word_Lengths := Word_Length_8; End_Bits : Stop_Bits := Stopbits_1; Control : Flow_Control := No_Flow_Control) with Pre => Initialized (This); procedure Set_Read_Timeout (This : in out Serial_Port; Wait : Time_Span := Time_Span_Last); -- Stream attributes that call Read (below) can either wait indefinitely or -- can be set to return any current values received after a given interval. -- If the default value of Time_Span_Last is taken on a call, the effect is -- essentially to wait forever, i.e., blocking. That is also the effect if -- this routine is never called. overriding procedure Read (This : in out Serial_Port; Buffer : out Ada.Streams.Stream_Element_Array; Last : out Ada.Streams.Stream_Element_Offset); overriding procedure Write (This : in out Serial_Port; Buffer : Ada.Streams.Stream_Element_Array); private type Serial_Port (Device : access Peripheral_Descriptor) is new Ada.Streams.Root_Stream_Type with record Initialized : Boolean := False; Timeout : Time_Span := Time_Span_Last; end record; procedure Await_Send_Ready (This : USART) with Inline; procedure Await_Data_Available (This : USART; Timeout : Time_Span := Time_Span_Last; Timed_Out : out Boolean) with Inline; use Ada.Streams; function Last_Index (First : Stream_Element_Offset; Count : Long_Integer) return Stream_Element_Offset with Inline; end Serial_IO.Streaming;
iyan22/AprendeAda
Ada
790
adb
with vectores; use vectores; procedure rotar_derecha (V: in out Vector_de_enteros) is -- pre: El array está lleno de información relevante -- post: se desplazaran todos los elementos hacia la derecha y el ultimo elemento -- pasara a ser el primero I, Aux: Integer; begin I:=V'Last; -- Guardamos la última posición en I Aux:= V(V'Last); -- El último valor que moveremos al principio del vector while I/=V'First loop V(I):=V(I-1); -- A la posición I, le asignamos el valor del anterior I:=I-1; -- A I le vamos restando de 1 en 1 para que vaya recorriendo el vector end loop; V(V'First):=Aux; -- Para finalizar al primer valor del vector le asignamos el Aux que hemos guardado, -- que era el último valor del vector del principio end rotar_derecha;
charlie5/aIDE
Ada
2,944
adb
with AdaM.Factory; package body AdaM.a_Type.floating_point_type is -- Storage Pool -- record_Version : constant := 1; pool_Size : constant := 5_000; package Pool is new AdaM.Factory.Pools (storage_Folder => ".adam-store", pool_Name => "floating_point_types", max_Items => pool_Size, record_Version => record_Version, Item => floating_point_type.item, View => floating_point_type.view); -- Forge -- procedure define (Self : in out Item; Name : in String) is begin Self.Name := +Name; end define; overriding procedure destruct (Self : in out Item) is begin null; end destruct; function new_Type (Name : in String := "") return floating_point_type.View is new_View : constant floating_point_type.view := Pool.new_Item; begin define (floating_point_type.item (new_View.all), Name); return new_View; end new_Type; procedure free (Self : in out floating_point_type.view) is begin destruct (a_Type.item (Self.all)); Pool.free (Self); end free; -- Attributes -- overriding function Id (Self : access Item) return AdaM.Id is begin return Pool.to_Id (Self); end Id; overriding function to_Source (Self : in Item) return text_Vectors.Vector is pragma Unreferenced (Self); the_Source : text_Vectors.Vector; begin raise Program_Error with "TODO"; return the_Source; end to_Source; function my_Digits (Self : in Item) return Positive is begin return Self.my_Digits; end my_Digits; procedure Digits_are (Self : in out Item; Now : in Positive) is begin Self.my_Digits := Now; end Digits_are; function First (Self : in Item) return long_long_Float is begin return Self.First; end First; procedure First_is (Self : in out Item; Now : in long_long_Float) is begin Self.First := Now; end First_is; function Last (Self : in Item) return long_long_Float is begin return Self.Last; end Last; procedure Last_is (Self : in out Item; Now : in long_long_Float) is begin Self.Last := Now; end Last_is; -- Streams -- procedure View_write (Stream : not null access Ada.Streams.Root_Stream_Type'Class; Self : in View) renames Pool.View_write; procedure View_read (Stream : not null access Ada.Streams.Root_Stream_Type'Class; Self : out View) renames Pool.View_read; end AdaM.a_Type.floating_point_type;
optikos/oasis
Ada
456
ads
-- Copyright (c) 2019 Maxim Reznik <[email protected]> -- -- SPDX-License-Identifier: MIT -- License-Filename: LICENSE ------------------------------------------------------------- package Program.Elements.Statements is pragma Pure (Program.Elements.Statements); type Statement is limited interface and Program.Elements.Element; type Statement_Access is access all Statement'Class with Storage_Size => 0; end Program.Elements.Statements;
reznikmm/matreshka
Ada
5,508
ads
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Orthogonal Persistence Manager -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2015, Vadim Godunko <[email protected]> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ -- Engine is entry point of persistance manager. It manages stores that -- manages instances of object classes. ------------------------------------------------------------------------------ private with Ada.Containers.Hashed_Maps; with Ada.Tags; with League.Strings; with SQL.Databases; with SQL.Options; with OPM.Factories; with OPM.Stores; package OPM.Engines is type Engine is tagged limited private; procedure Register_Store (Self : in out Engine; Tag : Ada.Tags.Tag; Store : not null OPM.Stores.Store_Access); function Get_Store (Self : Engine; Tag : Ada.Tags.Tag) return OPM.Stores.Store_Access; procedure Register_Factory (Self : in out Engine; Tag : Ada.Tags.Tag; Factory : not null OPM.Factories.Factory_Access); function Get_Factory (Self : Engine; Tag : Ada.Tags.Tag) return OPM.Factories.Factory_Access; function Get_Database (Self : Engine) return not null access SQL.Databases.SQL_Database; -- Returns access to database connection object. procedure Initialize (Self : in out Engine; Driver : League.Strings.Universal_String; Options : SQL.Options.SQL_Options); -- Initialize engine. generic type Object (<>) is tagged limited private; type Store is new OPM.Stores.Abstract_Store with private; function Generic_Get_Store (Self : Engine'Class) return not null access Store'Class; private function Hash (Item : Ada.Tags.Tag) return Ada.Containers.Hash_Type; package Tag_Store_Maps is new Ada.Containers.Hashed_Maps (Ada.Tags.Tag, OPM.Stores.Store_Access, Hash, Ada.Tags."=", OPM.Stores."="); package Tag_Factory_Maps is new Ada.Containers.Hashed_Maps (Ada.Tags.Tag, OPM.Factories.Factory_Access, Hash, Ada.Tags."=", OPM.Factories."="); type Database_Access is access all SQL.Databases.SQL_Database; type Engine is tagged limited record Stores : Tag_Store_Maps.Map; Factories : Tag_Factory_Maps.Map; Database : Database_Access; end record; end OPM.Engines;
Vovanium/stm32-ada
Ada
47
ads
package STM32.F4 is pragma Pure; end STM32.F4;
jrmarino/AdaBase
Ada
3,040
ads
-- This file is covered by the Internet Software Consortium (ISC) License -- Reference: ../../License.txt with Ada.Strings.UTF_Encoding; with Ada.Strings.Unbounded; package CommonText is package SU renames Ada.Strings.Unbounded; subtype Text is SU.Unbounded_String; subtype UTF8 is Ada.Strings.UTF_Encoding.UTF_8_String; blank : constant Text := SU.Null_Unbounded_String; -- converters : Text <==> String function USS (US : Text) return String; function SUS (S : String) return Text; -- converters : UTF8 <==> String function UTF8S (S8 : UTF8) return String; function SUTF8 (S : String) return UTF8; -- True if the string is zero length function IsBlank (US : Text) return Boolean; function IsBlank (S : String) return Boolean; -- True if strings are identical function equivalent (A, B : Text) return Boolean; function equivalent (A : Text; B : String) return Boolean; -- Trim both sides function trim (US : Text) return Text; function trim (S : String) return String; -- unpadded numeric image function int2str (A : Integer) return String; function int2text (A : Integer) return Text; -- convert boolean to lowercase string function bool2str (A : Boolean) return String; function bool2text (A : Boolean) return Text; -- shorthand for index function pinpoint (S : String; fragment : String) return Natural; function contains (S : String; fragment : String) return Boolean; function contains (US : Text; fragment : String) return Boolean; -- Return half of a string split by separator function part_1 (S : String; separator : String := "/") return String; function part_2 (S : String; separator : String := "/") return String; -- Replace a single character with another single character (first found) function replace (S : String; reject, shiny : Character) return String; -- Numeric image with left-padded zeros function zeropad (N : Natural; places : Positive) return String; -- Returns length of string function len (US : Text) return Natural; function len (S : String) return Natural; -- Returns number of instances of a given character in a given string function count_char (S : String; focus : Character) return Natural; -- Provides a mask of the given sql string, all quoted text set to '#' -- including the quote marks themselves. function redact_quotes (sql : String) return String; -- Removes leading and trailing whitespace, and any trailing semicolon function trim_sql (sql : String) return String; -- After masking, return number of queries separated by semicolons function count_queries (trimmed_sql : String) return Natural; -- Returns a single query given a multiquery and an index starting from 1 function subquery (trimmed_sql : String; index : Positive) return String; -- With "set" imput of comma-separated values, return number of items function num_set_items (nv : String) return Natural; end CommonText;
reznikmm/increment
Ada
3,865
ads
-- Copyright (c) 2015-2017 Maxim Reznik <[email protected]> -- -- SPDX-License-Identifier: MIT -- License-Filename: LICENSE ------------------------------------------------------------- with League.Strings; with Incr.Lexers.Batch_Lexers; package Incr.Nodes.Tokens is -- @summary -- Token nodes of parse tree -- -- @description -- This package provides Token type. -- Tokens have no children, but usually contain some text of the document. -- Tokens provide support for incremental lexer by keeping related data -- such as -- * state - scanner's state at the end of the token -- * lookahead - number of characters after were seen by scanner after it -- * lookback - number of preceding tokens with lookahead over this one type Token is new Node with private; -- Token nodesof parse tree type Token_Access is access all Token'Class; overriding function Kind (Self : Token) return Node_Kind; -- Return type of the token. Kind is not expected to change not overriding function Text (Self : Token; Time : Version_Trees.Version) return League.Strings.Universal_String; -- Return text of the token not overriding procedure Set_Text (Self : in out Token; Value : League.Strings.Universal_String); -- Assign text to the token not overriding function Next_Token (Self : aliased Token; Time : Version_Trees.Version) return Token_Access; -- Find next token in the parse tree not overriding function Previous_Token (Self : aliased Token; Time : Version_Trees.Version) return Token_Access; -- Find previous token in the parse tree not overriding function Lookback (Self : Token; Time : Version_Trees.Version) return Natural; -- Get number of preceding tokens with lookahead extented over this one subtype Scanner_State is Lexers.Batch_Lexers.State; not overriding function State (Self : access Token; Time : Version_Trees.Version) return Scanner_State; package Constructors is procedure Initialize (Self : out Token'Class; Kind : Node_Kind; Value : League.Strings.Universal_String; State : Scanner_State; Lookahead : Natural); procedure Initialize_Ancient (Self : aliased in out Token'Class; Parent : Node_Access; Back : Natural); -- Initialize Self as token existent in initial version of the document. end Constructors; private package Versioned_Strings is new Version_Trees.Versioned_Values (League.Strings.Universal_String); package Versioned_Naturals is new Version_Trees.Versioned_Values (Natural); type Token is new Node_With_Parent with record Kind : Node_Kind; Text : Versioned_Strings.Container; Back : Versioned_Naturals.Container; Ahead : Versioned_Naturals.Container; States : Versioned_Naturals.Container; end record; overriding function Is_Token (Self : Token) return Boolean; overriding function Arity (Self : Token) return Natural; overriding function Child (Self : Token; Index : Positive; Time : Version_Trees.Version) return Node_Access; overriding procedure Set_Child (Self : aliased in out Token; Index : Positive; Value : Node_Access) is null; overriding function Nested_Changes (Self : Token; From : Version_Trees.Version; To : Version_Trees.Version) return Boolean; overriding function Nested_Errors (Self : Token; Unused : Version_Trees.Version) return Boolean is (False); overriding function Span (Self : aliased in out Token; Kind : Span_Kinds; Time : Version_Trees.Version) return Natural; overriding procedure Discard (Self : in out Token); end Incr.Nodes.Tokens;
jwarwick/aoc_2020
Ada
372
adb
-- AOC 2020, Day 11 with Ada.Text_IO; use Ada.Text_IO; with Day; use Day; procedure main is m : constant Ferry := load_file("input.txt"); part1 : constant Natural := steady_state_occupied(m); part2 : constant Natural := tolerant_steady_state_occupied(m); begin put_line("Part 1: " & Natural'Image(part1)); put_line("Part 2: " & Natural'Image(part2)); end main;
reznikmm/matreshka
Ada
3,466
ads
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- XML Processor -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2014, Vadim Godunko <[email protected]> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ with XML.SAX.Input_Sources.Streams.Files; package XML.SAX.File_Input_Sources renames XML.SAX.Input_Sources.Streams.Files;
MinimSecure/unum-sdk
Ada
909
ads
-- Copyright 2010-2019 Free Software Foundation, Inc. -- -- This program is free software; you can redistribute it and/or modify -- it under the terms of the GNU General Public License as published by -- the Free Software Foundation; either version 3 of the License, or -- (at your option) any later version. -- -- This program is distributed in the hope that it will be useful, -- but WITHOUT ANY WARRANTY; without even the implied warranty of -- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -- GNU General Public License for more details. -- -- You should have received a copy of the GNU General Public License -- along with this program. If not, see <http://www.gnu.org/licenses/>. with System; package Pck is type Rec is record X: Integer; S: String (1..8); end record; function Bar return Rec; procedure Do_Nothing (A : System.Address); end Pck;
stcarrez/dynamo
Ada
4,792
adb
----------------------------------------------------------------------- -- gen-model-queries -- XML Mapped Database queries representation -- Copyright (C) 2009, 2010, 2011, 2012, 2013, 2015, 2018, 2021 Stephane Carrez -- Written by Stephane Carrez ([email protected]) -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License. -- You may obtain a copy of the License at -- -- http://www.apache.org/licenses/LICENSE-2.0 -- -- Unless required by applicable law or agreed to in writing, software -- distributed under the License is distributed on an "AS IS" BASIS, -- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -- See the License for the specific language governing permissions and -- limitations under the License. ----------------------------------------------------------------------- package body Gen.Model.Queries is -- ------------------------------ -- Get the value identified by the name. -- If the name cannot be found, the method should return the Null object. -- ------------------------------ overriding function Get_Value (From : in Sort_Definition; Name : in String) return UBO.Object is begin if Name = "name" then return UBO.To_Object (From.Name); elsif Name = "sql" then return UBO.To_Object (From.Sql); else return Definition (From).Get_Value (Name); end if; end Get_Value; -- ------------------------------ -- Get the value identified by the name. -- If the name cannot be found, the method should return the Null object. -- ------------------------------ overriding function Get_Value (From : Query_Definition; Name : String) return UBO.Object is begin if Name = "sorts" then return From.Sorts_Bean; elsif Name = "isBean" then return UBO.To_Object (True); else return Tables.Table_Definition (From).Get_Value (Name); end if; end Get_Value; -- ------------------------------ -- Prepare the generation of the model. -- ------------------------------ overriding procedure Prepare (O : in out Query_Definition) is begin Tables.Table_Definition (O).Prepare; end Prepare; -- ------------------------------ -- Add a new sort mode for the query definition. -- ------------------------------ procedure Add_Sort (Into : in out Query_Definition; Name : in UString; Sql : in UString) is Item : constant Sort_Definition_Access := new Sort_Definition; begin Item.Set_Name (Name); Item.Sql := Sql; Into.Sorts.Append (Item); end Add_Sort; -- ------------------------------ -- Initialize the table definition instance. -- ------------------------------ overriding procedure Initialize (O : in out Query_Definition) is begin O.Sorts_Bean := UBO.To_Object (O.Sorts'Unchecked_Access, UBO.STATIC); Tables.Table_Definition (O).Initialize; end Initialize; -- Get the value identified by the name. -- If the name cannot be found, the method should return the Null object. overriding function Get_Value (From : in Query_File_Definition; Name : in String) return UBO.Object is begin if Name = "queries" then return From.Queries_Bean; elsif Name = "path" then return UBO.To_Object (From.File_Name); elsif Name = "sha1" then return UBO.To_Object (From.Sha1); else return Query_Definition (From).Get_Value (Name); end if; end Get_Value; -- Prepare the generation of the model. overriding procedure Prepare (O : in out Query_File_Definition) is begin Tables.Table_Definition (O).Prepare; end Prepare; -- ------------------------------ -- Add a new query to the definition. -- ------------------------------ procedure Add_Query (Into : in out Query_File_Definition; Name : in UString; Query : out Query_Definition_Access) is begin Query := new Query_Definition; Query.Set_Name (Name); Into.Queries.Append (Query.all'Access); -- Query.Number := Into.Queries.Get_Count; end Add_Query; -- ------------------------------ -- Initialize the table definition instance. -- ------------------------------ overriding procedure Initialize (O : in out Query_File_Definition) is begin O.Queries_Bean := UBO.To_Object (O.Queries'Unchecked_Access, UBO.STATIC); Tables.Table_Definition (O).Initialize; end Initialize; end Gen.Model.Queries;
persan/A-gst
Ada
19,155
ads
pragma Ada_2005; pragma Style_Checks (Off); pragma Warnings (Off); with Interfaces.C; use Interfaces.C; with Interfaces.C.Strings; with System; -- with GStreamer.GST_Low_Level.time_h; package GStreamer.GST_Low_Level.gstreamer_0_10_gst_check_internal_check_h is -- unsupported macro: CK_CPPSTART extern "C" { -- unsupported macro: CK_CPPEND } -- arg-macro: function GCC_VERSION_AT_LEAST (major, minor) -- return (__GNUC__ > (major)) or else (__GNUC__ = (major) and then __GNUC_MINOR__ >= (minor)); -- unsupported macro: CK_ATTRIBUTE_UNUSED __attribute__ ((unused)) CHECK_MAJOR_VERSION_C : constant := (0); -- gst/check/internal-check.h:91 CHECK_MINOR_VERSION_C : constant := (9); -- gst/check/internal-check.h:92 CHECK_MICRO_VERSION_C : constant := (8); -- gst/check/internal-check.h:93 -- arg-macro: procedure tcase_add_test (tc, tf) -- tcase_add_test_raise_signal(tc,tf,0) -- unsupported macro: tcase_add_test_raise_signal(tc,tf,signal) _tcase_add_test((tc),(tf),"" #tf "",(signal), 0, 0, 1) -- unsupported macro: tcase_add_exit_test(tc,tf,expected_exit_value) _tcase_add_test((tc),(tf),"" #tf "",0,(expected_exit_value),0,1) -- unsupported macro: tcase_add_loop_test(tc,tf,s,e) _tcase_add_test((tc),(tf),"" #tf "",0,0,(s),(e)) -- unsupported macro: tcase_add_loop_test_raise_signal(tc,tf,signal,s,e) _tcase_add_test((tc),(tf),"" #tf "",(signal),0,(s),(e)) -- unsupported macro: tcase_add_loop_exit_test(tc,tf,expected_exit_value,s,e) _tcase_add_test((tc),(tf),"" #tf "",0,(expected_exit_value),(s),(e)) -- unsupported macro: START_TEST(__testname) static void __testname (int _i CK_ATTRIBUTE_UNUSED){ tcase_fn_start (""#__testname, __FILE__, __LINE__); -- unsupported macro: END_TEST } -- unsupported macro: fail_unless(expr,...) _fail_unless(expr, __FILE__, __LINE__, "Assertion '"#expr"' failed" , ## __VA_ARGS__, NULL) -- unsupported macro: fail_if(expr,...) _fail_unless(!(expr), __FILE__, __LINE__, "Failure '"#expr"' occured" , ## __VA_ARGS__, NULL) -- unsupported macro: fail(...) _fail_unless(0, __FILE__, __LINE__, "Failed" , ## __VA_ARGS__, NULL) -- arg-macro: procedure ck_abort () -- ck_abort_msg(NULL) -- unsupported macro: ck_abort_msg fail -- arg-macro: procedure ck_assert (C) -- ck_assert_msg(C, NULL) -- unsupported macro: ck_assert_msg fail_unless -- arg-macro: procedure ck_assert_int_eq (X, Y) -- _ck_assert_int(X, =, Y) -- arg-macro: procedure ck_assert_int_ne (X, Y) -- _ck_assert_int(X, /=, Y) -- arg-macro: procedure ck_assert_str_eq (X, Y) -- _ck_assert_str(notstrcmp(X, Y), X, =, Y) -- arg-macro: procedure ck_assert_str_ne (X, Y) -- _ck_assert_str(strcmp(X, Y), X, /=, Y) -- arg-macro: procedure mark_point () -- _mark_point(__FILE__,__LINE__) ---*- mode:C; -*- -- * Check: a unit test framework for C -- * Copyright (C) 2001, 2002, Arien Malec -- * -- * This library is free software; you can redistribute it and/or -- * modify it under the terms of the GNU Lesser General Public -- * License as published by the Free Software Foundation; either -- * version 2.1 of the License, or (at your option) any later version. -- * -- * This library is distributed in the hope that it will be useful, -- * but WITHOUT ANY WARRANTY; without even the implied warranty of -- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -- * Lesser General Public License for more details. -- * -- * You should have received a copy of the GNU Lesser General Public -- * License along with this library; if not, write to the -- * Free Software Foundation, Inc., 59 Temple Place - Suite 330, -- * Boston, MA 02111-1307, USA. -- -- Check: a unit test framework for C -- Check is a unit test framework for C. It features a simple -- interface for defining unit tests, putting little in the way of the -- developer. Tests are run in a separate address space, so Check can -- catch both assertion failures and code errors that cause -- segmentation faults or other signals. The output from unit tests -- can be used within source code editors and IDEs. -- Unit tests are created with the START_TEST/END_TEST macro -- pair. The fail_unless and fail macros are used for creating -- checks within unit tests; the mark_point macro is useful for -- trapping the location of signals and/or early exits. -- Test cases are created with tcase_create, unit tests are added -- with tcase_add_test -- Suites are created with suite_create; test cases are added -- with suite_add_tcase -- Suites are run through an SRunner, which is created with -- srunner_create. Additional suites can be added to an SRunner with -- srunner_add_suite. An SRunner is freed with srunner_free, which also -- frees all suites added to the runner. -- Use srunner_run_all to run a suite and print results. -- Macros and functions starting with _ (underscore) are internal and -- may change without notice. You have been warned!. -- -- Used to create the linker script for hiding lib-local symbols. Shall -- be put directly in front of the exported symbol. -- check version numbers check_major_version : aliased int; -- gst/check/internal-check.h:95 pragma Import (C, check_major_version, "check_major_version"); check_minor_version : aliased int; -- gst/check/internal-check.h:96 pragma Import (C, check_minor_version, "check_minor_version"); check_micro_version : aliased int; -- gst/check/internal-check.h:97 pragma Import (C, check_micro_version, "check_micro_version"); -- opaque type for a test case -- A TCase represents a test case. Create with tcase_create, free -- with tcase_free. For the moment, test cases can only be run -- through a suite -- -- skipped empty struct TCase -- type for a test function type TFun is access procedure (arg1 : int); pragma Convention (C, TFun); -- gst/check/internal-check.h:112 -- type for a setup/teardown function type SFun is access procedure ; pragma Convention (C, SFun); -- gst/check/internal-check.h:115 -- Opaque type for a test suite -- skipped empty struct Suite -- Creates a test suite with the given name function suite_create (name : Interfaces.C.Strings.chars_ptr) return System.Address; -- gst/check/internal-check.h:121 pragma Import (C, suite_create, "suite_create"); -- Add a test case to a suite procedure suite_add_tcase (s : System.Address; tc : System.Address); -- gst/check/internal-check.h:124 pragma Import (C, suite_add_tcase, "suite_add_tcase"); -- Create a test case function tcase_create (name : Interfaces.C.Strings.chars_ptr) return System.Address; -- gst/check/internal-check.h:127 pragma Import (C, tcase_create, "tcase_create"); -- Add a test function to a test case (macro version) -- Add a test function with signal handling to a test case (macro version) -- Add a test function with an expected exit value to a test case (macro version) -- Add a looping test function to a test case (macro version) -- The test will be called in a for(i = s; i < e; i++) loop with each -- iteration being executed in a new context. The loop variable 'i' is -- available in the test. -- -- Signal version of loop test. -- FIXME: add a test case; this is untested as part of Check's tests. -- -- allowed exit value version of loop test. -- Add a test function to a test case -- (function version -- use this when the macro won't work -- -- skipped func _tcase_add_test -- Add unchecked fixture setup/teardown functions to a test case -- If unchecked fixture functions are run at the start and end of the -- test case, and not before and after unit tests. Note that unchecked -- setup/teardown functions are not run in a separate address space, -- like test functions, and so must not exit or signal (e.g., -- segfault) -- Also, when run in CK_NOFORK mode, unchecked fixture functions may -- lead to different unit test behavior IF unit tests change data -- setup by the fixture functions. -- procedure tcase_add_unchecked_fixture (tc : System.Address; setup : SFun; teardown : SFun); -- gst/check/internal-check.h:176 pragma Import (C, tcase_add_unchecked_fixture, "tcase_add_unchecked_fixture"); -- Add fixture setup/teardown functions to a test case -- Checked fixture functions are run before and after unit -- tests. Unlike unchecked fixture functions, checked fixture -- functions are run in the same separate address space as the test -- program, and thus the test function will survive signals or -- unexpected exits in the fixture function. Also, IF the setup -- function is idempotent, unit test behavior will be the same in -- CK_FORK and CK_NOFORK modes. -- However, since fixture functions are run before and after each unit -- test, they should not be expensive code. -- procedure tcase_add_checked_fixture (tc : System.Address; setup : SFun; teardown : SFun); -- gst/check/internal-check.h:192 pragma Import (C, tcase_add_checked_fixture, "tcase_add_checked_fixture"); -- Set the timeout for all tests in a test case. A test that lasts longer -- than the timeout (in seconds) will be killed and thus fail with an error. -- The timeout can also be set globaly with the environment variable -- CK_DEFAULT_TIMEOUT, the specific setting always takes precedence. -- procedure tcase_set_timeout (tc : System.Address; timeout : int); -- gst/check/internal-check.h:199 pragma Import (C, tcase_set_timeout, "tcase_set_timeout"); -- Internal function to mark the start of a test function procedure tcase_fn_start (fname : Interfaces.C.Strings.chars_ptr; file : Interfaces.C.Strings.chars_ptr; line : int); -- gst/check/internal-check.h:202 pragma Import (C, tcase_fn_start, "tcase_fn_start"); -- Start a unit test with START_TEST(unit_name), end with END_TEST -- One must use braces within a START_/END_ pair to declare new variables -- -- End a unit test -- Fail the test case unless expr is true -- The space before the comma sign before ## is essential to be compatible -- with gcc 2.95.3 and earlier. -- -- Fail the test case if expr is true -- The space before the comma sign before ## is essential to be compatible -- with gcc 2.95.3 and earlier. -- -- FIXME: these macros may conflict with C89 if expr is -- FIXME: strcmp (str1, str2) due to excessive string length. -- Always fail -- Non macro version of #fail_unless, with more complicated interface -- skipped func _fail_unless -- New check fail API. -- Integer comparsion macros with improved output compared to fail_unless(). -- O may be any comparion operator. -- String comparsion macros with improved output compared to fail_unless() -- Mark the last point reached in a unit test -- (useful for tracking down where a segfault, etc. occurs) -- -- Non macro version of #mark_point -- skipped func _mark_point -- Result of a test type test_result is (CK_TEST_RESULT_INVALID, CK_PASS, CK_FAILURE, CK_ERROR); pragma Convention (C, test_result); -- gst/check/internal-check.h:268 -- Default value; should not encounter this -- Test passed -- Test completed but failed -- Test failed to complete -- (unexpected signal or non-zero early exit) -- Specifies the how much output an SRunner should produce type print_output is (CK_SILENT, CK_MINIMAL, CK_NORMAL, CK_VERBOSE, CK_ENV, CK_LAST); pragma Convention (C, print_output); -- gst/check/internal-check.h:277 -- No output -- Only summary output -- All failed tests -- All tests -- Look at environment var -- Run as a subunit child process -- Holds state for a running of a test suite -- skipped empty struct SRunner -- Opaque type for a test failure -- skipped empty struct TestResult -- accessors for tr fields type ck_result_ctx is (CK_CTX_INVALID, CK_CTX_SETUP, CK_CTX_TEST, CK_CTX_TEARDOWN); pragma Convention (C, ck_result_ctx); -- gst/check/internal-check.h:296 -- Default value; should not encounter this -- Type of result function tr_rtype (tr : System.Address) return int; -- gst/check/internal-check.h:304 pragma Import (C, tr_rtype, "tr_rtype"); -- Context in which the result occurred function tr_ctx (tr : System.Address) return ck_result_ctx; -- gst/check/internal-check.h:306 pragma Import (C, tr_ctx, "tr_ctx"); -- Failure message function tr_msg (tr : System.Address) return Interfaces.C.Strings.chars_ptr; -- gst/check/internal-check.h:308 pragma Import (C, tr_msg, "tr_msg"); -- Line number at which failure occured function tr_lno (tr : System.Address) return int; -- gst/check/internal-check.h:310 pragma Import (C, tr_lno, "tr_lno"); -- File name at which failure occured function tr_lfile (tr : System.Address) return Interfaces.C.Strings.chars_ptr; -- gst/check/internal-check.h:312 pragma Import (C, tr_lfile, "tr_lfile"); -- Test case in which unit test was run function tr_tcname (tr : System.Address) return Interfaces.C.Strings.chars_ptr; -- gst/check/internal-check.h:314 pragma Import (C, tr_tcname, "tr_tcname"); -- Creates an SRunner for the given suite function srunner_create (s : System.Address) return System.Address; -- gst/check/internal-check.h:317 pragma Import (C, srunner_create, "srunner_create"); -- Adds a Suite to an SRunner procedure srunner_add_suite (sr : System.Address; s : System.Address); -- gst/check/internal-check.h:320 pragma Import (C, srunner_add_suite, "srunner_add_suite"); -- Frees an SRunner, all suites added to it and all contained test cases procedure srunner_free (sr : System.Address); -- gst/check/internal-check.h:323 pragma Import (C, srunner_free, "srunner_free"); -- Test running -- Runs an SRunner, printing results as specified (see enum print_output) procedure srunner_run_all (sr : System.Address; print_mode : print_output); -- gst/check/internal-check.h:329 pragma Import (C, srunner_run_all, "srunner_run_all"); -- Next functions are valid only after the suite has been -- completely run, of course -- Number of failed tests in a run suite. Includes failures + errors function srunner_ntests_failed (sr : System.Address) return int; -- gst/check/internal-check.h:336 pragma Import (C, srunner_ntests_failed, "srunner_ntests_failed"); -- Total number of tests run in a run suite function srunner_ntests_run (sr : System.Address) return int; -- gst/check/internal-check.h:339 pragma Import (C, srunner_ntests_run, "srunner_ntests_run"); -- Return an array of results for all failures -- -- Number of failures is equal to srunner_nfailed_tests. Memory for -- the array is malloc'ed and must be freed, but individual TestResults -- must not -- function srunner_failures (sr : System.Address) return System.Address; -- gst/check/internal-check.h:347 pragma Import (C, srunner_failures, "srunner_failures"); -- Return an array of results for all run tests -- Number of results is equal to srunner_ntests_run, and excludes -- failures due to setup function failure. -- Memory is malloc'ed and must be freed, but individual TestResults -- must not -- function srunner_results (sr : System.Address) return System.Address; -- gst/check/internal-check.h:357 pragma Import (C, srunner_results, "srunner_results"); -- Printing -- Print the results contained in an SRunner procedure srunner_print (sr : System.Address; print_mode : print_output); -- gst/check/internal-check.h:363 pragma Import (C, srunner_print, "srunner_print"); -- Set a log file to which to write during test running. -- Log file setting is an initialize only operation -- it should be -- done immediatly after SRunner creation, and the log file can't be -- changed after being set. -- procedure srunner_set_log (sr : System.Address; fname : Interfaces.C.Strings.chars_ptr); -- gst/check/internal-check.h:372 pragma Import (C, srunner_set_log, "srunner_set_log"); -- Does the SRunner have a log file? function srunner_has_log (sr : System.Address) return int; -- gst/check/internal-check.h:375 pragma Import (C, srunner_has_log, "srunner_has_log"); -- Return the name of the log file, or NULL if none function srunner_log_fname (sr : System.Address) return Interfaces.C.Strings.chars_ptr; -- gst/check/internal-check.h:378 pragma Import (C, srunner_log_fname, "srunner_log_fname"); -- Set a xml file to which to write during test running. -- XML file setting is an initialize only operation -- it should be -- done immediatly after SRunner creation, and the XML file can't be -- changed after being set. -- procedure srunner_set_xml (sr : System.Address; fname : Interfaces.C.Strings.chars_ptr); -- gst/check/internal-check.h:386 pragma Import (C, srunner_set_xml, "srunner_set_xml"); -- Does the SRunner have an XML log file? function srunner_has_xml (sr : System.Address) return int; -- gst/check/internal-check.h:389 pragma Import (C, srunner_has_xml, "srunner_has_xml"); -- Return the name of the XML file, or NULL if none function srunner_xml_fname (sr : System.Address) return Interfaces.C.Strings.chars_ptr; -- gst/check/internal-check.h:392 pragma Import (C, srunner_xml_fname, "srunner_xml_fname"); -- Control forking type fork_status is (CK_FORK_GETENV, CK_FORK, CK_NOFORK); pragma Convention (C, fork_status); -- gst/check/internal-check.h:396 -- look in the environment for CK_FORK -- call fork to run tests -- don't call fork -- Get the current fork status function srunner_fork_status (sr : System.Address) return fork_status; -- gst/check/internal-check.h:403 pragma Import (C, srunner_fork_status, "srunner_fork_status"); -- Set the current fork status procedure srunner_set_fork_status (sr : System.Address; fstat : fork_status); -- gst/check/internal-check.h:406 pragma Import (C, srunner_set_fork_status, "srunner_set_fork_status"); -- Fork in a test and make sure messaging and tests work. function check_fork return GStreamer.GST_Low_Level.time_h.pid_t; -- gst/check/internal-check.h:409 pragma Import (C, check_fork, "check_fork"); -- Wait for the pid and exit. If pid is zero, just exit. procedure check_waitpid_and_exit (pid : GStreamer.GST_Low_Level.time_h.pid_t); -- gst/check/internal-check.h:412 pragma Import (C, check_waitpid_and_exit, "check_waitpid_and_exit"); end GStreamer.GST_Low_Level.gstreamer_0_10_gst_check_internal_check_h;
reznikmm/gela
Ada
4,456
ads
------------------------------------------------------------------------------- ------------------------------------------------------------------------------- -- 4 package Asis.Errors ------------------------------------------------------------------------------- ------------------------------------------------------------------------------- package Asis.Errors is pragma Preelaborate; ------------------------------------------------------------------------------- ------------------------------------------------------------------------------- -- -- ASIS reports all operational errors by raising an exception. Whenever an -- ASIS implementation raises one of the exceptions declared in package -- Asis.Exceptions, it will previously have set the values returned by the -- Status and Diagnosis queries to indicate the cause of the error. The -- possible values for Status are indicated in the definition of Error_Kinds -- below, with suggestions for the associated contents of the Diagnosis -- string as a comment. -- -- The Diagnosis and Status queries are provided in the Asis.Implementation -- package to supply more information about the reasons for raising any -- exception. -- -- ASIS applications are encouraged to follow this same convention whenever -- they explicitly raise any ASIS exception--always record a Status and -- Diagnosis prior to raising the exception. ------------------------------------------------------------------------------- -- 4.1 type Error_Kinds ------------------------------------------------------------------------------- -- This enumeration type describes the various kinds of errors. -- type Error_Kinds is ( Not_An_Error, -- No error is presently recorded Value_Error, -- Routine argument value invalid Initialization_Error, -- ASIS is uninitialized Environment_Error, -- ASIS could not initialize Parameter_Error, -- Bad Parameter given to Initialize Capacity_Error, -- Implementation overloaded Name_Error, -- Context/unit not found Use_Error, -- Context/unit not use/open-able Data_Error, -- Context/unit bad/invalid/corrupt Text_Error, -- The program text cannot be located Storage_Error, -- Storage_Error suppressed Obsolete_Reference_Error, -- Argument or result is invalid due to -- and inconsistent compilation unit Unhandled_Exception_Error, -- Unexpected exception suppressed Not_Implemented_Error, -- Functionality not implemented Internal_Error); -- Implementation internal failure ------------------------------------------------------------------------------- end Asis.Errors; ------------------------------------------------------------------------------ -- Copyright (c) 2006, Maxim Reznik -- All rights reserved. -- -- Redistribution and use in source and binary forms, with or without -- modification, are permitted provided that the following conditions are met: -- -- * Redistributions of source code must retain the above copyright notice, -- * this list of conditions and the following disclaimer. -- * Redistributions in binary form must reproduce the above copyright -- * notice, this list of conditions and the following disclaimer in the -- * documentation and/or other materials provided with the distribution. -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -- AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -- IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -- ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE -- LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -- CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -- SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -- INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -- CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -- ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -- POSSIBILITY OF SUCH DAMAGE. ------------------------------------------------------------------------------
reznikmm/gela
Ada
3,794
adb
package body Gela.Name_List_Managers is ------------ -- Append -- ------------ procedure Append (Self : in out Name_List_Manager; Symbol : Gela.Lexical_Types.Symbol; Name : Gela.Elements.Defining_Names.Defining_Name_Access; Input : List; Output : out List) is Value : constant Pair := (Symbol, Name); begin Self.Pair_List.Prepend (Value => Value, Input => Input.Index, Output => Output.Index); end Append; ------------ -- Append -- ------------ procedure Append (Self : in out Name_List_Manager; Key : Gela.Elements.Defining_Names.Defining_Name_Access; Value : List; Input : Map; Output : out Map) is begin null; end Append; ------------- -- Element -- ------------- overriding function Element (Self : Defining_Name_Cursor) return Gela.Elements.Defining_Names.Defining_Name_Access is begin return Self.Set.Pair_List.Head (Self.Name).Name; end Element; ---------------- -- Empty_List -- ---------------- function Empty_List (Self : Name_List_Manager) return List is pragma Unreferenced (Self); begin return (Index => Pair_Peristent_Lists.Empty); end Empty_List; ---------- -- Find -- ---------- function Find (Self : access Name_List_Manager'Class; Input : List; Symbol : Gela.Lexical_Types.Symbol) return Defining_Name_Cursor is begin return Result : Defining_Name_Cursor := (Self, Input.Index) do Result.Internal_Next (Symbol); end return; end Find; procedure For_Each (Self : access Name_List_Manager; Input : List; Proc : access procedure (Symbol : Gela.Lexical_Types.Symbol; Name : Gela.Elements.Defining_Names.Defining_Name_Access)) is use type Pair_Peristent_Lists.List; Name : Pair_Peristent_Lists.List := Input.Index; begin while Name /= Pair_Peristent_Lists.Empty loop Proc (Self.Pair_List.Head (Name).Symbol, Self.Pair_List.Head (Name).Name); Name := Self.Pair_List.Tail (Name); end loop; end For_Each; --------------- -- Empty_Map -- --------------- function Empty_Map (Self : Name_List_Manager) return Map is pragma Unreferenced (Self); begin return (null record); end Empty_Map; ----------------- -- Has_Element -- ----------------- overriding function Has_Element (Self : Defining_Name_Cursor) return Boolean is use type Pair_Peristent_Lists.List; begin return Self.Name /= Pair_Peristent_Lists.Empty; end Has_Element; ------------------- -- Internal_Next -- ------------------- procedure Internal_Next (Self : in out Defining_Name_Cursor; Symbol : Gela.Lexical_Types.Symbol) is use type Gela.Lexical_Types.Symbol; use type Pair_Peristent_Lists.List; begin while Self.Name /= Pair_Peristent_Lists.Empty and then Self.Set.Pair_List.Head (Self.Name).Symbol /= Symbol loop Self.Name := Self.Set.Pair_List.Tail (Self.Name); end loop; end Internal_Next; ---------- -- Next -- ---------- overriding procedure Next (Self : in out Defining_Name_Cursor) is Symbol : constant Gela.Lexical_Types.Symbol := Self.Symbol; begin Self.Name := Self.Set.Pair_List.Tail (Self.Name); Self.Internal_Next (Symbol); end Next; ------------ -- Symbol -- ------------ function Symbol (Self : Defining_Name_Cursor) return Gela.Lexical_Types.Symbol is begin return Self.Set.Pair_List.Head (Self.Name).Symbol; end Symbol; end Gela.Name_List_Managers;
edin/raytracer
Ada
335
adb
package body Lights is function Create_Light(Position: Vector; Color: Color_Type) return Light_Type is ( ( Position => Position, Color => Color ) ); function Position_Of(Light: Light_Type) return Vector is ( Light.Position ); function Color_Of(Light: Light_Type) return Color_Type is ( Light.Color ); end Lights;
VitalijBondarenko/Formatted_Output_NG
Ada
2,250
ads
------------------------------------------------------------------------------ -- -- -- Copyright (c) 2016-2022 Vitalii Bondarenko <[email protected]> -- -- -- ------------------------------------------------------------------------------ -- -- -- The MIT License (MIT) -- -- -- -- Permission is hereby granted, free of charge, to any person obtaining a -- -- copy of this software and associated documentation files (the -- -- "Software"), to deal in the Software without restriction, including -- -- without limitation the rights to use, copy, modify, merge, publish, -- -- distribute, sublicense, and/or sell copies of the Software, and to -- -- permit persons to whom the Software is furnished to do so, subject to -- -- the following conditions: -- -- -- -- The above copyright notice and this permission notice shall be included -- -- in all copies or substantial portions of the Software. -- -- -- -- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS -- -- OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -- -- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. -- -- IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY -- -- CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, -- -- TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE -- -- SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -- ------------------------------------------------------------------------------ with Formatted_Output.Float_Output; package Formatted_Output_Float is new Formatted_Output.Float_Output (Float);
reznikmm/matreshka
Ada
7,021
adb
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Open Document Toolkit -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2014, Vadim Godunko <[email protected]> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ with Matreshka.DOM_Documents; with Matreshka.ODF_String_Constants; with ODF.DOM.Iterators; with ODF.DOM.Visitors; package body Matreshka.ODF_Table.Cell_Range_Source_Elements is ------------ -- Create -- ------------ overriding function Create (Parameters : not null access Matreshka.DOM_Elements.Element_L2_Parameters) return Table_Cell_Range_Source_Element_Node is begin return Self : Table_Cell_Range_Source_Element_Node do Matreshka.ODF_Table.Constructors.Initialize (Self'Unchecked_Access, Parameters.Document, Matreshka.ODF_String_Constants.Table_Prefix); end return; end Create; ---------------- -- Enter_Node -- ---------------- overriding procedure Enter_Node (Self : not null access Table_Cell_Range_Source_Element_Node; Visitor : in out XML.DOM.Visitors.Abstract_Visitor'Class; Control : in out XML.DOM.Visitors.Traverse_Control) is begin if Visitor in ODF.DOM.Visitors.Abstract_ODF_Visitor'Class then ODF.DOM.Visitors.Abstract_ODF_Visitor'Class (Visitor).Enter_Table_Cell_Range_Source (ODF.DOM.Table_Cell_Range_Source_Elements.ODF_Table_Cell_Range_Source_Access (Self), Control); else Matreshka.DOM_Elements.Abstract_Element_Node (Self.all).Enter_Node (Visitor, Control); end if; end Enter_Node; -------------------- -- Get_Local_Name -- -------------------- overriding function Get_Local_Name (Self : not null access constant Table_Cell_Range_Source_Element_Node) return League.Strings.Universal_String is pragma Unreferenced (Self); begin return Matreshka.ODF_String_Constants.Cell_Range_Source_Element; end Get_Local_Name; ---------------- -- Leave_Node -- ---------------- overriding procedure Leave_Node (Self : not null access Table_Cell_Range_Source_Element_Node; Visitor : in out XML.DOM.Visitors.Abstract_Visitor'Class; Control : in out XML.DOM.Visitors.Traverse_Control) is begin if Visitor in ODF.DOM.Visitors.Abstract_ODF_Visitor'Class then ODF.DOM.Visitors.Abstract_ODF_Visitor'Class (Visitor).Leave_Table_Cell_Range_Source (ODF.DOM.Table_Cell_Range_Source_Elements.ODF_Table_Cell_Range_Source_Access (Self), Control); else Matreshka.DOM_Elements.Abstract_Element_Node (Self.all).Leave_Node (Visitor, Control); end if; end Leave_Node; ---------------- -- Visit_Node -- ---------------- overriding procedure Visit_Node (Self : not null access Table_Cell_Range_Source_Element_Node; Iterator : in out XML.DOM.Visitors.Abstract_Iterator'Class; Visitor : in out XML.DOM.Visitors.Abstract_Visitor'Class; Control : in out XML.DOM.Visitors.Traverse_Control) is begin if Iterator in ODF.DOM.Iterators.Abstract_ODF_Iterator'Class then ODF.DOM.Iterators.Abstract_ODF_Iterator'Class (Iterator).Visit_Table_Cell_Range_Source (Visitor, ODF.DOM.Table_Cell_Range_Source_Elements.ODF_Table_Cell_Range_Source_Access (Self), Control); else Matreshka.DOM_Elements.Abstract_Element_Node (Self.all).Visit_Node (Iterator, Visitor, Control); end if; end Visit_Node; begin Matreshka.DOM_Documents.Register_Element (Matreshka.ODF_String_Constants.Table_URI, Matreshka.ODF_String_Constants.Cell_Range_Source_Element, Table_Cell_Range_Source_Element_Node'Tag); end Matreshka.ODF_Table.Cell_Range_Source_Elements;
reznikmm/matreshka
Ada
587
ads
with Ada.Streams; with League.Strings; package Styx.Messages.Stats is type Stat_Request is new Request with record FID : Styx.Messages.FID; end record; procedure Visit (Visiter : in out Styx.Request_Visiters.Request_Visiter'Class; Value : Stat_Request); type Stat_Request_Access is access all Stat_Request; type Stat_Reply is new Reply with record Value : Styx.Messages.Directory_Entry; end record; procedure Visit (Visiter : in out Styx.Reply_Visiters.Reply_Visiter'Class; Value : Stat_Reply); end Styx.Messages.Stats;
reznikmm/matreshka
Ada
3,609
ads
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Ada Modeling Framework -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2011-2012, Vadim Godunko <[email protected]> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ -- This file is generated, don't edit it. ------------------------------------------------------------------------------ with AMF.Elements.Generic_Hash; function AMF.UMLDI.UML_Labels.Hash is new AMF.Elements.Generic_Hash (UMLDI_UML_Label, UMLDI_UML_Label_Access);
charlie5/lace
Ada
3,480
ads
with lace.Observer, lace.Subject, lace.Response; private with ada.Text_IO, ada.Containers.indefinite_hashed_Sets; package lace.event.Logger.text -- -- Provides a logger which logs to a text file. -- is type Item is limited new Logger.item with private; type View is access all Item'Class; -------- -- Forge -- function to_Logger (Name : in String) return Item; overriding procedure destruct (Self : in out Item); ------------- -- Operations -- -- Logging of event consfiguration. -- overriding procedure log_Connection (Self : in out Item; From : in Observer.view; To : in Subject .view; for_Kind : in Event.Kind); overriding procedure log_Disconnection (Self : in out Item; From : in Observer.view; To : in Subject .view; for_Kind : in Event.Kind); overriding procedure log_new_Response (Self : in out Item; the_Response : in Response.view; of_Observer : in Observer.item'Class; to_Kind : in Event.Kind; from_Subject : in subject_Name); overriding procedure log_rid_Response (Self : in out Item; the_Response : in Response.view; of_Observer : in Observer.item'Class; to_Kind : in Event.Kind; from_Subject : in subject_Name); -- Logging of event transmission. -- overriding procedure log_Emit (Self : in out Item; From : in Subject .view; To : in Observer.view; the_Event : in Event.item'Class); overriding procedure log_Relay (Self : in out Item; From : in Observer.view; To : in Observer.view; the_Event : in Event.item'Class); overriding procedure log_Response (Self : in out Item; the_Response : in Response.view; of_Observer : in Observer.view; to_Event : in Event.item'Class; from_Subject : in subject_Name); -- Logging of miscellaneous messages. -- overriding procedure log (Self : in out Item; Message : in String); -- Log filtering -- overriding procedure ignore (Self : in out Item; Kind : in Event.Kind); private package event_kind_Sets is new ada.Containers.indefinite_hashed_Sets (Event.Kind, Event.Hash, "="); subtype event_kind_Set is event_kind_Sets.Set; type Item is limited new Logger.item with record File : ada.Text_IO.File_type; Ignored : event_kind_Set; end record; end lace.event.Logger.text;
reznikmm/matreshka
Ada
3,714
ads
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Open Document Toolkit -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2014, Vadim Godunko <[email protected]> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ with XML.DOM.Attributes; package ODF.DOM.Text_Main_Entry_Attributes is pragma Preelaborate; type ODF_Text_Main_Entry_Attribute is limited interface and XML.DOM.Attributes.DOM_Attribute; type ODF_Text_Main_Entry_Attribute_Access is access all ODF_Text_Main_Entry_Attribute'Class with Storage_Size => 0; end ODF.DOM.Text_Main_Entry_Attributes;
zhmu/ananas
Ada
40,082
adb
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME LIBRARY (GNARL) COMPONENTS -- -- -- -- S Y S T E M . T A S K _ P R I M I T I V E S . O P E R A T I O N S -- -- -- -- B o d y -- -- -- -- Copyright (C) 1992-2022, Free Software Foundation, Inc. -- -- -- -- GNARL is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. -- -- -- -- As a special exception under Section 7 of GPL version 3, you are granted -- -- additional permissions described in the GCC Runtime Library Exception, -- -- version 3.1, as published by the Free Software Foundation. -- -- -- -- You should have received a copy of the GNU General Public License and -- -- a copy of the GCC Runtime Library Exception along with this program; -- -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -- -- <http://www.gnu.org/licenses/>. -- -- -- -- GNARL was developed by the GNARL team at Florida State University. -- -- Extensive contributions were provided by Ada Core Technologies, Inc. -- -- -- ------------------------------------------------------------------------------ -- This is the RTEMS version of this package -- This package contains all the GNULL primitives that interface directly with -- the underlying OS. with Ada.Unchecked_Conversion; with Interfaces.C; with System.Tasking.Debug; with System.Interrupt_Management; with System.OS_Constants; with System.OS_Primitives; with System.Task_Info; with System.Soft_Links; -- We use System.Soft_Links instead of System.Tasking.Initialization -- because the later is a higher level package that we shouldn't depend on. -- For example when using the restricted run time, it is replaced by -- System.Tasking.Restricted.Stages. package body System.Task_Primitives.Operations is package OSC renames System.OS_Constants; package SSL renames System.Soft_Links; use System.Tasking.Debug; use System.Tasking; use Interfaces.C; use System.OS_Interface; use System.Parameters; use System.OS_Primitives; ---------------- -- Local Data -- ---------------- -- The followings are logically constants, but need to be initialized -- at run time. Single_RTS_Lock : aliased RTS_Lock; -- This is a lock to allow only one thread of control in the RTS at -- a time; it is used to execute in mutual exclusion from all other tasks. -- Used to protect All_Tasks_List Environment_Task_Id : Task_Id; -- A variable to hold Task_Id for the environment task Locking_Policy : constant Character; pragma Import (C, Locking_Policy, "__gl_locking_policy"); -- Value of the pragma Locking_Policy: -- 'C' for Ceiling_Locking -- 'I' for Inherit_Locking -- ' ' for none. -- The followings are internal configuration constants needed Next_Serial_Number : Task_Serial_Number := 100; -- We start at 100, to reserve some special values for -- using in error checking. Time_Slice_Val : constant Integer; pragma Import (C, Time_Slice_Val, "__gl_time_slice_val"); Dispatching_Policy : constant Character; pragma Import (C, Dispatching_Policy, "__gl_task_dispatching_policy"); Foreign_Task_Elaborated : aliased Boolean := True; -- Used to identified fake tasks (i.e., non-Ada Threads) Use_Alternate_Stack : constant Boolean := Alternate_Stack_Size /= 0; -- Whether to use an alternate signal stack for stack overflows Abort_Handler_Installed : Boolean := False; -- True if a handler for the abort signal is installed -------------------- -- Local Packages -- -------------------- package Specific is procedure Initialize (Environment_Task : Task_Id); pragma Inline (Initialize); -- Initialize various data needed by this package function Is_Valid_Task return Boolean; pragma Inline (Is_Valid_Task); -- Does executing thread have a TCB? procedure Set (Self_Id : Task_Id); pragma Inline (Set); -- Set the self id for the current task function Self return Task_Id; pragma Inline (Self); -- Return a pointer to the Ada Task Control Block of the calling task end Specific; package body Specific is separate; -- The body of this package is target specific package Monotonic is function Monotonic_Clock return Duration; pragma Inline (Monotonic_Clock); -- Returns an absolute time, represented as an offset relative to some -- unspecified starting point, typically system boot time. This clock -- is not affected by discontinuous jumps in the system time. function RT_Resolution return Duration; pragma Inline (RT_Resolution); -- Returns resolution of the underlying clock used to implement RT_Clock procedure Timed_Sleep (Self_ID : ST.Task_Id; Time : Duration; Mode : ST.Delay_Modes; Reason : System.Tasking.Task_States; Timedout : out Boolean; Yielded : out Boolean); -- Combination of Sleep (above) and Timed_Delay procedure Timed_Delay (Self_ID : ST.Task_Id; Time : Duration; Mode : ST.Delay_Modes); -- Implement the semantics of the delay statement. -- The caller should be abort-deferred and should not hold any locks. end Monotonic; package body Monotonic is separate; ---------------------------------- -- ATCB allocation/deallocation -- ---------------------------------- package body ATCB_Allocation is separate; -- The body of this package is shared across several targets --------------------------------- -- Support for foreign threads -- --------------------------------- function Register_Foreign_Thread (Thread : Thread_Id; Sec_Stack_Size : Size_Type := Unspecified_Size) return Task_Id; -- Allocate and initialize a new ATCB for the current Thread. The size of -- the secondary stack can be optionally specified. function Register_Foreign_Thread (Thread : Thread_Id; Sec_Stack_Size : Size_Type := Unspecified_Size) return Task_Id is separate; ----------------------- -- Local Subprograms -- ----------------------- procedure Abort_Handler (Sig : Signal); -- Signal handler used to implement asynchronous abort. -- See also comment before body, below. function To_Address is new Ada.Unchecked_Conversion (Task_Id, System.Address); function GNAT_pthread_condattr_setup (attr : access pthread_condattr_t) return int; pragma Import (C, GNAT_pthread_condattr_setup, "__gnat_pthread_condattr_setup"); ------------------- -- Abort_Handler -- ------------------- -- Target-dependent binding of inter-thread Abort signal to the raising of -- the Abort_Signal exception. -- The technical issues and alternatives here are essentially the -- same as for raising exceptions in response to other signals -- (e.g. Storage_Error). See code and comments in the package body -- System.Interrupt_Management. -- Some implementations may not allow an exception to be propagated out of -- a handler, and others might leave the signal or interrupt that invoked -- this handler masked after the exceptional return to the application -- code. -- GNAT exceptions are originally implemented using setjmp()/longjmp(). On -- most UNIX systems, this will allow transfer out of a signal handler, -- which is usually the only mechanism available for implementing -- asynchronous handlers of this kind. However, some systems do not -- restore the signal mask on longjmp(), leaving the abort signal masked. procedure Abort_Handler (Sig : Signal) is pragma Unreferenced (Sig); T : constant Task_Id := Self; Old_Set : aliased sigset_t; Unblocked_Mask : aliased sigset_t; Result : Interfaces.C.int; pragma Warnings (Off, Result); begin -- It's not safe to raise an exception when using GCC ZCX mechanism. -- Note that we still need to install a signal handler, since in some -- cases (e.g. shutdown of the Server_Task in System.Interrupts) we -- need to send the Abort signal to a task. if ZCX_By_Default then return; end if; if T.Deferral_Level = 0 and then T.Pending_ATC_Level < T.ATC_Nesting_Level and then not T.Aborting then T.Aborting := True; -- Make sure signals used for RTS internal purpose are unmasked Result := sigemptyset (Unblocked_Mask'Access); pragma Assert (Result = 0); Result := sigaddset (Unblocked_Mask'Access, Signal (Interrupt_Management.Abort_Task_Interrupt)); pragma Assert (Result = 0); Result := sigaddset (Unblocked_Mask'Access, SIGBUS); pragma Assert (Result = 0); Result := sigaddset (Unblocked_Mask'Access, SIGFPE); pragma Assert (Result = 0); Result := sigaddset (Unblocked_Mask'Access, SIGILL); pragma Assert (Result = 0); Result := sigaddset (Unblocked_Mask'Access, SIGSEGV); pragma Assert (Result = 0); Result := pthread_sigmask (SIG_UNBLOCK, Unblocked_Mask'Access, Old_Set'Access); pragma Assert (Result = 0); raise Standard'Abort_Signal; end if; end Abort_Handler; ----------------- -- Stack_Guard -- ----------------- procedure Stack_Guard (T : ST.Task_Id; On : Boolean) is Stack_Base : constant Address := Get_Stack_Base (T.Common.LL.Thread); Page_Size : Address; Res : Interfaces.C.int; begin if Stack_Base_Available then -- Compute the guard page address Page_Size := Address (Get_Page_Size); Res := mprotect (Stack_Base - (Stack_Base mod Page_Size) + Page_Size, size_t (Page_Size), prot => (if On then PROT_ON else PROT_OFF)); pragma Assert (Res = 0); end if; end Stack_Guard; -------------------- -- Get_Thread_Id -- -------------------- function Get_Thread_Id (T : ST.Task_Id) return OSI.Thread_Id is begin return T.Common.LL.Thread; end Get_Thread_Id; ---------- -- Self -- ---------- function Self return Task_Id renames Specific.Self; --------------------- -- Initialize_Lock -- --------------------- -- Note: mutexes and cond_variables needed per-task basis are initialized -- in Initialize_TCB and the Storage_Error is handled. Other mutexes (such -- as RTS_Lock, Memory_Lock...) used in RTS is initialized before any -- status change of RTS. Therefore raising Storage_Error in the following -- routines should be able to be handled safely. procedure Initialize_Lock (Prio : System.Any_Priority; L : not null access Lock) is Attributes : aliased pthread_mutexattr_t; Result : Interfaces.C.int; begin Result := pthread_mutexattr_init (Attributes'Access); pragma Assert (Result = 0 or else Result = ENOMEM); if Result = ENOMEM then raise Storage_Error; end if; if Locking_Policy = 'C' then Result := pthread_mutexattr_setprotocol (Attributes'Access, PTHREAD_PRIO_PROTECT); pragma Assert (Result = 0); Result := pthread_mutexattr_setprioceiling (Attributes'Access, Interfaces.C.int (Prio)); pragma Assert (Result = 0); elsif Locking_Policy = 'I' then Result := pthread_mutexattr_setprotocol (Attributes'Access, PTHREAD_PRIO_INHERIT); pragma Assert (Result = 0); end if; Result := pthread_mutex_init (L.WO'Access, Attributes'Access); pragma Assert (Result = 0 or else Result = ENOMEM); if Result = ENOMEM then Result := pthread_mutexattr_destroy (Attributes'Access); raise Storage_Error; end if; Result := pthread_mutexattr_destroy (Attributes'Access); pragma Assert (Result = 0); end Initialize_Lock; procedure Initialize_Lock (L : not null access RTS_Lock; Level : Lock_Level) is pragma Unreferenced (Level); Attributes : aliased pthread_mutexattr_t; Result : Interfaces.C.int; begin Result := pthread_mutexattr_init (Attributes'Access); pragma Assert (Result = 0 or else Result = ENOMEM); if Result = ENOMEM then raise Storage_Error; end if; if Locking_Policy = 'C' then Result := pthread_mutexattr_setprotocol (Attributes'Access, PTHREAD_PRIO_PROTECT); pragma Assert (Result = 0); Result := pthread_mutexattr_setprioceiling (Attributes'Access, Interfaces.C.int (System.Any_Priority'Last)); pragma Assert (Result = 0); elsif Locking_Policy = 'I' then Result := pthread_mutexattr_setprotocol (Attributes'Access, PTHREAD_PRIO_INHERIT); pragma Assert (Result = 0); end if; Result := pthread_mutex_init (L, Attributes'Access); pragma Assert (Result = 0 or else Result = ENOMEM); if Result = ENOMEM then Result := pthread_mutexattr_destroy (Attributes'Access); raise Storage_Error; end if; Result := pthread_mutexattr_destroy (Attributes'Access); pragma Assert (Result = 0); end Initialize_Lock; ------------------- -- Finalize_Lock -- ------------------- procedure Finalize_Lock (L : not null access Lock) is Result : Interfaces.C.int; begin Result := pthread_mutex_destroy (L.WO'Access); pragma Assert (Result = 0); end Finalize_Lock; procedure Finalize_Lock (L : not null access RTS_Lock) is Result : Interfaces.C.int; begin Result := pthread_mutex_destroy (L); pragma Assert (Result = 0); end Finalize_Lock; ---------------- -- Write_Lock -- ---------------- procedure Write_Lock (L : not null access Lock; Ceiling_Violation : out Boolean) is Result : Interfaces.C.int; begin Result := pthread_mutex_lock (L.WO'Access); -- The cause of EINVAL is a priority ceiling violation Ceiling_Violation := Result = EINVAL; pragma Assert (Result = 0 or else Ceiling_Violation); end Write_Lock; procedure Write_Lock (L : not null access RTS_Lock) is Result : Interfaces.C.int; begin Result := pthread_mutex_lock (L); pragma Assert (Result = 0); end Write_Lock; procedure Write_Lock (T : Task_Id) is Result : Interfaces.C.int; begin Result := pthread_mutex_lock (T.Common.LL.L'Access); pragma Assert (Result = 0); end Write_Lock; --------------- -- Read_Lock -- --------------- procedure Read_Lock (L : not null access Lock; Ceiling_Violation : out Boolean) is begin Write_Lock (L, Ceiling_Violation); end Read_Lock; ------------ -- Unlock -- ------------ procedure Unlock (L : not null access Lock) is Result : Interfaces.C.int; begin Result := pthread_mutex_unlock (L.WO'Access); pragma Assert (Result = 0); end Unlock; procedure Unlock (L : not null access RTS_Lock) is Result : Interfaces.C.int; begin Result := pthread_mutex_unlock (L); pragma Assert (Result = 0); end Unlock; procedure Unlock (T : Task_Id) is Result : Interfaces.C.int; begin Result := pthread_mutex_unlock (T.Common.LL.L'Access); pragma Assert (Result = 0); end Unlock; ----------------- -- Set_Ceiling -- ----------------- -- Dynamic priority ceilings are not supported by the underlying system procedure Set_Ceiling (L : not null access Lock; Prio : System.Any_Priority) is pragma Unreferenced (L, Prio); begin null; end Set_Ceiling; ----------- -- Sleep -- ----------- procedure Sleep (Self_ID : Task_Id; Reason : System.Tasking.Task_States) is pragma Unreferenced (Reason); Result : Interfaces.C.int; begin Result := pthread_cond_wait (cond => Self_ID.Common.LL.CV'Access, mutex => Self_ID.Common.LL.L'Access); -- EINTR is not considered a failure pragma Assert (Result = 0 or else Result = EINTR); end Sleep; ----------------- -- Timed_Sleep -- ----------------- -- This is for use within the run-time system, so abort is -- assumed to be already deferred, and the caller should be -- holding its own ATCB lock. procedure Timed_Sleep (Self_ID : Task_Id; Time : Duration; Mode : ST.Delay_Modes; Reason : Task_States; Timedout : out Boolean; Yielded : out Boolean) renames Monotonic.Timed_Sleep; ----------------- -- Timed_Delay -- ----------------- -- This is for use in implementing delay statements, so we assume the -- caller is abort-deferred but is holding no locks. procedure Timed_Delay (Self_ID : Task_Id; Time : Duration; Mode : ST.Delay_Modes) renames Monotonic.Timed_Delay; --------------------- -- Monotonic_Clock -- --------------------- function Monotonic_Clock return Duration renames Monotonic.Monotonic_Clock; ------------------- -- RT_Resolution -- ------------------- function RT_Resolution return Duration renames Monotonic.RT_Resolution; ------------ -- Wakeup -- ------------ procedure Wakeup (T : Task_Id; Reason : System.Tasking.Task_States) is pragma Unreferenced (Reason); Result : Interfaces.C.int; begin Result := pthread_cond_signal (T.Common.LL.CV'Access); pragma Assert (Result = 0); end Wakeup; ----------- -- Yield -- ----------- procedure Yield (Do_Yield : Boolean := True) is Result : Interfaces.C.int; pragma Unreferenced (Result); begin if Do_Yield then Result := sched_yield; end if; end Yield; ------------------ -- Set_Priority -- ------------------ procedure Set_Priority (T : Task_Id; Prio : System.Any_Priority; Loss_Of_Inheritance : Boolean := False) is pragma Unreferenced (Loss_Of_Inheritance); Result : Interfaces.C.int; Param : aliased struct_sched_param; function Get_Policy (Prio : System.Any_Priority) return Character; pragma Import (C, Get_Policy, "__gnat_get_specific_dispatching"); -- Get priority specific dispatching policy Priority_Specific_Policy : constant Character := Get_Policy (Prio); -- Upper case first character of the policy name corresponding to the -- task as set by a Priority_Specific_Dispatching pragma. begin T.Common.Current_Priority := Prio; Param.sched_priority := To_Target_Priority (Prio); if Time_Slice_Supported and then (Dispatching_Policy = 'R' or else Priority_Specific_Policy = 'R' or else Time_Slice_Val > 0) then Result := pthread_setschedparam (T.Common.LL.Thread, SCHED_RR, Param'Access); elsif Dispatching_Policy = 'F' or else Priority_Specific_Policy = 'F' or else Time_Slice_Val = 0 then Result := pthread_setschedparam (T.Common.LL.Thread, SCHED_FIFO, Param'Access); else Result := pthread_setschedparam (T.Common.LL.Thread, SCHED_OTHER, Param'Access); end if; pragma Assert (Result = 0); end Set_Priority; ------------------ -- Get_Priority -- ------------------ function Get_Priority (T : Task_Id) return System.Any_Priority is begin return T.Common.Current_Priority; end Get_Priority; ---------------- -- Enter_Task -- ---------------- procedure Enter_Task (Self_ID : Task_Id) is begin Self_ID.Common.LL.Thread := pthread_self; Self_ID.Common.LL.LWP := lwp_self; Specific.Set (Self_ID); if Use_Alternate_Stack then declare Stack : aliased stack_t; Result : Interfaces.C.int; begin Stack.ss_sp := Self_ID.Common.Task_Alternate_Stack; Stack.ss_size := Alternate_Stack_Size; Stack.ss_flags := 0; Result := sigaltstack (Stack'Access, null); pragma Assert (Result = 0); end; end if; end Enter_Task; ------------------- -- Is_Valid_Task -- ------------------- function Is_Valid_Task return Boolean renames Specific.Is_Valid_Task; ----------------------------- -- Register_Foreign_Thread -- ----------------------------- function Register_Foreign_Thread return Task_Id is begin if Is_Valid_Task then return Self; else return Register_Foreign_Thread (pthread_self); end if; end Register_Foreign_Thread; -------------------- -- Initialize_TCB -- -------------------- procedure Initialize_TCB (Self_ID : Task_Id; Succeeded : out Boolean) is Mutex_Attr : aliased pthread_mutexattr_t; Result : Interfaces.C.int; Cond_Attr : aliased pthread_condattr_t; begin -- Give the task a unique serial number Self_ID.Serial_Number := Next_Serial_Number; Next_Serial_Number := Next_Serial_Number + 1; pragma Assert (Next_Serial_Number /= 0); Result := pthread_mutexattr_init (Mutex_Attr'Access); pragma Assert (Result = 0 or else Result = ENOMEM); if Result = 0 then if Locking_Policy = 'C' then Result := pthread_mutexattr_setprotocol (Mutex_Attr'Access, PTHREAD_PRIO_PROTECT); pragma Assert (Result = 0); Result := pthread_mutexattr_setprioceiling (Mutex_Attr'Access, Interfaces.C.int (System.Any_Priority'Last)); pragma Assert (Result = 0); elsif Locking_Policy = 'I' then Result := pthread_mutexattr_setprotocol (Mutex_Attr'Access, PTHREAD_PRIO_INHERIT); pragma Assert (Result = 0); end if; Result := pthread_mutex_init (Self_ID.Common.LL.L'Access, Mutex_Attr'Access); pragma Assert (Result = 0 or else Result = ENOMEM); end if; if Result /= 0 then Succeeded := False; return; end if; Result := pthread_mutexattr_destroy (Mutex_Attr'Access); pragma Assert (Result = 0); Result := pthread_condattr_init (Cond_Attr'Access); pragma Assert (Result = 0 or else Result = ENOMEM); if Result = 0 then Result := GNAT_pthread_condattr_setup (Cond_Attr'Access); pragma Assert (Result = 0); Result := pthread_cond_init (Self_ID.Common.LL.CV'Access, Cond_Attr'Access); pragma Assert (Result = 0 or else Result = ENOMEM); end if; if Result = 0 then Succeeded := True; else Result := pthread_mutex_destroy (Self_ID.Common.LL.L'Access); pragma Assert (Result = 0); Succeeded := False; end if; Result := pthread_condattr_destroy (Cond_Attr'Access); pragma Assert (Result = 0); end Initialize_TCB; ----------------- -- Create_Task -- ----------------- procedure Create_Task (T : Task_Id; Wrapper : System.Address; Stack_Size : System.Parameters.Size_Type; Priority : System.Any_Priority; Succeeded : out Boolean) is Attributes : aliased pthread_attr_t; Adjusted_Stack_Size : Interfaces.C.size_t; Page_Size : constant Interfaces.C.size_t := Interfaces.C.size_t (Get_Page_Size); Result : Interfaces.C.int; function Thread_Body_Access is new Ada.Unchecked_Conversion (System.Address, Thread_Body); use System.Task_Info; begin Adjusted_Stack_Size := Interfaces.C.size_t (Stack_Size + Alternate_Stack_Size); if Stack_Base_Available then -- If Stack Checking is supported then allocate 2 additional pages: -- In the worst case, stack is allocated at something like -- N * Get_Page_Size - epsilon, we need to add the size for 2 pages -- to be sure the effective stack size is greater than what -- has been asked. Adjusted_Stack_Size := Adjusted_Stack_Size + 2 * Page_Size; end if; -- Round stack size as this is required by some OSes (Darwin) Adjusted_Stack_Size := Adjusted_Stack_Size + Page_Size - 1; Adjusted_Stack_Size := Adjusted_Stack_Size - Adjusted_Stack_Size mod Page_Size; Result := pthread_attr_init (Attributes'Access); pragma Assert (Result = 0 or else Result = ENOMEM); if Result /= 0 then Succeeded := False; return; end if; Result := pthread_attr_setdetachstate (Attributes'Access, PTHREAD_CREATE_DETACHED); pragma Assert (Result = 0); Result := pthread_attr_setstacksize (Attributes'Access, Adjusted_Stack_Size); pragma Assert (Result = 0); if T.Common.Task_Info /= Default_Scope then case T.Common.Task_Info is when System.Task_Info.Process_Scope => Result := pthread_attr_setscope (Attributes'Access, PTHREAD_SCOPE_PROCESS); when System.Task_Info.System_Scope => Result := pthread_attr_setscope (Attributes'Access, PTHREAD_SCOPE_SYSTEM); when System.Task_Info.Default_Scope => Result := 0; end case; pragma Assert (Result = 0); end if; -- Since the initial signal mask of a thread is inherited from the -- creator, and the Environment task has all its signals masked, we -- do not need to manipulate caller's signal mask at this point. -- All tasks in RTS will have All_Tasks_Mask initially. -- Note: the use of Unrestricted_Access in the following call is needed -- because otherwise we have an error of getting a access-to-volatile -- value which points to a non-volatile object. But in this case it is -- safe to do this, since we know we have no problems with aliasing and -- Unrestricted_Access bypasses this check. Result := pthread_create (T.Common.LL.Thread'Unrestricted_Access, Attributes'Access, Thread_Body_Access (Wrapper), To_Address (T)); pragma Assert (Result = 0 or else Result = EAGAIN); Succeeded := Result = 0; Result := pthread_attr_destroy (Attributes'Access); pragma Assert (Result = 0); if Succeeded then Set_Priority (T, Priority); end if; end Create_Task; ------------------ -- Finalize_TCB -- ------------------ procedure Finalize_TCB (T : Task_Id) is Result : Interfaces.C.int; begin Result := pthread_mutex_destroy (T.Common.LL.L'Access); pragma Assert (Result = 0); Result := pthread_cond_destroy (T.Common.LL.CV'Access); pragma Assert (Result = 0); if T.Known_Tasks_Index /= -1 then Known_Tasks (T.Known_Tasks_Index) := null; end if; ATCB_Allocation.Free_ATCB (T); end Finalize_TCB; --------------- -- Exit_Task -- --------------- procedure Exit_Task is begin -- Mark this task as unknown, so that if Self is called, it won't -- return a dangling pointer. Specific.Set (null); end Exit_Task; ---------------- -- Abort_Task -- ---------------- procedure Abort_Task (T : Task_Id) is Result : Interfaces.C.int; begin if Abort_Handler_Installed then Result := pthread_kill (T.Common.LL.Thread, Signal (System.Interrupt_Management.Abort_Task_Interrupt)); pragma Assert (Result = 0); end if; end Abort_Task; ---------------- -- Initialize -- ---------------- procedure Initialize (S : in out Suspension_Object) is Mutex_Attr : aliased pthread_mutexattr_t; Cond_Attr : aliased pthread_condattr_t; Result : Interfaces.C.int; begin -- Initialize internal state (always to False (RM D.10 (6))) S.State := False; S.Waiting := False; -- Initialize internal mutex Result := pthread_mutexattr_init (Mutex_Attr'Access); pragma Assert (Result = 0 or else Result = ENOMEM); if Result = ENOMEM then raise Storage_Error; end if; Result := pthread_mutex_init (S.L'Access, Mutex_Attr'Access); pragma Assert (Result = 0 or else Result = ENOMEM); if Result = ENOMEM then Result := pthread_mutexattr_destroy (Mutex_Attr'Access); pragma Assert (Result = 0); raise Storage_Error; end if; Result := pthread_mutexattr_destroy (Mutex_Attr'Access); pragma Assert (Result = 0); -- Initialize internal condition variable Result := pthread_condattr_init (Cond_Attr'Access); pragma Assert (Result = 0 or else Result = ENOMEM); if Result /= 0 then Result := pthread_mutex_destroy (S.L'Access); pragma Assert (Result = 0); -- Storage_Error is propagated as intended if the allocation of the -- underlying OS entities fails. raise Storage_Error; else Result := GNAT_pthread_condattr_setup (Cond_Attr'Access); pragma Assert (Result = 0); end if; Result := pthread_cond_init (S.CV'Access, Cond_Attr'Access); pragma Assert (Result = 0 or else Result = ENOMEM); if Result /= 0 then Result := pthread_mutex_destroy (S.L'Access); pragma Assert (Result = 0); Result := pthread_condattr_destroy (Cond_Attr'Access); pragma Assert (Result = 0); -- Storage_Error is propagated as intended if the allocation of the -- underlying OS entities fails. raise Storage_Error; end if; Result := pthread_condattr_destroy (Cond_Attr'Access); pragma Assert (Result = 0); end Initialize; -------------- -- Finalize -- -------------- procedure Finalize (S : in out Suspension_Object) is Result : Interfaces.C.int; begin -- Destroy internal mutex Result := pthread_mutex_destroy (S.L'Access); pragma Assert (Result = 0); -- Destroy internal condition variable Result := pthread_cond_destroy (S.CV'Access); pragma Assert (Result = 0); end Finalize; ------------------- -- Current_State -- ------------------- function Current_State (S : Suspension_Object) return Boolean is begin -- We do not want to use lock on this read operation. State is marked -- as Atomic so that we ensure that the value retrieved is correct. return S.State; end Current_State; --------------- -- Set_False -- --------------- procedure Set_False (S : in out Suspension_Object) is Result : Interfaces.C.int; begin SSL.Abort_Defer.all; Result := pthread_mutex_lock (S.L'Access); pragma Assert (Result = 0); S.State := False; Result := pthread_mutex_unlock (S.L'Access); pragma Assert (Result = 0); SSL.Abort_Undefer.all; end Set_False; -------------- -- Set_True -- -------------- procedure Set_True (S : in out Suspension_Object) is Result : Interfaces.C.int; begin SSL.Abort_Defer.all; Result := pthread_mutex_lock (S.L'Access); pragma Assert (Result = 0); -- If there is already a task waiting on this suspension object then -- we resume it, leaving the state of the suspension object to False, -- as it is specified in (RM D.10(9)). Otherwise, it just leaves -- the state to True. if S.Waiting then S.Waiting := False; S.State := False; Result := pthread_cond_signal (S.CV'Access); pragma Assert (Result = 0); else S.State := True; end if; Result := pthread_mutex_unlock (S.L'Access); pragma Assert (Result = 0); SSL.Abort_Undefer.all; end Set_True; ------------------------ -- Suspend_Until_True -- ------------------------ procedure Suspend_Until_True (S : in out Suspension_Object) is Result : Interfaces.C.int; begin SSL.Abort_Defer.all; Result := pthread_mutex_lock (S.L'Access); pragma Assert (Result = 0); if S.Waiting then -- Program_Error must be raised upon calling Suspend_Until_True -- if another task is already waiting on that suspension object -- (RM D.10(10)). Result := pthread_mutex_unlock (S.L'Access); pragma Assert (Result = 0); SSL.Abort_Undefer.all; raise Program_Error; else -- Suspend the task if the state is False. Otherwise, the task -- continues its execution, and the state of the suspension object -- is set to False (ARM D.10 par. 9). if S.State then S.State := False; else S.Waiting := True; loop -- Loop in case pthread_cond_wait returns earlier than expected -- (e.g. in case of EINTR caused by a signal). Result := pthread_cond_wait (S.CV'Access, S.L'Access); pragma Assert (Result = 0 or else Result = EINTR); exit when not S.Waiting; end loop; end if; Result := pthread_mutex_unlock (S.L'Access); pragma Assert (Result = 0); SSL.Abort_Undefer.all; end if; end Suspend_Until_True; ---------------- -- Check_Exit -- ---------------- -- Dummy version function Check_Exit (Self_ID : ST.Task_Id) return Boolean is pragma Unreferenced (Self_ID); begin return True; end Check_Exit; -------------------- -- Check_No_Locks -- -------------------- function Check_No_Locks (Self_ID : ST.Task_Id) return Boolean is pragma Unreferenced (Self_ID); begin return True; end Check_No_Locks; ---------------------- -- Environment_Task -- ---------------------- function Environment_Task return Task_Id is begin return Environment_Task_Id; end Environment_Task; -------------- -- Lock_RTS -- -------------- procedure Lock_RTS is begin Write_Lock (Single_RTS_Lock'Access); end Lock_RTS; ---------------- -- Unlock_RTS -- ---------------- procedure Unlock_RTS is begin Unlock (Single_RTS_Lock'Access); end Unlock_RTS; ------------------ -- Suspend_Task -- ------------------ function Suspend_Task (T : ST.Task_Id; Thread_Self : Thread_Id) return Boolean is pragma Unreferenced (T, Thread_Self); begin return False; end Suspend_Task; ----------------- -- Resume_Task -- ----------------- function Resume_Task (T : ST.Task_Id; Thread_Self : Thread_Id) return Boolean is pragma Unreferenced (T, Thread_Self); begin return False; end Resume_Task; -------------------- -- Stop_All_Tasks -- -------------------- procedure Stop_All_Tasks is begin null; end Stop_All_Tasks; --------------- -- Stop_Task -- --------------- function Stop_Task (T : ST.Task_Id) return Boolean is pragma Unreferenced (T); begin return False; end Stop_Task; ------------------- -- Continue_Task -- ------------------- function Continue_Task (T : ST.Task_Id) return Boolean is pragma Unreferenced (T); begin return False; end Continue_Task; ---------------- -- Initialize -- ---------------- procedure Initialize (Environment_Task : Task_Id) is act : aliased struct_sigaction; old_act : aliased struct_sigaction; Tmp_Set : aliased sigset_t; Result : Interfaces.C.int; function State (Int : System.Interrupt_Management.Interrupt_ID) return Character; pragma Import (C, State, "__gnat_get_interrupt_state"); -- Get interrupt state. Defined in a-init.c -- The input argument is the interrupt number, -- and the result is one of the following: Default : constant Character := 's'; -- 'n' this interrupt not set by any Interrupt_State pragma -- 'u' Interrupt_State pragma set state to User -- 'r' Interrupt_State pragma set state to Runtime -- 's' Interrupt_State pragma set state to System (use "default" -- system handler) begin Environment_Task_Id := Environment_Task; Interrupt_Management.Initialize; -- Initialize the lock used to synchronize chain of all ATCBs Initialize_Lock (Single_RTS_Lock'Access, RTS_Lock_Level); Specific.Initialize (Environment_Task); if Use_Alternate_Stack then Environment_Task.Common.Task_Alternate_Stack := Alternate_Stack'Address; end if; -- Make environment task known here because it doesn't go through -- Activate_Tasks, which does it for all other tasks. Known_Tasks (Known_Tasks'First) := Environment_Task; Environment_Task.Known_Tasks_Index := Known_Tasks'First; Enter_Task (Environment_Task); if State (System.Interrupt_Management.Abort_Task_Interrupt) /= Default then act.sa_flags := 0; act.sa_handler := Abort_Handler'Address; Result := sigemptyset (Tmp_Set'Access); pragma Assert (Result = 0); act.sa_mask := Tmp_Set; Result := sigaction (Signal (System.Interrupt_Management.Abort_Task_Interrupt), act'Unchecked_Access, old_act'Unchecked_Access); pragma Assert (Result = 0); Abort_Handler_Installed := True; end if; end Initialize; ----------------------- -- Set_Task_Affinity -- ----------------------- procedure Set_Task_Affinity (T : ST.Task_Id) is pragma Unreferenced (T); begin -- Setting task affinity is not supported by the underlying system null; end Set_Task_Affinity; end System.Task_Primitives.Operations;
reznikmm/matreshka
Ada
6,719
ads
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Ada Modeling Framework -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2012, Vadim Godunko <[email protected]> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ -- This file is generated, don't edit it. ------------------------------------------------------------------------------ with AMF.DG.Clip_Paths; with AMF.DG.Graphical_Elements.Collections; with AMF.DG.Groups; with AMF.DG.Styles.Collections; with AMF.Internals.DG_Elements; with AMF.Visitors; package AMF.Internals.DG_Groups is type DG_Group_Proxy is limited new AMF.Internals.DG_Elements.DG_Element_Proxy and AMF.DG.Groups.DG_Group with null record; overriding function Get_Member (Self : not null access constant DG_Group_Proxy) return AMF.DG.Graphical_Elements.Collections.Ordered_Set_Of_DG_Graphical_Element; -- Getter of Group::member. -- -- the list of graphical elements that are members of (owned by) this -- group. overriding function Get_Group (Self : not null access constant DG_Group_Proxy) return AMF.DG.Groups.DG_Group_Access; -- Getter of GraphicalElement::group. -- -- the group element that owns this graphical element. overriding procedure Set_Group (Self : not null access DG_Group_Proxy; To : AMF.DG.Groups.DG_Group_Access); -- Setter of GraphicalElement::group. -- -- the group element that owns this graphical element. overriding function Get_Local_Style (Self : not null access constant DG_Group_Proxy) return AMF.DG.Styles.Collections.Ordered_Set_Of_DG_Style; -- Getter of GraphicalElement::localStyle. -- -- a list of locally-owned styles for this graphical element. overriding function Get_Shared_Style (Self : not null access constant DG_Group_Proxy) return AMF.DG.Styles.Collections.Ordered_Set_Of_DG_Style; -- Getter of GraphicalElement::sharedStyle. -- -- a list of shared styles for this graphical element. overriding function Get_Transform (Self : not null access constant DG_Group_Proxy) return AMF.DG.Sequence_Of_DG_Transform; -- Getter of GraphicalElement::transform. -- -- a list of zero or more transforms to apply to this graphical element. overriding function Get_Clip_Path (Self : not null access constant DG_Group_Proxy) return AMF.DG.Clip_Paths.DG_Clip_Path_Access; -- Getter of GraphicalElement::clipPath. -- -- an optional reference to a clip path element that masks the painting of -- this graphical element. overriding procedure Set_Clip_Path (Self : not null access DG_Group_Proxy; To : AMF.DG.Clip_Paths.DG_Clip_Path_Access); -- Setter of GraphicalElement::clipPath. -- -- an optional reference to a clip path element that masks the painting of -- this graphical element. overriding procedure Enter_Element (Self : not null access constant DG_Group_Proxy; Visitor : in out AMF.Visitors.Abstract_Visitor'Class; Control : in out AMF.Visitors.Traverse_Control); overriding procedure Leave_Element (Self : not null access constant DG_Group_Proxy; Visitor : in out AMF.Visitors.Abstract_Visitor'Class; Control : in out AMF.Visitors.Traverse_Control); overriding procedure Visit_Element (Self : not null access constant DG_Group_Proxy; Iterator : in out AMF.Visitors.Abstract_Iterator'Class; Visitor : in out AMF.Visitors.Abstract_Visitor'Class; Control : in out AMF.Visitors.Traverse_Control); end AMF.Internals.DG_Groups;
jhumphry/auto_counters
Ada
3,442
ads
-- kvflyweights-basic_hashtables.ads -- A package of non-task-safe hash tables for the KVFlyweights packages -- Copyright (c) 2016, James Humphry -- -- Permission to use, copy, modify, and/or distribute this software for any -- purpose with or without fee is hereby granted, provided that the above -- copyright notice and this permission notice appear in all copies. -- -- THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH -- REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY -- AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, -- INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM -- LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE -- OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -- PERFORMANCE OF THIS SOFTWARE. pragma Profile (No_Implementation_Extensions); with Ada.Containers; with KVFlyweights_Lists_Spec; with KVFlyweights_Hashtables_Spec; generic type Key(<>) is private; type Key_Access is access Key; type Value(<>) is limited private; type Value_Access is access Value; with function Hash (K : Key) return Ada.Containers.Hash_Type; with package KVLists_Spec is new KVFlyweights_Lists_Spec(Key => Key, Key_Access => Key_Access, Value_Access => Value_Access, others => <>); Capacity : Ada.Containers.Hash_Type := 256; package KVFlyweights.Protected_Hashtables is use type Ada.Containers.Hash_Type; type List_Array is array (Ada.Containers.Hash_Type range <>) of KVLists_Spec.List; protected type KVFlyweight is procedure Insert (Bucket : out Ada.Containers.Hash_Type; K : in Key; Key_Ptr : out Key_Access; Value_Ptr : out Value_Access); procedure Increment (Bucket : in Ada.Containers.Hash_Type; Key_Ptr : in Key_Access); procedure Remove (Bucket : in Ada.Containers.Hash_Type; Key_Ptr : in Key_Access); private Lists : List_Array (0..(Capacity-1)) := (others => KVLists_Spec.Empty_List); end KVFlyweight; procedure Insert (F : aliased in out KVFlyweight; Bucket : out Ada.Containers.Hash_Type; K : in Key; Key_Ptr : out Key_Access; Value_Ptr : out Value_Access) with Inline; procedure Increment (F : aliased in out KVFlyweight; Bucket : in Ada.Containers.Hash_Type; Key_Ptr : in Key_Access) with Inline; procedure Remove (F : in out KVFlyweight; Bucket : in Ada.Containers.Hash_Type; Key_Ptr : in Key_Access) with Inline; package Hashtables_Spec is new KVFlyweights_Hashtables_Spec(Key => Key, Key_Access => Key_Access, Value_Access => Value_Access, KVFlyweight => KVFlyweight, Insert => Insert, Increment => Increment, Remove => Remove); end KVFlyweights.Protected_Hashtables;
reznikmm/matreshka
Ada
5,227
ads
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Ada Modeling Framework -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2011-2012, Vadim Godunko <[email protected]> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ with AMF.CMOF.Classes; with AMF.CMOF.Comments.Collections; with AMF.CMOF.Elements.Collections; with AMF.CMOF.Properties; with AMF.Extents; with AMF.Internals.Elements; with League.Holders; package AMF.Internals.CMOF_Elements is type CMOF_Element_Proxy is abstract limited new AMF.Internals.Elements.Element_Base and AMF.CMOF.Elements.CMOF_Element with null record; overriding function Get (Self : not null access constant CMOF_Element_Proxy; Property : not null AMF.CMOF.Properties.CMOF_Property_Access) return League.Holders.Holder; overriding function Get_Meta_Class (Self : not null access constant CMOF_Element_Proxy) return AMF.CMOF.Classes.CMOF_Class_Access; overriding function Get_Owned_Comment (Self : not null access constant CMOF_Element_Proxy) return AMF.CMOF.Comments.Collections.Set_Of_CMOF_Comment; overriding function Get_Owned_Element (Self : not null access constant CMOF_Element_Proxy) return AMF.CMOF.Elements.Collections.Set_Of_CMOF_Element; overriding function Get_Owner (Self : not null access constant CMOF_Element_Proxy) return AMF.CMOF.Elements.CMOF_Element_Access; overriding procedure Set (Self : not null access CMOF_Element_Proxy; Property : not null AMF.CMOF.Properties.CMOF_Property_Access; Value : League.Holders.Holder); overriding function Extent (Self : not null access constant CMOF_Element_Proxy) return AMF.Extents.Extent_Access; overriding function Must_Be_Owned (Self : not null access constant CMOF_Element_Proxy) return Boolean; -- Operation Element::mustBeOwned. -- -- The query mustBeOwned() indicates whether elements of this type must -- have an owner. Subclasses of Element that do not require an owner must -- override this operation. end AMF.Internals.CMOF_Elements;
AdaCore/libadalang
Ada
751
ads
-- Test that ame resolution for record members can resolve the inherited -- members in derived record types. package Foo is type R1_Type is record A, B : Integer; C : Natural; end record; type R2_Type is new R1_Type; type R3_Type is tagged record D : Integer; end record; type R4_Type is new R3_Type with null record; type R5_Type is new R4_Type with record E : Natural; end record; R2 : R2_Type; R3 : R3_Type; R4 : R4_Type; R5 : R5_Type; R5_Class : R5_Type'Class := R5; pragma Test (R2.A); pragma Test (R2.Z); pragma Test (R4.D); pragma Test (R4.Z); pragma Test (R5.D); pragma Test (R5.E); pragma Test (R5.Z); pragma Test (R5_Class.D); end Foo;
sungyeon/drake
Ada
4,028
ads
pragma License (Unrestricted); -- implementation unit required by compiler with System.Storage_Elements; with System.Storage_Pools; package System.Pool_Size is pragma Preelaborate; use type Storage_Elements.Storage_Offset; type Aligned_Storage_Array is new Storage_Elements.Storage_Array; for Aligned_Storage_Array'Alignment use Standard'Maximum_Alignment; -- mixed type Bounded_Allocator ( Size : Storage_Elements.Storage_Count; Alignment : Storage_Elements.Storage_Count) is limited record First_Free : Storage_Elements.Storage_Offset := -1; -- offset First_Empty : Storage_Elements.Storage_Count := 0; -- offset Storage : aliased Aligned_Storage_Array (1 .. Size); end record; for Bounded_Allocator'Alignment use Standard'Maximum_Alignment; procedure Allocate ( Allocator : aliased in out Bounded_Allocator; Storage_Address : out Address; Size_In_Storage_Elements : Storage_Elements.Storage_Count; Alignment : Storage_Elements.Storage_Count); procedure Deallocate ( Allocator : aliased in out Bounded_Allocator; Storage_Address : Address; Size_In_Storage_Elements : Storage_Elements.Storage_Count; Alignment : Storage_Elements.Storage_Count); function Storage_Size (Allocator : Bounded_Allocator) return Storage_Elements.Storage_Count; pragma Inline (Storage_Size); pragma Simple_Storage_Pool_Type (Bounded_Allocator); -- fixed type Bounded_Fixed_Allocator ( Size : Storage_Elements.Storage_Count; Component_Size : Storage_Elements.Storage_Count; Alignment : Storage_Elements.Storage_Count) is limited record First_Free : Storage_Elements.Storage_Offset := -1; -- offset First_Empty : Storage_Elements.Storage_Count := 0; -- offset Storage : aliased Aligned_Storage_Array (1 .. Size); end record; for Bounded_Fixed_Allocator'Alignment use Standard'Maximum_Alignment; procedure Allocate ( Allocator : aliased in out Bounded_Fixed_Allocator; Storage_Address : out Address; Size_In_Storage_Elements : Storage_Elements.Storage_Count; Alignment : Storage_Elements.Storage_Count); procedure Deallocate ( Allocator : aliased in out Bounded_Fixed_Allocator; Storage_Address : Address; Size_In_Storage_Elements : Storage_Elements.Storage_Count; Alignment : Storage_Elements.Storage_Count); function Storage_Size (Allocator : Bounded_Fixed_Allocator) return Storage_Elements.Storage_Count; pragma Inline (Storage_Size); pragma Simple_Storage_Pool_Type (Bounded_Fixed_Allocator); -- required for access types having explicit 'Storage_Size > 0 by compiler -- (s-poosiz.ads) type Stack_Bounded_Pool ( Pool_Size : Storage_Elements.Storage_Count; Elmt_Size : Storage_Elements.Storage_Count; Alignment : Storage_Elements.Storage_Count) is limited new Storage_Pools.Root_Storage_Pool with record case Elmt_Size is when 0 => Mixed : aliased Bounded_Allocator (Pool_Size, Alignment); when others => Fixed : aliased Bounded_Fixed_Allocator (Pool_Size, Elmt_Size, Alignment); end case; end record with Disable_Controlled => True; pragma Finalize_Storage_Only (Stack_Bounded_Pool); overriding procedure Allocate ( Pool : in out Stack_Bounded_Pool; Storage_Address : out Address; Size_In_Storage_Elements : Storage_Elements.Storage_Count; Alignment : Storage_Elements.Storage_Count); pragma Inline (Allocate); overriding procedure Deallocate ( Pool : in out Stack_Bounded_Pool; Storage_Address : Address; Size_In_Storage_Elements : Storage_Elements.Storage_Count; Alignment : Storage_Elements.Storage_Count); pragma Inline (Deallocate); overriding function Storage_Size (Pool : Stack_Bounded_Pool) return Storage_Elements.Storage_Count; pragma Inline (Storage_Size); end System.Pool_Size;
zhmu/ananas
Ada
5,334
adb
------------------------------------------------------------------------------ -- -- -- GNAT COMPILER COMPONENTS -- -- -- -- G N A T . S O C K E T S . P O L L . G _ W A I T -- -- -- -- B o d y -- -- -- -- Copyright (C) 2020-2022, AdaCore -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. -- -- -- -- As a special exception under Section 7 of GPL version 3, you are granted -- -- additional permissions described in the GCC Runtime Library Exception, -- -- version 3.1, as published by the Free Software Foundation. -- -- -- -- You should have received a copy of the GNU General Public License and -- -- a copy of the GCC Runtime Library Exception along with this program; -- -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -- -- <http://www.gnu.org/licenses/>. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ with GNAT.Sockets.Thin_Common; procedure GNAT.Sockets.Poll.G_Wait (Fds : in out Set; Timeout : Interfaces.C.int; Result : out Integer) is use Interfaces; function C_Select (Nfds : C.int; readfds : access FD_Set_Type; writefds : access FD_Set_Type; exceptfds : access FD_Set_Type; timeout : access Thin_Common.Timeval) return Integer with Import => True, Convention => Stdcall, External_Name => "select"; Timeout_V : aliased Thin_Common.Timeval; Timeout_A : access Thin_Common.Timeval; Rfds : aliased FD_Set_Type; Rcount : Natural := 0; Wfds : aliased FD_Set_Type; Wcount : Natural := 0; Efds : aliased FD_Set_Type; Rfdsa : access FD_Set_Type; Wfdsa : access FD_Set_Type; FD_Events : Events_Type; begin -- Setup (convert data from poll to select layout) if Timeout >= 0 then Timeout_A := Timeout_V'Access; Timeout_V.Tv_Sec := Thin_Common.time_t (Timeout / 1000); Timeout_V.Tv_Usec := Thin_Common.suseconds_t (Timeout rem 1000 * 1000); end if; Reset_Socket_Set (Rfds); Reset_Socket_Set (Wfds); Reset_Socket_Set (Efds); for J in Fds.Fds'First .. Fds.Length loop Fds.Fds (J).REvents := 0; FD_Events := Fds.Fds (J).Events; if (FD_Events and (SOC.POLLIN or SOC.POLLPRI)) /= 0 then Insert_Socket_In_Set (Rfds, Fds.Fds (J).Socket); Rcount := Rcount + 1; end if; if (FD_Events and SOC.POLLOUT) /= 0 then Insert_Socket_In_Set (Wfds, Fds.Fds (J).Socket); Wcount := Wcount + 1; end if; Insert_Socket_In_Set (Efds, Fds.Fds (J).Socket); if Fds.Fds (J).Socket > Fds.Max_FD then raise Program_Error with "Wrong Max_FD"; end if; end loop; -- Any non-null descriptor set must contain at least one handle -- to a socket on Windows (MSDN). if Rcount /= 0 then Rfdsa := Rfds'Access; end if; if Wcount /= 0 then Wfdsa := Wfds'Access; end if; -- Call OS select Result := C_Select (C.int (Fds.Max_FD + 1), Rfdsa, Wfdsa, Efds'Access, Timeout_A); -- Build result (convert back from select to poll layout) if Result > 0 then Result := 0; for J in Fds.Fds'First .. Fds.Length loop if Is_Socket_In_Set (Rfds, Fds.Fds (J).Socket) /= 0 then -- Do not need "or" with Poll_Ptr (J).REvents because it's zero Fds.Fds (J).REvents := SOC.POLLIN; end if; if Is_Socket_In_Set (Wfds, Fds.Fds (J).Socket) /= 0 then Fds.Fds (J).REvents := Fds.Fds (J).REvents or SOC.POLLOUT; end if; if Is_Socket_In_Set (Efds, Fds.Fds (J).Socket) /= 0 then Fds.Fds (J).REvents := Fds.Fds (J).REvents or SOC.POLLERR; end if; if Fds.Fds (J).REvents /= 0 then Result := Result + 1; end if; end loop; end if; end GNAT.Sockets.Poll.G_Wait;
GLADORG/glad-cli
Ada
2,590
adb
with Ada.Containers; use Ada.Containers; with Ada.Directories; use Ada.Directories; with Blueprint; use Blueprint; with AAA.Strings; use AAA.Strings; with Ada.Text_IO; with Ada.Command_Line; with Templates_Parser; with CLIC.TTY; with Filesystem; with Commands; package body Commands.Generate is package IO renames Ada.Text_IO; package TT renames CLIC.TTY; ------------- -- Execute -- ------------- overriding procedure Execute ( Cmd : in out Command; Args : AAA.Strings.Vector) is begin if Args.Length > 1 then declare Name : String := Element (Args, 2); Blueprint : String := Args.First_Element; Blueprint_Path : String := Compose(Get_Blueprint_Folder,Blueprint); Current : String := Current_Directory; ToDo : Action := Write; begin if Cmd.Dry_Run then IO.Put_Line(TT.Emph("You specified the dry-run flag, so no changes will be written.")); ToDo := DryRun; end if; Templates_Parser.Insert (Commands.Translations, Templates_Parser.Assoc ("NAME", Name)); if Exists (Blueprint_Path) then Iterate (Blueprint_Path, Current, ToDo); IO.Put_Line (TT.Success( "Successfully generated " & Blueprint) & " " & TT.Warn (TT.Bold (Name))); else IO.Put_Line (TT.Error("Blueprint" & " " & Blueprint_Path & " " & "not found")); end if; end; else IO.Put_Line(TT.Error("Command requires a blueprint and a name to be specified.")); end if; end Execute; overriding function Long_Description(Cmd : Command) return AAA.Strings.Vector is Description : AAA.Strings.Vector := AAA.Strings.Empty_Vector; Blueprints : AAA.Strings.Vector := Filesystem.Read_Directory(Get_Blueprint_Folder, false); begin Append(Description, TT.Description("Generates new code from blueprints.")); Description.New_Line; Description.Append(TT.Underline("Available blueprints")); for A_Blueprint of Blueprints loop Append(Description, TT.Emph (A_Blueprint)); end loop; return Description; end Long_Description; -------------------- -- Setup_Switches -- -------------------- overriding procedure Setup_Switches (Cmd : in out Command; Config : in out CLIC.Subcommand.Switches_Configuration) is use CLIC.Subcommand; begin Define_Switch (Config, Cmd.Dry_Run'Access, "", "-dry-run", "Dry-run"); end Setup_Switches; end Commands.Generate;
reznikmm/matreshka
Ada
3,714
ads
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Open Document Toolkit -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2014, Vadim Godunko <[email protected]> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ with XML.DOM.Attributes; package ODF.DOM.Text_Date_Value_Attributes is pragma Preelaborate; type ODF_Text_Date_Value_Attribute is limited interface and XML.DOM.Attributes.DOM_Attribute; type ODF_Text_Date_Value_Attribute_Access is access all ODF_Text_Date_Value_Attribute'Class with Storage_Size => 0; end ODF.DOM.Text_Date_Value_Attributes;