1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085
|
-- Module MSAbstractService (X.413:06/1999)
MSAbstractService {joint-iso-itu-t mhs(6) ms(4) modules(0) abstract-service(1)
version-1999(1)} DEFINITIONS ::=
BEGIN
-- Prologue
-- Exports everything
IMPORTS
-- MTS information object classes
operationObject1, ABSTRACT-ERROR, ABSTRACT-OPERATION, EXTENSION, MHS-OBJECT,
PORT,
-- MTS objects and ports
administration, delivery, mts-user,
submission,
-- MTS abstract-operations and abstract-errors
cancel-deferred-delivery, element-of-service-not-subscribed,
inconsistent-request, new-credentials-unacceptable,
old-credentials-incorrectly-specified, originator-invalid,
recipient-improperly-specified, remote-bind-error, security-error,
submission-control, submission-control-violated,
unsupported-critical-function,
-- MTS abstract-service data-types
CertificateSelectors, Credentials, InitiatorCredentials,
MessageSubmissionArgument, MessageSubmissionResult, MessageToken,
ORAddressAndOrDirectoryName, ProbeSubmissionArgument,
ProbeSubmissionResult, ResponderCredentials, SecurityContext, SecurityLabel
FROM MTSAbstractService {joint-iso-itu-t mhs(6) mts(3) modules(0)
mts-abstract-service(1) version-1999(1)}
-- MTS abstract-service 1988 ports
administration-88
--==
FROM MTSAbstractService88 {joint-iso-itu-t mhs(6) mts(3) modules(0)
mts-abstract-service(1) version-1988(1988)}
-- MTS abstract-service upper bounds
ub-content-types, ub-encoded-information-types, ub-labels-and-redirections
--==
FROM MTSUpperBounds {joint-iso-itu-t mhs(6) mts(3) modules(0)
upper-bounds(3) version-1999(1)}
-- MS X413ATTRIBUTE table
AttributeTable
--==
FROM MSGeneralAttributeTypes {joint-iso-itu-t mhs(6) ms(4) modules(0)
general-attribute-types(2) version-1999(1)}
-- MS matching rule table
MatchingRuleTable
--==
FROM MSMatchingRules {joint-iso-itu-t mhs(6) ms(4) modules(0)
general-matching-rules(5) version-1999(1)}
-- MS auto-action-table and auto-action-error table
AutoActionTable, AutoActionErrorTable
--==
FROM MSGeneralAutoActionTypes {joint-iso-itu-t mhs(6) ms(4) modules(0)
general-auto-action-types(3) version-1994(0)}
-- MS object-identifiers
id-cp-ms-connection, id-crt-ms-access-88, id-crt-ms-access-94,
id-ext-modify-capability, id-ext-modify-retrieval-status-capability,
id-ext-originator-token, id-ext-originator-certificate-selectors-override,
id-ext-protected-change-credentials,
id-ext-protected-change-credentials-capability, id-ot-ms, id-ot-ms-user,
id-pt-retrieval-88, id-pt-retrieval-94, id-pt-ms-submission
--==
FROM MSObjectIdentifiers {joint-iso-itu-t mhs(6) ms(4) modules(0)
object-identifiers(0) version-1999(1)}
-- MS Access abstract-operation and error codes
err-attribute-error, err-auto-action-request-error, err-ms-extension-error,
err-delete-error, err-entry-class-error, err-fetch-restriction-error,
err-invalid-parameters-error, err-message-group-error, err-modify-error,
err-range-error, err-security-error, err-sequence-number-error,
err-service-error, err-register-ms-error, op-alert, op-delete, op-fetch,
op-list, op-modify, op-ms-message-submission, op-ms-probe-submission,
op-register-ms, op-summarize
--==
FROM MSAccessProtocol {joint-iso-itu-t mhs(6) protocols(0) modules(0)
ms-access-protocol(2) version-1999(1)}
-- MS abstract-service upper bounds
ub-attributes-supported, ub-attribute-values, ub-auto-action-errors,
ub-auto-actions, ub-auto-registrations, ub-default-registrations,
ub-entry-classes, ub-error-reasons, ub-extensions, ub-group-depth,
ub-group-descriptor-length, ub-group-part-length, ub-matching-rules,
ub-message-groups, ub-messages, ub-modifications, ub-per-entry,
ub-per-auto-action, ub-service-information-length, ub-summaries,
ub-supplementary-info-length, ub-ua-registration-identifier-length,
ub-ua-registrations, ub-restrictions
--==
FROM MSUpperBounds {joint-iso-itu-t mhs(6) ms(4) modules(0) upper-bounds(4)
version-1994(0)}
-- MATCHING-RULE information object class
MATCHING-RULE
--==
FROM InformationFramework
-- Remote Operations
CONTRACT, CONNECTION-PACKAGE
--==
FROM Remote-Operations-Information-Objects {joint-iso-itu-t
remote-operations(4) informationObjects(5) version1(0)}
emptyUnbind
FROM Remote-Operations-Useful-Definitions {joint-iso-itu-t
remote-operations(4) useful-definitions(7) version1(0)};
-- MS Abstract Objects
ms MHS-OBJECT ::= {
IS {mts-user}
RESPONDS {ms-access-contract-88 | ms-access-contract-94}
ID id-ot-ms
}
ms-user MHS-OBJECT ::= {
INITIATES {ms-access-contract-88 | ms-access-contract-94}
ID id-ot-ms-user
}
-- Contracts
ms-access-contract-94 CONTRACT ::= {
CONNECTION ms-connect
INITIATOR CONSUMER OF {retrieval | ms-submission | administration}
ID id-crt-ms-access-94
}
ms-access-contract-88 CONTRACT ::= {
CONNECTION ms-connect -- with all 1994 extensions omitted
INITIATOR CONSUMER OF {retrieval-88 | submission | administration-88}
ID id-crt-ms-access-88
}
-- Connection-package
ms-connect CONNECTION-PACKAGE ::= {
BIND ms-bind
UNBIND ms-unbind
ID id-cp-ms-connection
}
-- MS Ports
retrieval PORT ::= {
OPERATIONS {operationObject1, ...}
CONSUMER INVOKES
{summarize | list | fetch | delete | register-MS,
... -- 1994 extension addition --, modify}
SUPPLIER INVOKES {alert}
ID id-pt-retrieval-94
}
retrieval-88 PORT ::= {
-- With all 1994 extensions to the abstract-operations absent
OPERATIONS {operationObject1, ...}
CONSUMER INVOKES {summarize | list | fetch | delete | register-MS}
SUPPLIER INVOKES {alert}
ID id-pt-retrieval-88
}
ms-submission PORT ::= {
OPERATIONS {operationObject1, ...}
CONSUMER INVOKES
{ms-message-submission | ms-probe-submission | ms-cancel-deferred-delivery}
SUPPLIER INVOKES {ms-submission-control}
ID id-pt-ms-submission
}
-- X413ATTRIBUTE information object class
X413ATTRIBUTE ::= CLASS {
&id AttributeType UNIQUE,
&Type ,
&equalityMatch MATCHING-RULE OPTIONAL,
&substringsMatch MATCHING-RULE OPTIONAL,
&orderingMatch MATCHING-RULE OPTIONAL,
&numeration ENUMERATED {single-valued(0), multi-valued(1)},
-- 1994 extension
&OtherMatches MATCHING-RULE OPTIONAL
}
WITH SYNTAX {
WITH ATTRIBUTE-SYNTAX &Type,
[EQUALITY MATCHING-RULE &equalityMatch,]
[SUBSTRINGS MATCHING-RULE &substringsMatch,]
[ORDERING MATCHING-RULE &orderingMatch,]
[OTHER MATCHING-RULES &OtherMatches,]
NUMERATION &numeration,
ID &id
}
Attribute ::= SEQUENCE {
attribute-type X413ATTRIBUTE.&id({AttributeTable}),
attribute-values
SEQUENCE SIZE (1..ub-attribute-values) OF
X413ATTRIBUTE.&Type({AttributeTable}{@attribute-type})
}
AttributeType ::= OBJECT IDENTIFIER
-- AUTO-ACTION information object class
AUTO-ACTION ::= CLASS {
&id AutoActionType UNIQUE,
&RegistrationParameter OPTIONAL,
&Errors AUTO-ACTION-ERROR OPTIONAL
}
WITH SYNTAX {
[REGISTRATION PARAMETER IS &RegistrationParameter]
[ERRORS &Errors]
IDENTIFIED BY &id
}
AutoActionType ::= OBJECT IDENTIFIER
AutoActionRegistration ::= SEQUENCE {
auto-action-type AUTO-ACTION.&id({AutoActionTable}),
registration-identifier [0] INTEGER(1..ub-per-auto-action) DEFAULT 1,
registration-parameter
[1] AUTO-ACTION.&RegistrationParameter
({AutoActionTable}{@auto-action-type}) OPTIONAL
}
-- AUTO-ACTION-ERROR information object class
AUTO-ACTION-ERROR ::=
ABSTRACT-ERROR
AutoActionError ::= SET {
error-code [0] AUTO-ACTION-ERROR.&errorCode({AutoActionErrorTable}),
error-parameter
[1] AUTO-ACTION-ERROR.&ParameterType({AutoActionErrorTable}{@error-code})
OPTIONAL
}
-- MS-EXTENSION information object class
MS-EXTENSION ::= TYPE-IDENTIFIER
MSExtensionItem ::= INSTANCE OF MS-EXTENSION
MSExtensions ::= SEQUENCE SIZE (1..ub-extensions) OF MSExtensionItem
-- Common data-types related to the information model
EntryClass ::= INTEGER {
delivery(0),
-- 1994 extensions
submission(1), draft(2), stored-message(3), delivery-log(4),
submission-log(5), message-log(6), auto-action-log(7)}(0..ub-entry-classes)
EntryType ::= INTEGER {
delivered-message(0), delivered-report(1),
returned-content(2),
-- 1994 extensions
submitted-message(3), submitted-probe(4), draft-message(5),
auto-action-event(6)}
SequenceNumber ::= INTEGER(0..ub-messages)
RetrievalStatus ::= INTEGER {new(0), listed(1), processed(2)}
MessageGroupName ::= SEQUENCE SIZE (1..ub-group-depth) OF GroupNamePart
GroupNamePart ::= GeneralString(SIZE (1..ub-group-part-length))
-- MS-bind abstract-operation
ms-bind ABSTRACT-OPERATION ::= {
ARGUMENT MSBindArgument
RESULT MSBindResult
ERRORS {ms-bind-error}
}
MSBindArgument ::= SET {
initiator-name ORAddressAndOrDirectoryName,
initiator-credentials [2] InitiatorCredentials,
security-context [3] IMPLICIT SecurityContext OPTIONAL,
fetch-restrictions [4] Restrictions OPTIONAL -- default is none--,
ms-configuration-request [5] BOOLEAN DEFAULT FALSE,
-- 1994 extensions
ua-registration-identifier [6] RegistrationIdentifier OPTIONAL,
bind-extensions [7] MSExtensions OPTIONAL
}
Restrictions ::= SET {
allowed-content-types
[0] SET SIZE (1..ub-content-types) OF OBJECT IDENTIFIER OPTIONAL--default is no restriction--,
allowed-EITs [1] MS-EITs OPTIONAL --default is no restriction--,
maximum-attribute-length [2] INTEGER OPTIONAL --default is no restriction--
}
MS-EITs ::= SET SIZE (1..ub-encoded-information-types) OF MS-EIT
MS-EIT ::= OBJECT IDENTIFIER
RegistrationIdentifier ::=
PrintableString(SIZE (1..ub-ua-registration-identifier-length))
MSBindResult ::= SET {
responder-credentials [2] ResponderCredentials,
available-auto-actions
[3] SET SIZE (1..ub-auto-actions) OF AUTO-ACTION.&id({AutoActionTable})
OPTIONAL,
available-attribute-types
[4] SET SIZE (1..ub-attributes-supported) OF
X413ATTRIBUTE.&id({AttributeTable}) OPTIONAL,
alert-indication [5] BOOLEAN DEFAULT FALSE,
content-types-supported
[6] SET SIZE (1..ub-content-types) OF OBJECT IDENTIFIER OPTIONAL,
-- 1994 extensions
entry-classes-supported
[7] SET SIZE (1..ub-entry-classes) OF EntryClass OPTIONAL,
matching-rules-supported
[8] SET SIZE (1..ub-matching-rules) OF OBJECT IDENTIFIER OPTIONAL,
bind-result-extensions [9] MSExtensions OPTIONAL,
message-group-depth [10] INTEGER(1..ub-group-depth) OPTIONAL,
auto-action-error-indication [11] AutoActionErrorIndication OPTIONAL,
unsupported-extensions
[12] SET SIZE (1..ub-extensions) OF OBJECT IDENTIFIER OPTIONAL,
ua-registration-id-unknown [13] BOOLEAN DEFAULT FALSE,
service-information
[14] GeneralString(SIZE (1..ub-service-information-length)) OPTIONAL
}
modify-capability MS-EXTENSION ::= {
NULL
IDENTIFIED BY id-ext-modify-capability
}
modify-retrieval-status-capability MS-EXTENSION ::= {
NULL
IDENTIFIED BY id-ext-modify-retrieval-status-capability
}
protected-change-credentials-capability MS-EXTENSION ::= {
ChangeCredentialsAlgorithms
IDENTIFIED BY id-ext-protected-change-credentials-capability
}
ChangeCredentialsAlgorithms ::= SET OF OBJECT IDENTIFIER
AutoActionErrorIndication ::= CHOICE {
indication-only [0] NULL,
auto-action-log-entry [1] SequenceNumber
}
ms-bind-error ABSTRACT-ERROR ::= {
PARAMETER
CHOICE {unqualified-error BindProblem,
-- 1994 extension
qualified-error
SET {bind-problem [0] BindProblem,
supplementary-information
[1] GeneralString(SIZE (1..ub-supplementary-info-length))
OPTIONAL,
bind-extension-errors
[2] SET SIZE (1..ub-extensions) OF OBJECT IDENTIFIER
OPTIONAL}}
}
BindProblem ::= ENUMERATED {
authentication-error(0), unacceptable-security-context(1),
unable-to-establish-association(2), ... -- 1994 extension addition --,
bind-extension-problem(3), inadequate-association-confidentiality(4)
}
-- MS Unbind abstract-operation
ms-unbind ABSTRACT-OPERATION ::= emptyUnbind
-- Common data-types
Range ::= CHOICE {
sequence-number-range [0] NumberRange,
creation-time-range [1] TimeRange
}
NumberRange ::= SEQUENCE {
from [0] SequenceNumber OPTIONAL -- omitted means no lower bound--,
to [1] SequenceNumber OPTIONAL -- omitted means no upper bound--
}
TimeRange ::= SEQUENCE {
from [0] CreationTime OPTIONAL -- omitted means no lower bound--,
to [1] CreationTime OPTIONAL -- omitted means no upper bound--
}
CreationTime ::= UTCTime
Filter ::= CHOICE {
item [0] FilterItem,
and [1] SET OF Filter,
or [2] SET OF Filter,
not [3] Filter
}
FilterItem ::= CHOICE {
equality [0] AttributeValueAssertion,
substrings
[1] SEQUENCE {type X413ATTRIBUTE.&id({AttributeTable}),
strings
SEQUENCE OF
CHOICE {initial
[0] X413ATTRIBUTE.&Type
({AttributeTable}{@substrings.type}),
any
[1] X413ATTRIBUTE.&Type
({AttributeTable}{@substrings.type}),
final
[2] X413ATTRIBUTE.&Type
({AttributeTable}{@substrings.type})
}},
greater-or-equal [2] AttributeValueAssertion,
less-or-equal [3] AttributeValueAssertion,
present [4] X413ATTRIBUTE.&id({AttributeTable}),
approximate-match [5] AttributeValueAssertion,
-- 1994 extension
other-match [6] MatchingRuleAssertion
}
MatchingRuleAssertion ::= SEQUENCE {
matching-rule [0] MATCHING-RULE.&id({MatchingRuleTable}),
attribute-type [1] X413ATTRIBUTE.&id,
match-value
[2] MATCHING-RULE.&AssertionType({MatchingRuleTable}{@matching-rule})
}
AttributeValueAssertion ::= SEQUENCE {
attribute-type X413ATTRIBUTE.&id({AttributeTable}),
attribute-value X413ATTRIBUTE.&Type({AttributeTable}{@attribute-type})
}
Selector ::= SET {
child-entries [0] BOOLEAN DEFAULT FALSE,
range [1] Range OPTIONAL -- default is unbounded --,
filter
[2] Filter
OPTIONAL -- default is all entries within the specified range --,
limit [3] INTEGER(1..ub-messages) OPTIONAL,
override [4] OverrideRestrictions OPTIONAL -- by default, --
-- any fetch-restrictions in force apply
}
OverrideRestrictions ::= BIT STRING {
override-content-types-restriction(0), override-EITs-restriction(1),
override-attribute-length-restriction(2)}(SIZE (1..ub-restrictions))
EntryInformationSelection ::= SET SIZE (0..ub-per-entry) OF AttributeSelection
AttributeSelection ::= SET {
type X413ATTRIBUTE.&id({AttributeTable}),
from
[0] INTEGER(1..ub-attribute-values)
OPTIONAL --used if type is multi valued--,
count
[1] INTEGER(0..ub-attribute-values)
OPTIONAL --used if type is multi valued--
}
EntryInformation ::= SEQUENCE {
sequence-number SequenceNumber,
attributes SET SIZE (1..ub-per-entry) OF Attribute OPTIONAL,
-- 1994 extension
value-count-exceeded
[0] SET SIZE (1..ub-per-entry) OF AttributeValueCount OPTIONAL
}
AttributeValueCount ::= SEQUENCE {
type [0] X413ATTRIBUTE.&id({AttributeTable}),
total [1] INTEGER
}
MSSubmissionOptions ::= SET {
object-entry-class
[0] EntryClass(submission | submission-log | draft) OPTIONAL,
disable-auto-modify [1] BOOLEAN DEFAULT FALSE,
add-message-group-names
[2] SET SIZE (1..ub-message-groups) OF MessageGroupName OPTIONAL,
ms-submission-extensions [3] MSExtensions OPTIONAL
}
originator-token MS-EXTENSION ::= {
OriginatorToken
IDENTIFIED BY id-ext-originator-token
}
OriginatorToken ::=
MessageToken
(CONSTRAINED BY {
-- Must contain an asymmetric-token with an encrypted-data component --})
originator-certificate-selectors-override MS-EXTENSION ::= {
CertificateSelectors
(WITH COMPONENTS {
...,
message-origin-authentication ABSENT
})
IDENTIFIED BY id-ext-originator-certificate-selectors-override
}
CommonSubmissionResults ::= SET {
created-entry [0] SequenceNumber OPTIONAL,
auto-action-error-indication [1] AutoActionErrorIndication OPTIONAL,
ms-submission-result-extensions [2] MSExtensions OPTIONAL
}
-- Retrieval Port abstract-operations
summarize ABSTRACT-OPERATION ::= {
ARGUMENT SummarizeArgument
RESULT SummarizeResult
ERRORS
{attribute-error | invalid-parameters-error | range-error | security-error
| service-error, ... -- 1994 extension additions --, entry-class-error |
ms-extension-error}
LINKED {operationObject1, ...}
CODE op-summarize
}
SummarizeArgument ::= SET {
entry-class [0] EntryClass DEFAULT delivery,
selector [1] Selector,
summary-requests
[2] SEQUENCE SIZE (1..ub-summaries) OF X413ATTRIBUTE.&id({AttributeTable})
OPTIONAL -- absent if no summaries are requested--,
-- 1994 extension
summarize-extensions [3] MSExtensions OPTIONAL
}
SummarizeResult ::= SET {
next [0] SequenceNumber OPTIONAL,
count
[1] INTEGER(0..ub-messages)-- of the entries selected-- ,
span [2] Span OPTIONAL -- of the entries selected,---- omitted if count is zero --,
summaries
[3] SEQUENCE SIZE (1..ub-summaries) OF Summary OPTIONAL,
-- 1994 extension
summarize-result-extensions [4] MSExtensions OPTIONAL
}
Span ::= SEQUENCE {lowest [0] SequenceNumber,
highest [1] SequenceNumber
}
Summary ::= SET {
absent
[0] INTEGER(1..ub-messages)
OPTIONAL --count of entries where X413ATTRIBUTE is absent--,
present
[1] SET SIZE (1..ub-attribute-values)
OF--one for each X413ATTRIBUTE value present--
SEQUENCE {type X413ATTRIBUTE.&id({AttributeTable}),
value X413ATTRIBUTE.&Type({AttributeTable}{@.type}),
count INTEGER(1..ub-messages)} OPTIONAL
}
--
list ABSTRACT-OPERATION ::= {
ARGUMENT ListArgument
RESULT ListResult
ERRORS
{attribute-error | invalid-parameters-error | range-error | security-error
| service-error, ... -- 1994 extension additions --, entry-class-error |
ms-extension-error}
LINKED {operationObject1, ...}
CODE op-list
}
ListArgument ::= SET {
entry-class [0] EntryClass DEFAULT delivery,
selector [1] Selector,
requested-attributes [3] EntryInformationSelection OPTIONAL,
-- 1994 extension
list-extensions [4] MSExtensions OPTIONAL
}
ListResult ::= SET {
next [0] SequenceNumber OPTIONAL,
requested
[1] SEQUENCE SIZE (1..ub-messages) OF EntryInformation OPTIONAL--omitted if none found--,
-- 1994 extension
list-result-extensions [2] MSExtensions OPTIONAL
}
--
fetch ABSTRACT-OPERATION ::= {
ARGUMENT FetchArgument
RESULT FetchResult
ERRORS
{attribute-error | fetch-restriction-error | invalid-parameters-error |
range-error | security-error | sequence-number-error | service-error,
... -- 1994 extension additions --, entry-class-error |
ms-extension-error}
LINKED {operationObject1, ...}
CODE op-fetch
}
FetchArgument ::= SET {
entry-class [0] EntryClass DEFAULT delivery,
item
CHOICE {search [1] Selector,
precise [2] SequenceNumber},
requested-attributes [3] EntryInformationSelection OPTIONAL,
-- 1994 extension
fetch-extensions [4] MSExtensions OPTIONAL
}
FetchResult ::= SET {
entry-information
[0] EntryInformation OPTIONAL --if an entry was selected--,
list
[1] SEQUENCE SIZE (1..ub-messages) OF SequenceNumber OPTIONAL,
next [2] SequenceNumber OPTIONAL,
-- 1994 extension
fetch-result-extensions [3] MSExtensions OPTIONAL
}
--
delete ABSTRACT-OPERATION ::= {
ARGUMENT DeleteArgument
RESULT DeleteResult
ERRORS
{delete-error | invalid-parameters-error | range-error | security-error |
sequence-number-error | service-error,
... -- 1994 extension additions --, entry-class-error |
ms-extension-error}
LINKED {operationObject1, ...}
CODE op-delete
}
DeleteArgument ::= SET {
entry-class [0] EntryClass DEFAULT delivery,
items
CHOICE {selector [1] Selector,
sequence-numbers [2] SET SIZE (1..ub-messages) OF SequenceNumber
},
-- 1994 extension
delete-extensions [3] MSExtensions OPTIONAL
}
DeleteResult ::= CHOICE {
delete-result-88 NULL,
-- 1994 extension
delete-result-94
SET {entries-deleted
[0] SEQUENCE SIZE (1..ub-messages) OF SequenceNumber OPTIONAL,
delete-result-extensions [1] MSExtensions OPTIONAL}
}
--
register-MS ABSTRACT-OPERATION ::= {
ARGUMENT Register-MSArgument
RESULT Register-MSResult
ERRORS
{attribute-error | auto-action-request-error | invalid-parameters-error |
security-error | service-error | old-credentials-incorrectly-specified |
new-credentials-unacceptable, ... -- 1994 extension additions --,
message-group-error | ms-extension-error | register-ms-error}
LINKED {operationObject1, ...}
CODE op-register-ms
}
Register-MSArgument ::= SET {
auto-action-registrations
[0] SET SIZE (1..ub-auto-registrations) OF AutoActionRegistration OPTIONAL,
auto-action-deregistrations
[1] SET SIZE (1..ub-auto-registrations) OF AutoActionDeregistration
OPTIONAL,
list-attribute-defaults
[2] SET SIZE (0..ub-default-registrations) OF
X413ATTRIBUTE.&id({AttributeTable}) OPTIONAL,
fetch-attribute-defaults
[3] SET SIZE (0..ub-default-registrations) OF
X413ATTRIBUTE.&id({AttributeTable}) OPTIONAL,
change-credentials
[4] SEQUENCE {old-credentials
[0] Credentials(WITH COMPONENTS {
simple
}),
new-credentials
[1] Credentials(WITH COMPONENTS {
simple
})} OPTIONAL,
user-security-labels
[5] SET SIZE (1..ub-labels-and-redirections) OF SecurityLabel OPTIONAL,
-- 1994 extensions
ua-registrations
[6] SET SIZE (1..ub-ua-registrations) OF UARegistration OPTIONAL,
submission-defaults [7] MSSubmissionOptions OPTIONAL,
message-group-registrations [8] MessageGroupRegistrations OPTIONAL,
registration-status-request [9] RegistrationTypes OPTIONAL,
register-ms-extensions [10] MSExtensions OPTIONAL
}
AutoActionDeregistration ::= SEQUENCE {
auto-action-type AUTO-ACTION.&id({AutoActionTable}),
registration-identifier [0] INTEGER(1..ub-per-auto-action) DEFAULT 1
}
UARegistration ::= SET {
ua-registration-identifier [0] RegistrationIdentifier,
ua-list-attribute-defaults
[1] SET SIZE (0..ub-default-registrations) OF
X413ATTRIBUTE.&id({AttributeTable}) OPTIONAL,
ua-fetch-attribute-defaults
[2] SET SIZE (0..ub-default-registrations) OF
X413ATTRIBUTE.&id({AttributeTable}) OPTIONAL,
ua-submission-defaults [3] MSSubmissionOptions OPTIONAL,
content-specific-defaults [4] MSExtensions OPTIONAL
}
MessageGroupRegistrations ::=
SEQUENCE SIZE (1..ub-default-registrations) OF
CHOICE {register-group [0] MessageGroupNameAndDescriptor,
deregister-group [1] MessageGroupName,
change-descriptors [2] MessageGroupNameAndDescriptor}
MessageGroupNameAndDescriptor ::= SET {
message-group-name [0] MessageGroupName,
message-group-descriptor
[1] GeneralString(SIZE (1..ub-group-descriptor-length)) OPTIONAL
}
RegistrationTypes ::= SET {
registrations
[0] BIT STRING {auto-action-registrations(0), list-attribute-defaults(1),
fetch-attribute-defaults(2), ua-registrations(3),
submission-defaults(4), message-group-registrations(5)}
OPTIONAL,
extended-registrations [1] SET OF MS-EXTENSION.&id OPTIONAL,
restrict-message-groups [2] MessageGroupsRestriction OPTIONAL
}
MessageGroupsRestriction ::= SET {
parent-group [0] MessageGroupName OPTIONAL,
immediate-descendants-only [1] BOOLEAN DEFAULT TRUE,
omit-descriptors [2] BOOLEAN DEFAULT TRUE
}
protected-change-credentials MS-EXTENSION ::= {
ProtectedChangeCredentials
IDENTIFIED BY id-ext-protected-change-credentials
}
ProtectedChangeCredentials ::= SEQUENCE {
algorithm-identifier [0] IMPLICIT OBJECT IDENTIFIER,
old-credentials
InitiatorCredentials(WITH COMPONENTS {
protected PRESENT
}),
password-delta [2] IMPLICIT BIT STRING
}
Register-MSResult ::= CHOICE {
no-status-information NULL,
-- 1994 extension
registered-information
SET {auto-action-registrations
[0] SET SIZE (1..ub-auto-registrations) OF AutoActionRegistration
OPTIONAL,
list-attribute-defaults
[1] SET SIZE (1..ub-default-registrations) OF
X413ATTRIBUTE.&id({AttributeTable}) OPTIONAL,
fetch-attribute-defaults
[2] SET SIZE (1..ub-default-registrations) OF
X413ATTRIBUTE.&id({AttributeTable}) OPTIONAL,
ua-registrations
[3] SET SIZE (1..ub-ua-registrations) OF UARegistration OPTIONAL,
submission-defaults [4] MSSubmissionOptions OPTIONAL,
message-group-registrations
[5] SET SIZE (1..ub-message-groups) OF
MessageGroupNameAndDescriptor OPTIONAL,
register-ms-result-extensions [6] MSExtensions OPTIONAL}
}
--
alert ABSTRACT-OPERATION ::= {
ARGUMENT AlertArgument
RESULT AlertResult
ERRORS {security-error}
LINKED {operationObject1, ...}
CODE op-alert
}
AlertArgument ::= SET {
alert-registration-identifier [0] INTEGER(1..ub-auto-actions),
new-entry [2] EntryInformation OPTIONAL
}
AlertResult ::= NULL
--
modify ABSTRACT-OPERATION ::= {
ARGUMENT ModifyArgument
RESULT ModifyResult
ERRORS
{attribute-error | invalid-parameters-error | security-error |
sequence-number-error | service-error | modify-error |
message-group-error | entry-class-error | ms-extension-error,
... -- For future extension additions --}
LINKED {operationObject1, ...}
CODE op-modify
}
ModifyArgument ::= SET {
entry-class [0] EntryClass DEFAULT delivery,
entries
CHOICE {selector [1] Selector,
specific-entries
[2] SEQUENCE SIZE (1..ub-messages) OF SequenceNumber},
modifications
[3] SEQUENCE SIZE (1..ub-modifications) OF EntryModification,
modify-extensions [4] MSExtensions OPTIONAL
}
EntryModification ::= SET {
strict [0] BOOLEAN DEFAULT FALSE,
modification
CHOICE {add-attribute [1] Attribute,
remove-attribute [2] X413ATTRIBUTE.&id({AttributeTable}),
add-values [3] OrderedAttribute,
remove-values [4] OrderedAttribute}
}
OrderedAttribute ::= SEQUENCE {
attribute-type X413ATTRIBUTE.&id({AttributeTable}),
attribute-values
SEQUENCE SIZE (1..ub-attribute-values) OF
SEQUENCE {-- at least one must be specified
value
[0] X413ATTRIBUTE.&Type({AttributeTable}{@attribute-type})
OPTIONAL,
position [1] INTEGER(1..ub-attribute-values) OPTIONAL
}
}
ModifyResult ::= SET {
entries-modified
[0] SEQUENCE SIZE (1..ub-messages) OF SequenceNumber OPTIONAL,
modify-result-extensions [1] MSExtensions OPTIONAL
}
-- MS-submission Port abstract-operations
ms-message-submission ABSTRACT-OPERATION ::= {
ARGUMENT MSMessageSubmissionArgument
RESULT MSMessageSubmissionResult
ERRORS
{submission-control-violated | element-of-service-not-subscribed |
originator-invalid | recipient-improperly-specified |
inconsistent-request | security-error | unsupported-critical-function |
remote-bind-error, ... -- 1994 extension additions --, ms-extension-error
| message-group-error | entry-class-error | service-error}
LINKED {operationObject1, ...}
CODE op-ms-message-submission
}
MSMessageSubmissionArgument ::= SEQUENCE {
COMPONENTS OF
MessageSubmissionArgument -- This imported type has IMPLICIT tags --,
-- 1994 extension
submission-options [4] MSSubmissionOptions OPTIONAL
}
forwarding-request EXTENSION ::= {
SequenceNumber,
IDENTIFIED BY standard-extension:36
}
MSMessageSubmissionResult ::= CHOICE {
mts-result
SET {COMPONENTS OF
MessageSubmissionResult-- This imported type has IMPLICIT tags -- ,
-- 1994 extension
ms-message-result [4] CommonSubmissionResults OPTIONAL},
-- 1994 extension
store-draft-result [4] CommonSubmissionResults
}
--
ms-probe-submission ABSTRACT-OPERATION ::= {
ARGUMENT MSProbeSubmissionArgument
RESULT MSProbeSubmissionResult
ERRORS
{submission-control-violated | element-of-service-not-subscribed |
originator-invalid | recipient-improperly-specified |
inconsistent-request | security-error | unsupported-critical-function |
remote-bind-error, ... -- 1994 extension additions --, ms-extension-error
| message-group-error | entry-class-error | service-error}
LINKED {operationObject1, ...}
CODE op-ms-probe-submission
}
MSProbeSubmissionArgument ::= SET {
COMPONENTS OF
ProbeSubmissionArgument -- This imported type has IMPLICIT tags --,
-- 1994 extension
submission-options [4] MSSubmissionOptions OPTIONAL
}
MSProbeSubmissionResult ::= SET {
COMPONENTS OF
ProbeSubmissionResult -- This imported type has IMPLICIT tags --,
-- 1994 extension
ms-probe-result [4] CommonSubmissionResults OPTIONAL
}
ms-cancel-deferred-delivery ABSTRACT-OPERATION ::= cancel-deferred-delivery
ms-submission-control ABSTRACT-OPERATION ::= submission-control
-- Abstract-errors
attribute-error ABSTRACT-ERROR ::= {
PARAMETER
SET {problems
[0] SET SIZE (1..ub-per-entry) OF
SET {problem [0] AttributeProblem,
type [1] X413ATTRIBUTE.&id({AttributeTable}),
value
[2] X413ATTRIBUTE.&Type({AttributeTable}{@.type})
OPTIONAL}}
CODE err-attribute-error
}
AttributeProblem ::= INTEGER {
invalid-attribute-value(0), unavailable-attribute-type(1),
inappropriate-matching(2), attribute-type-not-subscribed(3),
inappropriate-for-operation(4),
-- 1994 extensions
inappropriate-modification(5), single-valued-attribute(6)
}(0..ub-error-reasons)
--
auto-action-request-error ABSTRACT-ERROR ::= {
PARAMETER
SET {problems
[0] SET SIZE (1..ub-auto-registrations) OF
SET {problem [0] AutoActionRequestProblem,
type [1] AUTO-ACTION.&id({AutoActionTable})
}}
CODE err-auto-action-request-error
}
AutoActionRequestProblem ::= INTEGER {
unavailable-auto-action-type(0),
auto-action-type-not-subscribed(1),
-- 1994 extension
not-willing-to-perform(2)}(0..ub-error-reasons)
--
delete-error ABSTRACT-ERROR ::= {
PARAMETER
SET {problems
[0] SET SIZE (1..ub-messages) OF
SET {problem [0] DeleteProblem,
sequence-number [1] SequenceNumber},
-- 1994 extension
entries-deleted
[1] SET SIZE (1..ub-messages) OF SequenceNumber OPTIONAL}
CODE err-delete-error
}
DeleteProblem ::= INTEGER {
child-entry-specified(0),
delete-restriction-problem(1),
-- 1994 extensions
new-entry-specified(2), entry-class-restriction(3), stored-message-exists(4)
}(0..ub-error-reasons)
--
fetch-restriction-error ABSTRACT-ERROR ::= {
PARAMETER
SET {problems
[0] SET SIZE (1..ub-default-registrations) OF
SET {problem [3] FetchRestrictionProblem,
restriction
CHOICE {content-type [0] OBJECT IDENTIFIER,
eit [1] MS-EITs,
attribute-length [2] INTEGER}}}
CODE err-fetch-restriction-error
}
FetchRestrictionProblem ::= INTEGER {
content-type-problem(1), eit-problem(2), maximum-length-problem(3)
}(0..ub-error-reasons)
--
invalid-parameters-error ABSTRACT-ERROR ::= {
PARAMETER NULL
CODE err-invalid-parameters-error
}
--
range-error ABSTRACT-ERROR ::= {
PARAMETER SET {problem [0] RangeProblem}
CODE err-range-error
}
RangeProblem ::= INTEGER {reversed(0)}(0..ub-error-reasons)
--
sequence-number-error ABSTRACT-ERROR ::= {
PARAMETER
SET {problems
[1] SET SIZE (1..ub-messages) OF
SET {problem [0] SequenceNumberProblem,
sequence-number [1] SequenceNumber}}
CODE err-sequence-number-error
}
SequenceNumberProblem ::= INTEGER {no-such-entry(0)}(0..ub-error-reasons)
--
service-error ABSTRACT-ERROR ::= {
PARAMETER ServiceErrorParameter
CODE err-service-error
}
ServiceErrorParameter ::= SET {
problem [0] ServiceProblem,
-- 1994 extension
supplementary-information
[1] GeneralString(SIZE (1..ub-supplementary-info-length)) OPTIONAL
}
ServiceProblem ::= INTEGER {busy(0), unavailable(1), unwilling-to-perform(2)
}(0..ub-error-reasons)
--
message-group-error ABSTRACT-ERROR ::= {
PARAMETER MessageGroupErrorParameter
CODE err-message-group-error
}
MessageGroupErrorParameter ::= SET {
problem [0] MessageGroupProblem,
name [1] MessageGroupName
}
MessageGroupProblem ::= INTEGER {
name-not-registered(0), name-already-registered(1), parent-not-registered(2),
group-not-empty(3), name-in-use(4), child-group-registered(5),
group-depth-exceeded(6)}(0..ub-error-reasons)
--
ms-extension-error ABSTRACT-ERROR ::= {
PARAMETER MSExtensionErrorParameter
CODE err-ms-extension-error
}
MSExtensionErrorParameter ::= CHOICE {
ms-extension-problem [0] MSExtensionItem,
unknown-ms-extension [1] OBJECT IDENTIFIER
}
--
register-ms-error ABSTRACT-ERROR ::= {
PARAMETER
SET {problem [0] RegistrationProblem,
registration-type [1] RegistrationTypes}
CODE err-register-ms-error
}
RegistrationProblem ::= ENUMERATED {
registration-not-supported(0), registration-improperly-specified(1),
registration-limit-exceeded(2), ... -- For future extension additions --
}
--
modify-error ABSTRACT-ERROR ::= {
PARAMETER ModifyErrorParameter
CODE err-modify-error
}
ModifyErrorParameter ::= SET {
entries-modified
[0] SEQUENCE SIZE (1..ub-messages) OF SequenceNumber OPTIONAL,
failing-entry [1] SequenceNumber,
modification-number [2] INTEGER,
problem [3] ModifyProblem
}
ModifyProblem ::= INTEGER {
attribute-not-present(0), value-not-present(1),
attribute-or-value-already-exists(2), invalid-position(3),
modify-restriction-problem(4)}(0..ub-error-reasons)
--
entry-class-error ABSTRACT-ERROR ::= {
PARAMETER EntryClassErrorParameter
CODE err-entry-class-error
}
EntryClassErrorParameter ::= SET {
entry-class [0] EntryClass,
problem
[1] BIT STRING {unsupported-entry-class(0), entry-class-not-subscribed(1),
inappropriate-entry-class(2)}
}
END -- of MS Abstract Service
-- Generated by Asnp, the ASN.1 pretty-printer of France Telecom R&D
|