diff --git a/jipp-core/bin/collection.kt.tmpl b/jipp-core/bin/collection.kt.tmpl index 5d2abadd..ec43c0f2 100644 --- a/jipp-core/bin/collection.kt.tmpl +++ b/jipp-core/bin/collection.kt.tmpl @@ -1,5 +1,5 @@ {%- if not noheader -%} -// Copyright 2018 HP Development Company, L.P. +// Copyright {{ collection.name | camel_class | copyright_period }} HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by {{ app }}. Content taken from registry at diff --git a/jipp-core/bin/enum.kt.tmpl b/jipp-core/bin/enum.kt.tmpl index 88d6127f..bfa70388 100644 --- a/jipp-core/bin/enum.kt.tmpl +++ b/jipp-core/bin/enum.kt.tmpl @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright {{ enum.name | camel_class | copyright_period }} HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by {{ app }}. Content taken from registry at diff --git a/jipp-core/bin/enums.kt.tmpl b/jipp-core/bin/enums.kt.tmpl index cd6b2d32..cbdca24b 100644 --- a/jipp-core/bin/enums.kt.tmpl +++ b/jipp-core/bin/enums.kt.tmpl @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright {{ 'EnumTypes' | copyright_period }} HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by {{ app }}. Content taken from registry at diff --git a/jipp-core/bin/genTypes.py b/jipp-core/bin/genTypes.py index a95b063f..f8b365e9 100755 --- a/jipp-core/bin/genTypes.py +++ b/jipp-core/bin/genTypes.py @@ -15,7 +15,8 @@ import os.path import sys from jinja2 import Environment, FileSystemLoader # pip install Jinja2 -from datetime import datetime +from datetime import datetime, date +import git # Global data specs = { } @@ -27,6 +28,8 @@ pending_collections = { } out_files = [ ] proj_dir = os.path.dirname(os.path.realpath(__file__)) + "/../" +path_model_dir = proj_dir + 'src/main/java/com/hp/jipp/model/' +proj_root = os.path.dirname(os.path.realpath(__file__)) + "/../../" warns = 0 pp = pprint.PrettyPrinter(indent=2) @@ -516,6 +519,30 @@ def camel_class(string): def camel_class_path(string): return "".join([word.title() for word in re.split("[ _-]", string) if len(word) > 0]) +def copyright_period(class_name, extension = ".kt"): + file_path = os.path.abspath(path_model_dir + class_name + extension) + + if os.path.isfile(file_path): + creation_year = get_creation_year(file_path) + if creation_year and creation_year != xml_update_year: + return "%d - %d" % (creation_year, xml_update_year) + return "%d" % xml_update_year + +def get_creation_year(file_path): + try: + repository = git.Repo(proj_root); + git_add_timestamp = repository.git.log('--diff-filter=A', '--follow', '--format=%aD', '-1', '--' , file_path) + try: + if git_add_timestamp: + date_object = datetime.strptime(git_add_timestamp, "%a, %d %b %Y %H:%M:%S %z") + return date_object.year + except: + warn("Failed to parse git timestamp") + except Exception as error: + warn("Unable to initialize git, please setup git in environment path") + warn(error) + return None + java_keywords = [ "abstract", "continue", "for", "new", "switch", "assert", "default", "goto", "package", "synchronized", "boolean", "do", "if", "private", "this", "break", "double", "implements", "protected", "throw", "byte", @@ -1072,6 +1099,7 @@ def emit_code(): env.filters['camel_member'] = camel_member env.filters['spaced_title'] = spaced_title env.filters['upper'] = upper + env.filters['copyright_period'] = copyright_period emit_kind(env, 'enum.kt.tmpl', enums, emit_enum) emit_kind(env, 'keyword.java.tmpl', keywords, emit_keyword) @@ -1108,6 +1136,14 @@ def emit_code(): if elem.find('{*}title').text == "Internet Printing Protocol (IPP) Registrations": updated = elem.find('{*}updated').text +xml_update_year = None +if updated: + updated_dt_obj = datetime.strptime(updated, "%Y-%m-%d").date() + xml_update_year = updated_dt_obj.year + +if not xml_update_year: + warn("Unable to calculate updated timestamp") + parse_records(tree, "Enum Attribute Values", parse_enum) parse_records(tree, "Keyword Attribute Values", parse_keyword) diff --git a/jipp-core/bin/keyvalues.kt.tmpl b/jipp-core/bin/keyvalues.kt.tmpl index 87c4780f..469dee04 100644 --- a/jipp-core/bin/keyvalues.kt.tmpl +++ b/jipp-core/bin/keyvalues.kt.tmpl @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright {{ 'KeyValuesTypes' | copyright_period }} HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by {{ app }}. Content taken from registry at diff --git a/jipp-core/bin/keyword.java.tmpl b/jipp-core/bin/keyword.java.tmpl index 0a95b77e..e4f42294 100644 --- a/jipp-core/bin/keyword.java.tmpl +++ b/jipp-core/bin/keyword.java.tmpl @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright {{ keyword.name | camel_class | copyright_period(".java") }} HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by {{ app }}. Content taken from registry at diff --git a/jipp-core/bin/types.kt.tmpl b/jipp-core/bin/types.kt.tmpl index 7446db13..8a210a7f 100644 --- a/jipp-core/bin/types.kt.tmpl +++ b/jipp-core/bin/types.kt.tmpl @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright {{ 'Types' | copyright_period }} HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by {{ app }}. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/AccuracyUnit.java b/jipp-core/src/main/java/com/hp/jipp/model/AccuracyUnit.java index 81961997..3a8d2591 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/AccuracyUnit.java +++ b/jipp-core/src/main/java/com/hp/jipp/model/AccuracyUnit.java @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2018 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/BalingType.java b/jipp-core/src/main/java/com/hp/jipp/model/BalingType.java index 6f20881c..596578d7 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/BalingType.java +++ b/jipp-core/src/main/java/com/hp/jipp/model/BalingType.java @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2018 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/BalingWhen.java b/jipp-core/src/main/java/com/hp/jipp/model/BalingWhen.java index 6c0ff1ad..7f7403c3 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/BalingWhen.java +++ b/jipp-core/src/main/java/com/hp/jipp/model/BalingWhen.java @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2018 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/BindingReferenceEdge.java b/jipp-core/src/main/java/com/hp/jipp/model/BindingReferenceEdge.java index 6f9d2d11..aa12aab9 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/BindingReferenceEdge.java +++ b/jipp-core/src/main/java/com/hp/jipp/model/BindingReferenceEdge.java @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2018 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/BindingType.java b/jipp-core/src/main/java/com/hp/jipp/model/BindingType.java index 6a511e5c..967464f5 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/BindingType.java +++ b/jipp-core/src/main/java/com/hp/jipp/model/BindingType.java @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2018 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/ClientInfo.kt b/jipp-core/src/main/java/com/hp/jipp/model/ClientInfo.kt index 891eb9e3..7a2229fb 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/ClientInfo.kt +++ b/jipp-core/src/main/java/com/hp/jipp/model/ClientInfo.kt @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2023 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/ClientType.kt b/jipp-core/src/main/java/com/hp/jipp/model/ClientType.kt index 65ad8dfb..628d9aaf 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/ClientType.kt +++ b/jipp-core/src/main/java/com/hp/jipp/model/ClientType.kt @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2023 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/CoatingSides.java b/jipp-core/src/main/java/com/hp/jipp/model/CoatingSides.java index 9d905825..72b39442 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/CoatingSides.java +++ b/jipp-core/src/main/java/com/hp/jipp/model/CoatingSides.java @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2018 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/CoatingType.java b/jipp-core/src/main/java/com/hp/jipp/model/CoatingType.java index 7d5475f7..9ccfafbc 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/CoatingType.java +++ b/jipp-core/src/main/java/com/hp/jipp/model/CoatingType.java @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2018 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/Compression.java b/jipp-core/src/main/java/com/hp/jipp/model/Compression.java index 01960efb..28fc6aee 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/Compression.java +++ b/jipp-core/src/main/java/com/hp/jipp/model/Compression.java @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2018 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/CoverBack.kt b/jipp-core/src/main/java/com/hp/jipp/model/CoverBack.kt index fa3c7b1e..72f14e10 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/CoverBack.kt +++ b/jipp-core/src/main/java/com/hp/jipp/model/CoverBack.kt @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2018 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/CoverFront.kt b/jipp-core/src/main/java/com/hp/jipp/model/CoverFront.kt index cf446daa..842e6d16 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/CoverFront.kt +++ b/jipp-core/src/main/java/com/hp/jipp/model/CoverFront.kt @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2018 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/CoverSheetInfo.kt b/jipp-core/src/main/java/com/hp/jipp/model/CoverSheetInfo.kt index ce54fcd6..c67f8840 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/CoverSheetInfo.kt +++ b/jipp-core/src/main/java/com/hp/jipp/model/CoverSheetInfo.kt @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2018 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/CoverType.java b/jipp-core/src/main/java/com/hp/jipp/model/CoverType.java index 8f743e50..90ff4a74 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/CoverType.java +++ b/jipp-core/src/main/java/com/hp/jipp/model/CoverType.java @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2018 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/CoveringName.java b/jipp-core/src/main/java/com/hp/jipp/model/CoveringName.java index 9a80c47f..9eb22fd6 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/CoveringName.java +++ b/jipp-core/src/main/java/com/hp/jipp/model/CoveringName.java @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2018 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/DestinationAccesses.kt b/jipp-core/src/main/java/com/hp/jipp/model/DestinationAccesses.kt index f549ae0a..2780d598 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/DestinationAccesses.kt +++ b/jipp-core/src/main/java/com/hp/jipp/model/DestinationAccesses.kt @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2018 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/DestinationStatuses.kt b/jipp-core/src/main/java/com/hp/jipp/model/DestinationStatuses.kt index 7de5bc02..40b4e5c9 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/DestinationStatuses.kt +++ b/jipp-core/src/main/java/com/hp/jipp/model/DestinationStatuses.kt @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2018 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/DestinationUriReady.kt b/jipp-core/src/main/java/com/hp/jipp/model/DestinationUriReady.kt index fcab7a20..1979dab4 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/DestinationUriReady.kt +++ b/jipp-core/src/main/java/com/hp/jipp/model/DestinationUriReady.kt @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2018 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/DestinationUris.kt b/jipp-core/src/main/java/com/hp/jipp/model/DestinationUris.kt index 6f926847..81c53e9d 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/DestinationUris.kt +++ b/jipp-core/src/main/java/com/hp/jipp/model/DestinationUris.kt @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2018 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/DocumentAccess.kt b/jipp-core/src/main/java/com/hp/jipp/model/DocumentAccess.kt index 43c60f55..6b334816 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/DocumentAccess.kt +++ b/jipp-core/src/main/java/com/hp/jipp/model/DocumentAccess.kt @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2018 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/DocumentDigitalSignature.java b/jipp-core/src/main/java/com/hp/jipp/model/DocumentDigitalSignature.java index 65d62356..74b7b36b 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/DocumentDigitalSignature.java +++ b/jipp-core/src/main/java/com/hp/jipp/model/DocumentDigitalSignature.java @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2018 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/DocumentFormatDetails.kt b/jipp-core/src/main/java/com/hp/jipp/model/DocumentFormatDetails.kt index 0969c826..009cff1e 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/DocumentFormatDetails.kt +++ b/jipp-core/src/main/java/com/hp/jipp/model/DocumentFormatDetails.kt @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2022 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/DocumentFormatVaryingAttribute.java b/jipp-core/src/main/java/com/hp/jipp/model/DocumentFormatVaryingAttribute.java index f320a147..4a1aa6c2 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/DocumentFormatVaryingAttribute.java +++ b/jipp-core/src/main/java/com/hp/jipp/model/DocumentFormatVaryingAttribute.java @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2018 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/DocumentPrivacyAttribute.java b/jipp-core/src/main/java/com/hp/jipp/model/DocumentPrivacyAttribute.java index 27c6118b..65c58745 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/DocumentPrivacyAttribute.java +++ b/jipp-core/src/main/java/com/hp/jipp/model/DocumentPrivacyAttribute.java @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2018 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/DocumentPrivacyScope.java b/jipp-core/src/main/java/com/hp/jipp/model/DocumentPrivacyScope.java index 5f0850f5..326faf96 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/DocumentPrivacyScope.java +++ b/jipp-core/src/main/java/com/hp/jipp/model/DocumentPrivacyScope.java @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2018 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/DocumentState.kt b/jipp-core/src/main/java/com/hp/jipp/model/DocumentState.kt index d2cd299e..3850f5cc 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/DocumentState.kt +++ b/jipp-core/src/main/java/com/hp/jipp/model/DocumentState.kt @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2018 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/DocumentStateReason.java b/jipp-core/src/main/java/com/hp/jipp/model/DocumentStateReason.java index 0e812404..f51e8096 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/DocumentStateReason.java +++ b/jipp-core/src/main/java/com/hp/jipp/model/DocumentStateReason.java @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2018 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/EnumTypes.kt b/jipp-core/src/main/java/com/hp/jipp/model/EnumTypes.kt index f6fa6686..9cec9c62 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/EnumTypes.kt +++ b/jipp-core/src/main/java/com/hp/jipp/model/EnumTypes.kt @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2018 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/FeedOrientation.java b/jipp-core/src/main/java/com/hp/jipp/model/FeedOrientation.java index 1a79ae24..b7b940c9 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/FeedOrientation.java +++ b/jipp-core/src/main/java/com/hp/jipp/model/FeedOrientation.java @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2018 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/Finishing.kt b/jipp-core/src/main/java/com/hp/jipp/model/Finishing.kt index c628074e..5d03256c 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/Finishing.kt +++ b/jipp-core/src/main/java/com/hp/jipp/model/Finishing.kt @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2018 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/FinishingTemplate.java b/jipp-core/src/main/java/com/hp/jipp/model/FinishingTemplate.java index a17a4a2f..0c0a09af 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/FinishingTemplate.java +++ b/jipp-core/src/main/java/com/hp/jipp/model/FinishingTemplate.java @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2018 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/FinishingsCol.kt b/jipp-core/src/main/java/com/hp/jipp/model/FinishingsCol.kt index b4f65851..cd9e96eb 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/FinishingsCol.kt +++ b/jipp-core/src/main/java/com/hp/jipp/model/FinishingsCol.kt @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2018 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/FoldingDirection.java b/jipp-core/src/main/java/com/hp/jipp/model/FoldingDirection.java index f4d1e0ae..98123671 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/FoldingDirection.java +++ b/jipp-core/src/main/java/com/hp/jipp/model/FoldingDirection.java @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2018 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/FoldingReferenceEdge.java b/jipp-core/src/main/java/com/hp/jipp/model/FoldingReferenceEdge.java index 98fdb77a..4a8dee28 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/FoldingReferenceEdge.java +++ b/jipp-core/src/main/java/com/hp/jipp/model/FoldingReferenceEdge.java @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2018 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/IdentifyAction.java b/jipp-core/src/main/java/com/hp/jipp/model/IdentifyAction.java index 2d7bc799..db3973a8 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/IdentifyAction.java +++ b/jipp-core/src/main/java/com/hp/jipp/model/IdentifyAction.java @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2018 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/ImpositionTemplate.java b/jipp-core/src/main/java/com/hp/jipp/model/ImpositionTemplate.java index 8dc2f732..6a65a477 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/ImpositionTemplate.java +++ b/jipp-core/src/main/java/com/hp/jipp/model/ImpositionTemplate.java @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2018 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/ImpressionsCol.kt b/jipp-core/src/main/java/com/hp/jipp/model/ImpressionsCol.kt index 4eeb5a32..6056bf17 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/ImpressionsCol.kt +++ b/jipp-core/src/main/java/com/hp/jipp/model/ImpressionsCol.kt @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2018 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/InputAttributes.kt b/jipp-core/src/main/java/com/hp/jipp/model/InputAttributes.kt index a83c9fe1..39a71067 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/InputAttributes.kt +++ b/jipp-core/src/main/java/com/hp/jipp/model/InputAttributes.kt @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2018 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/InputColorMode.java b/jipp-core/src/main/java/com/hp/jipp/model/InputColorMode.java index 6f420de3..81e90a79 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/InputColorMode.java +++ b/jipp-core/src/main/java/com/hp/jipp/model/InputColorMode.java @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2018 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/InputContentType.java b/jipp-core/src/main/java/com/hp/jipp/model/InputContentType.java index 29fe6dcc..39549490 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/InputContentType.java +++ b/jipp-core/src/main/java/com/hp/jipp/model/InputContentType.java @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2018 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/InputFilmScanMode.java b/jipp-core/src/main/java/com/hp/jipp/model/InputFilmScanMode.java index 1a6f02b5..7fc66aca 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/InputFilmScanMode.java +++ b/jipp-core/src/main/java/com/hp/jipp/model/InputFilmScanMode.java @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2018 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/InputScanRegionsSupported.kt b/jipp-core/src/main/java/com/hp/jipp/model/InputScanRegionsSupported.kt index d543fbcb..891db841 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/InputScanRegionsSupported.kt +++ b/jipp-core/src/main/java/com/hp/jipp/model/InputScanRegionsSupported.kt @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2018 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/InputSource.java b/jipp-core/src/main/java/com/hp/jipp/model/InputSource.java index ea4d5c93..3ae274aa 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/InputSource.java +++ b/jipp-core/src/main/java/com/hp/jipp/model/InputSource.java @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2018 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/InsertSheet.kt b/jipp-core/src/main/java/com/hp/jipp/model/InsertSheet.kt index 78914362..171726bc 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/InsertSheet.kt +++ b/jipp-core/src/main/java/com/hp/jipp/model/InsertSheet.kt @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2018 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/IppFeaturesSupported.java b/jipp-core/src/main/java/com/hp/jipp/model/IppFeaturesSupported.java index 35565f0d..71d52ebb 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/IppFeaturesSupported.java +++ b/jipp-core/src/main/java/com/hp/jipp/model/IppFeaturesSupported.java @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2018 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/IppVersionsSupported.java b/jipp-core/src/main/java/com/hp/jipp/model/IppVersionsSupported.java index ce46f469..8d3aba39 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/IppVersionsSupported.java +++ b/jipp-core/src/main/java/com/hp/jipp/model/IppVersionsSupported.java @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2018 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/JobAccountType.java b/jipp-core/src/main/java/com/hp/jipp/model/JobAccountType.java index 86188db9..2a38d3be 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/JobAccountType.java +++ b/jipp-core/src/main/java/com/hp/jipp/model/JobAccountType.java @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2018 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/JobAccountingSheets.kt b/jipp-core/src/main/java/com/hp/jipp/model/JobAccountingSheets.kt index 43f875a1..808de695 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/JobAccountingSheets.kt +++ b/jipp-core/src/main/java/com/hp/jipp/model/JobAccountingSheets.kt @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2018 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/JobAccountingSheetsType.java b/jipp-core/src/main/java/com/hp/jipp/model/JobAccountingSheetsType.java index 4a552255..3cd0c938 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/JobAccountingSheetsType.java +++ b/jipp-core/src/main/java/com/hp/jipp/model/JobAccountingSheetsType.java @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2018 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/JobCompleteBefore.java b/jipp-core/src/main/java/com/hp/jipp/model/JobCompleteBefore.java index d4cc83a1..bbe13664 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/JobCompleteBefore.java +++ b/jipp-core/src/main/java/com/hp/jipp/model/JobCompleteBefore.java @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2018 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/JobConstraintsSupported.kt b/jipp-core/src/main/java/com/hp/jipp/model/JobConstraintsSupported.kt index 94351174..0fb77500 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/JobConstraintsSupported.kt +++ b/jipp-core/src/main/java/com/hp/jipp/model/JobConstraintsSupported.kt @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2018 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/JobDelayOutputUntil.java b/jipp-core/src/main/java/com/hp/jipp/model/JobDelayOutputUntil.java index e8675c52..88426583 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/JobDelayOutputUntil.java +++ b/jipp-core/src/main/java/com/hp/jipp/model/JobDelayOutputUntil.java @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2018 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/JobDestinationSpoolingSupported.java b/jipp-core/src/main/java/com/hp/jipp/model/JobDestinationSpoolingSupported.java index a8d6ca7a..3ff33387 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/JobDestinationSpoolingSupported.java +++ b/jipp-core/src/main/java/com/hp/jipp/model/JobDestinationSpoolingSupported.java @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2018 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/JobErrorAction.java b/jipp-core/src/main/java/com/hp/jipp/model/JobErrorAction.java index 465b0804..af76dd88 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/JobErrorAction.java +++ b/jipp-core/src/main/java/com/hp/jipp/model/JobErrorAction.java @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2018 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/JobErrorSheet.kt b/jipp-core/src/main/java/com/hp/jipp/model/JobErrorSheet.kt index b788f492..5c10b44d 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/JobErrorSheet.kt +++ b/jipp-core/src/main/java/com/hp/jipp/model/JobErrorSheet.kt @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2018 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/JobErrorSheetType.java b/jipp-core/src/main/java/com/hp/jipp/model/JobErrorSheetType.java index 3e4878bf..02c3c807 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/JobErrorSheetType.java +++ b/jipp-core/src/main/java/com/hp/jipp/model/JobErrorSheetType.java @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2018 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/JobErrorSheetWhen.java b/jipp-core/src/main/java/com/hp/jipp/model/JobErrorSheetWhen.java index 3d2126c6..50b1f915 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/JobErrorSheetWhen.java +++ b/jipp-core/src/main/java/com/hp/jipp/model/JobErrorSheetWhen.java @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2018 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/JobHoldUntil.java b/jipp-core/src/main/java/com/hp/jipp/model/JobHoldUntil.java index c7729ccc..5a8c765e 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/JobHoldUntil.java +++ b/jipp-core/src/main/java/com/hp/jipp/model/JobHoldUntil.java @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2018 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/JobImpressionsCol.kt b/jipp-core/src/main/java/com/hp/jipp/model/JobImpressionsCol.kt index 23904259..851a2599 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/JobImpressionsCol.kt +++ b/jipp-core/src/main/java/com/hp/jipp/model/JobImpressionsCol.kt @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2018 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/JobMediaSheetsCol.kt b/jipp-core/src/main/java/com/hp/jipp/model/JobMediaSheetsCol.kt index 8971ada0..18be8d77 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/JobMediaSheetsCol.kt +++ b/jipp-core/src/main/java/com/hp/jipp/model/JobMediaSheetsCol.kt @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2018 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/JobPagesCol.kt b/jipp-core/src/main/java/com/hp/jipp/model/JobPagesCol.kt index 95db1f83..2d3703a3 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/JobPagesCol.kt +++ b/jipp-core/src/main/java/com/hp/jipp/model/JobPagesCol.kt @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2018 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/JobPasswordEncryption.java b/jipp-core/src/main/java/com/hp/jipp/model/JobPasswordEncryption.java index 34cb7d8d..dc05cb8f 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/JobPasswordEncryption.java +++ b/jipp-core/src/main/java/com/hp/jipp/model/JobPasswordEncryption.java @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2018 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/JobPasswordRepertoireSupported.java b/jipp-core/src/main/java/com/hp/jipp/model/JobPasswordRepertoireSupported.java index f11b2d9a..6d34c219 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/JobPasswordRepertoireSupported.java +++ b/jipp-core/src/main/java/com/hp/jipp/model/JobPasswordRepertoireSupported.java @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2018 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/JobPresetsSupported.kt b/jipp-core/src/main/java/com/hp/jipp/model/JobPresetsSupported.kt index 8867a0b8..2999c34d 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/JobPresetsSupported.kt +++ b/jipp-core/src/main/java/com/hp/jipp/model/JobPresetsSupported.kt @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2018 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/JobPrivacyAttribute.java b/jipp-core/src/main/java/com/hp/jipp/model/JobPrivacyAttribute.java index 5c88a0ce..2612a2ce 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/JobPrivacyAttribute.java +++ b/jipp-core/src/main/java/com/hp/jipp/model/JobPrivacyAttribute.java @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2018 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/JobPrivacyScope.java b/jipp-core/src/main/java/com/hp/jipp/model/JobPrivacyScope.java index 9f423ef5..2d5d4a1e 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/JobPrivacyScope.java +++ b/jipp-core/src/main/java/com/hp/jipp/model/JobPrivacyScope.java @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2018 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/JobResolversSupported.kt b/jipp-core/src/main/java/com/hp/jipp/model/JobResolversSupported.kt index 830e6d68..40841738 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/JobResolversSupported.kt +++ b/jipp-core/src/main/java/com/hp/jipp/model/JobResolversSupported.kt @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2018 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/JobRetainUntil.java b/jipp-core/src/main/java/com/hp/jipp/model/JobRetainUntil.java index 51f5d475..a9a0204b 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/JobRetainUntil.java +++ b/jipp-core/src/main/java/com/hp/jipp/model/JobRetainUntil.java @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2018 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/JobSaveDisposition.kt b/jipp-core/src/main/java/com/hp/jipp/model/JobSaveDisposition.kt index 2730d0a7..0a0f2c51 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/JobSaveDisposition.kt +++ b/jipp-core/src/main/java/com/hp/jipp/model/JobSaveDisposition.kt @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2018 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/JobSaveDispositionSupported.java b/jipp-core/src/main/java/com/hp/jipp/model/JobSaveDispositionSupported.java index c1e03d4a..d93e5517 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/JobSaveDispositionSupported.java +++ b/jipp-core/src/main/java/com/hp/jipp/model/JobSaveDispositionSupported.java @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2018 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/JobSettableAttributesSupported.java b/jipp-core/src/main/java/com/hp/jipp/model/JobSettableAttributesSupported.java index 8cc9272d..49e23051 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/JobSettableAttributesSupported.java +++ b/jipp-core/src/main/java/com/hp/jipp/model/JobSettableAttributesSupported.java @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2018 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/JobSheet.java b/jipp-core/src/main/java/com/hp/jipp/model/JobSheet.java index b98f5748..6047d2bd 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/JobSheet.java +++ b/jipp-core/src/main/java/com/hp/jipp/model/JobSheet.java @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2018 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/JobSheetsCol.kt b/jipp-core/src/main/java/com/hp/jipp/model/JobSheetsCol.kt index a32a50c7..270ba6bf 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/JobSheetsCol.kt +++ b/jipp-core/src/main/java/com/hp/jipp/model/JobSheetsCol.kt @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2018 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/JobSpoolingSupported.java b/jipp-core/src/main/java/com/hp/jipp/model/JobSpoolingSupported.java index 43efb197..b5f30ffa 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/JobSpoolingSupported.java +++ b/jipp-core/src/main/java/com/hp/jipp/model/JobSpoolingSupported.java @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2018 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/JobState.kt b/jipp-core/src/main/java/com/hp/jipp/model/JobState.kt index 39a592f2..5524a127 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/JobState.kt +++ b/jipp-core/src/main/java/com/hp/jipp/model/JobState.kt @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2018 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/JobStateReason.java b/jipp-core/src/main/java/com/hp/jipp/model/JobStateReason.java index c8188ae5..3a94bb71 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/JobStateReason.java +++ b/jipp-core/src/main/java/com/hp/jipp/model/JobStateReason.java @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2018 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/JobTriggersSupported.kt b/jipp-core/src/main/java/com/hp/jipp/model/JobTriggersSupported.kt index 3a9d510d..e03f359b 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/JobTriggersSupported.kt +++ b/jipp-core/src/main/java/com/hp/jipp/model/JobTriggersSupported.kt @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2018 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/JpegFeaturesSupported.java b/jipp-core/src/main/java/com/hp/jipp/model/JpegFeaturesSupported.java index 73e52491..43fbfbfb 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/JpegFeaturesSupported.java +++ b/jipp-core/src/main/java/com/hp/jipp/model/JpegFeaturesSupported.java @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2018 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/KeyValuesTypes.kt b/jipp-core/src/main/java/com/hp/jipp/model/KeyValuesTypes.kt index da6c120e..b55f1b53 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/KeyValuesTypes.kt +++ b/jipp-core/src/main/java/com/hp/jipp/model/KeyValuesTypes.kt @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2018 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/LabelModeConfigured.java b/jipp-core/src/main/java/com/hp/jipp/model/LabelModeConfigured.java index 5a473b25..ef0cb826 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/LabelModeConfigured.java +++ b/jipp-core/src/main/java/com/hp/jipp/model/LabelModeConfigured.java @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2020 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/LaminatingSides.java b/jipp-core/src/main/java/com/hp/jipp/model/LaminatingSides.java index 1288095d..f94cd750 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/LaminatingSides.java +++ b/jipp-core/src/main/java/com/hp/jipp/model/LaminatingSides.java @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2018 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/LaminatingType.java b/jipp-core/src/main/java/com/hp/jipp/model/LaminatingType.java index 83198c83..84640c1c 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/LaminatingType.java +++ b/jipp-core/src/main/java/com/hp/jipp/model/LaminatingType.java @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2018 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/MaterialAmountUnit.java b/jipp-core/src/main/java/com/hp/jipp/model/MaterialAmountUnit.java index 961437ac..416389e2 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/MaterialAmountUnit.java +++ b/jipp-core/src/main/java/com/hp/jipp/model/MaterialAmountUnit.java @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2018 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/MaterialPurpose.java b/jipp-core/src/main/java/com/hp/jipp/model/MaterialPurpose.java index c80837da..ae0e3330 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/MaterialPurpose.java +++ b/jipp-core/src/main/java/com/hp/jipp/model/MaterialPurpose.java @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2018 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/MaterialRateUnit.java b/jipp-core/src/main/java/com/hp/jipp/model/MaterialRateUnit.java index 2952bdcf..9b2e70e9 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/MaterialRateUnit.java +++ b/jipp-core/src/main/java/com/hp/jipp/model/MaterialRateUnit.java @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2018 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/MaterialType.java b/jipp-core/src/main/java/com/hp/jipp/model/MaterialType.java index afe364c1..3ac14380 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/MaterialType.java +++ b/jipp-core/src/main/java/com/hp/jipp/model/MaterialType.java @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2018 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/MaterialsCol.kt b/jipp-core/src/main/java/com/hp/jipp/model/MaterialsCol.kt index 09428cc5..b6426680 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/MaterialsCol.kt +++ b/jipp-core/src/main/java/com/hp/jipp/model/MaterialsCol.kt @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2018 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/Media.java b/jipp-core/src/main/java/com/hp/jipp/model/Media.java index 65f85289..8c42b610 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/Media.java +++ b/jipp-core/src/main/java/com/hp/jipp/model/Media.java @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2018 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/MediaBackCoating.java b/jipp-core/src/main/java/com/hp/jipp/model/MediaBackCoating.java index 5155401e..62d4cd3f 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/MediaBackCoating.java +++ b/jipp-core/src/main/java/com/hp/jipp/model/MediaBackCoating.java @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2018 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/MediaCol.kt b/jipp-core/src/main/java/com/hp/jipp/model/MediaCol.kt index 43df8220..6adb70c0 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/MediaCol.kt +++ b/jipp-core/src/main/java/com/hp/jipp/model/MediaCol.kt @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2018 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/MediaColDatabase.kt b/jipp-core/src/main/java/com/hp/jipp/model/MediaColDatabase.kt index 49765171..573d7515 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/MediaColDatabase.kt +++ b/jipp-core/src/main/java/com/hp/jipp/model/MediaColDatabase.kt @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2018 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/MediaColor.java b/jipp-core/src/main/java/com/hp/jipp/model/MediaColor.java index d4b43399..e1464e99 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/MediaColor.java +++ b/jipp-core/src/main/java/com/hp/jipp/model/MediaColor.java @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2018 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/MediaGrain.java b/jipp-core/src/main/java/com/hp/jipp/model/MediaGrain.java index bf5f6271..62de9be2 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/MediaGrain.java +++ b/jipp-core/src/main/java/com/hp/jipp/model/MediaGrain.java @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2018 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/MediaOverprint.kt b/jipp-core/src/main/java/com/hp/jipp/model/MediaOverprint.kt index ec5b8df9..8f27c43e 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/MediaOverprint.kt +++ b/jipp-core/src/main/java/com/hp/jipp/model/MediaOverprint.kt @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2023 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/MediaPrePrinted.java b/jipp-core/src/main/java/com/hp/jipp/model/MediaPrePrinted.java index 4c3ee775..c44fa262 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/MediaPrePrinted.java +++ b/jipp-core/src/main/java/com/hp/jipp/model/MediaPrePrinted.java @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2018 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/MediaRecycled.java b/jipp-core/src/main/java/com/hp/jipp/model/MediaRecycled.java index 727e2f4c..96c4e0ac 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/MediaRecycled.java +++ b/jipp-core/src/main/java/com/hp/jipp/model/MediaRecycled.java @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2018 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/MediaSheetsCol.kt b/jipp-core/src/main/java/com/hp/jipp/model/MediaSheetsCol.kt index 12933d78..93548704 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/MediaSheetsCol.kt +++ b/jipp-core/src/main/java/com/hp/jipp/model/MediaSheetsCol.kt @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2018 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/MediaSizeSupported.kt b/jipp-core/src/main/java/com/hp/jipp/model/MediaSizeSupported.kt index 1b23cb79..c63fa449 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/MediaSizeSupported.kt +++ b/jipp-core/src/main/java/com/hp/jipp/model/MediaSizeSupported.kt @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2018 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/MediaSource.java b/jipp-core/src/main/java/com/hp/jipp/model/MediaSource.java index bc01159b..747c182c 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/MediaSource.java +++ b/jipp-core/src/main/java/com/hp/jipp/model/MediaSource.java @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2018 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/MediaSourceFeedDirection.java b/jipp-core/src/main/java/com/hp/jipp/model/MediaSourceFeedDirection.java index 10ff6679..41d42c14 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/MediaSourceFeedDirection.java +++ b/jipp-core/src/main/java/com/hp/jipp/model/MediaSourceFeedDirection.java @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2018 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/MediaTooth.java b/jipp-core/src/main/java/com/hp/jipp/model/MediaTooth.java index ef6ed97e..8edf652f 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/MediaTooth.java +++ b/jipp-core/src/main/java/com/hp/jipp/model/MediaTooth.java @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2018 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/MediaTracking.java b/jipp-core/src/main/java/com/hp/jipp/model/MediaTracking.java index 28d34fbb..d05e9a55 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/MediaTracking.java +++ b/jipp-core/src/main/java/com/hp/jipp/model/MediaTracking.java @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2018 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/MediaType.java b/jipp-core/src/main/java/com/hp/jipp/model/MediaType.java index 67370b68..6062a5b5 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/MediaType.java +++ b/jipp-core/src/main/java/com/hp/jipp/model/MediaType.java @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2018 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/MultipleDocumentHandling.java b/jipp-core/src/main/java/com/hp/jipp/model/MultipleDocumentHandling.java index f803bbdf..768bf6df 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/MultipleDocumentHandling.java +++ b/jipp-core/src/main/java/com/hp/jipp/model/MultipleDocumentHandling.java @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2018 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/MultipleObjectHandling.java b/jipp-core/src/main/java/com/hp/jipp/model/MultipleObjectHandling.java index 0f38dd36..9b1e7be2 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/MultipleObjectHandling.java +++ b/jipp-core/src/main/java/com/hp/jipp/model/MultipleObjectHandling.java @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2018 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/MultipleOperationTimeOutAction.java b/jipp-core/src/main/java/com/hp/jipp/model/MultipleOperationTimeOutAction.java index da938052..edab0314 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/MultipleOperationTimeOutAction.java +++ b/jipp-core/src/main/java/com/hp/jipp/model/MultipleOperationTimeOutAction.java @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2018 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/NotifyEvent.java b/jipp-core/src/main/java/com/hp/jipp/model/NotifyEvent.java index ec8a78c7..498c734c 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/NotifyEvent.java +++ b/jipp-core/src/main/java/com/hp/jipp/model/NotifyEvent.java @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2018 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/NotifyPullMethod.java b/jipp-core/src/main/java/com/hp/jipp/model/NotifyPullMethod.java index 4c92bdbe..9d6742ed 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/NotifyPullMethod.java +++ b/jipp-core/src/main/java/com/hp/jipp/model/NotifyPullMethod.java @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2018 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/Operation.kt b/jipp-core/src/main/java/com/hp/jipp/model/Operation.kt index 96b6c1e6..e8e05651 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/Operation.kt +++ b/jipp-core/src/main/java/com/hp/jipp/model/Operation.kt @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2018 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/Orientation.kt b/jipp-core/src/main/java/com/hp/jipp/model/Orientation.kt index 5742ffc9..653f55cb 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/Orientation.kt +++ b/jipp-core/src/main/java/com/hp/jipp/model/Orientation.kt @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2018 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/OutputAttributes.kt b/jipp-core/src/main/java/com/hp/jipp/model/OutputAttributes.kt index 55cc1b78..0071e740 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/OutputAttributes.kt +++ b/jipp-core/src/main/java/com/hp/jipp/model/OutputAttributes.kt @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2018 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/OutputBin.java b/jipp-core/src/main/java/com/hp/jipp/model/OutputBin.java index 54b3c01f..739c3e4c 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/OutputBin.java +++ b/jipp-core/src/main/java/com/hp/jipp/model/OutputBin.java @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2018 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/Overrides.kt b/jipp-core/src/main/java/com/hp/jipp/model/Overrides.kt index a875d3ab..f08d7f70 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/Overrides.kt +++ b/jipp-core/src/main/java/com/hp/jipp/model/Overrides.kt @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2018 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/PageDelivery.java b/jipp-core/src/main/java/com/hp/jipp/model/PageDelivery.java index 11ff0ccb..1d4c0d30 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/PageDelivery.java +++ b/jipp-core/src/main/java/com/hp/jipp/model/PageDelivery.java @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2018 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/PageOrderReceived.java b/jipp-core/src/main/java/com/hp/jipp/model/PageOrderReceived.java index 99f29c40..69e35e73 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/PageOrderReceived.java +++ b/jipp-core/src/main/java/com/hp/jipp/model/PageOrderReceived.java @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2018 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/PagesCol.kt b/jipp-core/src/main/java/com/hp/jipp/model/PagesCol.kt index d5561e02..8cece4d8 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/PagesCol.kt +++ b/jipp-core/src/main/java/com/hp/jipp/model/PagesCol.kt @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2018 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/PclmRasterBackSide.java b/jipp-core/src/main/java/com/hp/jipp/model/PclmRasterBackSide.java index 43a01c9a..bc90551a 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/PclmRasterBackSide.java +++ b/jipp-core/src/main/java/com/hp/jipp/model/PclmRasterBackSide.java @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2018 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/PdfFeaturesSupported.java b/jipp-core/src/main/java/com/hp/jipp/model/PdfFeaturesSupported.java index bcf53843..924bcd14 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/PdfFeaturesSupported.java +++ b/jipp-core/src/main/java/com/hp/jipp/model/PdfFeaturesSupported.java @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2018 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/PdfVersionsSupported.java b/jipp-core/src/main/java/com/hp/jipp/model/PdfVersionsSupported.java index e841a3ea..77cdaad2 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/PdfVersionsSupported.java +++ b/jipp-core/src/main/java/com/hp/jipp/model/PdfVersionsSupported.java @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2018 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/PdlInitFile.kt b/jipp-core/src/main/java/com/hp/jipp/model/PdlInitFile.kt index bed45c86..23261dc7 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/PdlInitFile.kt +++ b/jipp-core/src/main/java/com/hp/jipp/model/PdlInitFile.kt @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2018 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/PdlInitFileSupported.java b/jipp-core/src/main/java/com/hp/jipp/model/PdlInitFileSupported.java index 8ad07384..8be8181f 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/PdlInitFileSupported.java +++ b/jipp-core/src/main/java/com/hp/jipp/model/PdlInitFileSupported.java @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2018 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/PdlOverrideSupported.java b/jipp-core/src/main/java/com/hp/jipp/model/PdlOverrideSupported.java index 172281dc..e5b04f8f 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/PdlOverrideSupported.java +++ b/jipp-core/src/main/java/com/hp/jipp/model/PdlOverrideSupported.java @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2018 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/PlatformShape.java b/jipp-core/src/main/java/com/hp/jipp/model/PlatformShape.java index a4ec1462..41c5ddaf 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/PlatformShape.java +++ b/jipp-core/src/main/java/com/hp/jipp/model/PlatformShape.java @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2018 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/PowerCalendarPolicyCol.kt b/jipp-core/src/main/java/com/hp/jipp/model/PowerCalendarPolicyCol.kt index c3bb146e..2f2672a5 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/PowerCalendarPolicyCol.kt +++ b/jipp-core/src/main/java/com/hp/jipp/model/PowerCalendarPolicyCol.kt @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2020 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/PowerEventPolicyCol.kt b/jipp-core/src/main/java/com/hp/jipp/model/PowerEventPolicyCol.kt index 1aeb9a1b..d5d0b867 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/PowerEventPolicyCol.kt +++ b/jipp-core/src/main/java/com/hp/jipp/model/PowerEventPolicyCol.kt @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2020 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/PowerLogCol.kt b/jipp-core/src/main/java/com/hp/jipp/model/PowerLogCol.kt index bab15801..08728e94 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/PowerLogCol.kt +++ b/jipp-core/src/main/java/com/hp/jipp/model/PowerLogCol.kt @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2020 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/PowerState.kt b/jipp-core/src/main/java/com/hp/jipp/model/PowerState.kt index aac65e5d..bfc90066 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/PowerState.kt +++ b/jipp-core/src/main/java/com/hp/jipp/model/PowerState.kt @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2020 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/PowerStateCapabilitiesCol.kt b/jipp-core/src/main/java/com/hp/jipp/model/PowerStateCapabilitiesCol.kt index 2d4d6da4..dc560214 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/PowerStateCapabilitiesCol.kt +++ b/jipp-core/src/main/java/com/hp/jipp/model/PowerStateCapabilitiesCol.kt @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2020 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/PowerStateCountersCol.kt b/jipp-core/src/main/java/com/hp/jipp/model/PowerStateCountersCol.kt index 00629ce1..37ab4875 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/PowerStateCountersCol.kt +++ b/jipp-core/src/main/java/com/hp/jipp/model/PowerStateCountersCol.kt @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2020 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/PowerStateMonitorCol.kt b/jipp-core/src/main/java/com/hp/jipp/model/PowerStateMonitorCol.kt index 2b561949..13d5e7a9 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/PowerStateMonitorCol.kt +++ b/jipp-core/src/main/java/com/hp/jipp/model/PowerStateMonitorCol.kt @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2020 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/PowerStateTransitionsCol.kt b/jipp-core/src/main/java/com/hp/jipp/model/PowerStateTransitionsCol.kt index 00737966..3df1871a 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/PowerStateTransitionsCol.kt +++ b/jipp-core/src/main/java/com/hp/jipp/model/PowerStateTransitionsCol.kt @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2020 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/PowerTimeoutPolicyCol.kt b/jipp-core/src/main/java/com/hp/jipp/model/PowerTimeoutPolicyCol.kt index 9fb7ebd0..933315bd 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/PowerTimeoutPolicyCol.kt +++ b/jipp-core/src/main/java/com/hp/jipp/model/PowerTimeoutPolicyCol.kt @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2020 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/PresentationDirectionNumberUp.java b/jipp-core/src/main/java/com/hp/jipp/model/PresentationDirectionNumberUp.java index ee82e9df..4eeaa817 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/PresentationDirectionNumberUp.java +++ b/jipp-core/src/main/java/com/hp/jipp/model/PresentationDirectionNumberUp.java @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2018 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/PresetName.java b/jipp-core/src/main/java/com/hp/jipp/model/PresetName.java index 1244e425..0fd1c7d4 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/PresetName.java +++ b/jipp-core/src/main/java/com/hp/jipp/model/PresetName.java @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2018 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/PrintAccuracy.kt b/jipp-core/src/main/java/com/hp/jipp/model/PrintAccuracy.kt index 618c121a..02587f38 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/PrintAccuracy.kt +++ b/jipp-core/src/main/java/com/hp/jipp/model/PrintAccuracy.kt @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2018 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/PrintAccuracySupported.kt b/jipp-core/src/main/java/com/hp/jipp/model/PrintAccuracySupported.kt index 652accdf..fe7aa30c 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/PrintAccuracySupported.kt +++ b/jipp-core/src/main/java/com/hp/jipp/model/PrintAccuracySupported.kt @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2018 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/PrintBase.java b/jipp-core/src/main/java/com/hp/jipp/model/PrintBase.java index fe724010..af487644 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/PrintBase.java +++ b/jipp-core/src/main/java/com/hp/jipp/model/PrintBase.java @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2018 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/PrintColorMode.java b/jipp-core/src/main/java/com/hp/jipp/model/PrintColorMode.java index 589a53ea..9eee5165 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/PrintColorMode.java +++ b/jipp-core/src/main/java/com/hp/jipp/model/PrintColorMode.java @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2018 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/PrintColorModeIccProfiles.kt b/jipp-core/src/main/java/com/hp/jipp/model/PrintColorModeIccProfiles.kt index 70940a57..8ee0e56f 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/PrintColorModeIccProfiles.kt +++ b/jipp-core/src/main/java/com/hp/jipp/model/PrintColorModeIccProfiles.kt @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2023 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/PrintContentOptimize.java b/jipp-core/src/main/java/com/hp/jipp/model/PrintContentOptimize.java index 6f86e64a..baf3ed44 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/PrintContentOptimize.java +++ b/jipp-core/src/main/java/com/hp/jipp/model/PrintContentOptimize.java @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2018 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/PrintObjects.kt b/jipp-core/src/main/java/com/hp/jipp/model/PrintObjects.kt index 481f903d..2750b122 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/PrintObjects.kt +++ b/jipp-core/src/main/java/com/hp/jipp/model/PrintObjects.kt @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2018 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/PrintQuality.kt b/jipp-core/src/main/java/com/hp/jipp/model/PrintQuality.kt index e96615dc..60acc08b 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/PrintQuality.kt +++ b/jipp-core/src/main/java/com/hp/jipp/model/PrintQuality.kt @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2018 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/PrintRenderingIntent.java b/jipp-core/src/main/java/com/hp/jipp/model/PrintRenderingIntent.java index d2d37e1e..ae70be72 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/PrintRenderingIntent.java +++ b/jipp-core/src/main/java/com/hp/jipp/model/PrintRenderingIntent.java @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2018 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/PrintScaling.java b/jipp-core/src/main/java/com/hp/jipp/model/PrintScaling.java index 6f56c0ad..00fd8e5e 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/PrintScaling.java +++ b/jipp-core/src/main/java/com/hp/jipp/model/PrintScaling.java @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2018 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/PrintSupports.java b/jipp-core/src/main/java/com/hp/jipp/model/PrintSupports.java index 69096386..2130fb56 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/PrintSupports.java +++ b/jipp-core/src/main/java/com/hp/jipp/model/PrintSupports.java @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2018 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/PrinterContactCol.kt b/jipp-core/src/main/java/com/hp/jipp/model/PrinterContactCol.kt index ab2a3f04..a5f54714 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/PrinterContactCol.kt +++ b/jipp-core/src/main/java/com/hp/jipp/model/PrinterContactCol.kt @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2020 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/PrinterIccProfiles.kt b/jipp-core/src/main/java/com/hp/jipp/model/PrinterIccProfiles.kt index df296d10..1fe6c0e7 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/PrinterIccProfiles.kt +++ b/jipp-core/src/main/java/com/hp/jipp/model/PrinterIccProfiles.kt @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2018 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/PrinterKind.java b/jipp-core/src/main/java/com/hp/jipp/model/PrinterKind.java index 6eba766f..6ce6c36e 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/PrinterKind.java +++ b/jipp-core/src/main/java/com/hp/jipp/model/PrinterKind.java @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2018 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/PrinterServiceType.java b/jipp-core/src/main/java/com/hp/jipp/model/PrinterServiceType.java index e0e92883..846448e3 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/PrinterServiceType.java +++ b/jipp-core/src/main/java/com/hp/jipp/model/PrinterServiceType.java @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2020 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/PrinterSettableAttributesSupported.java b/jipp-core/src/main/java/com/hp/jipp/model/PrinterSettableAttributesSupported.java index 1696c4c4..abd0ac6f 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/PrinterSettableAttributesSupported.java +++ b/jipp-core/src/main/java/com/hp/jipp/model/PrinterSettableAttributesSupported.java @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2018 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/PrinterState.kt b/jipp-core/src/main/java/com/hp/jipp/model/PrinterState.kt index ff20007b..1c9082b2 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/PrinterState.kt +++ b/jipp-core/src/main/java/com/hp/jipp/model/PrinterState.kt @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2018 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/PrinterStateReason.java b/jipp-core/src/main/java/com/hp/jipp/model/PrinterStateReason.java index 766796b0..03b1ce55 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/PrinterStateReason.java +++ b/jipp-core/src/main/java/com/hp/jipp/model/PrinterStateReason.java @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2018 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/PrinterVolumeSupported.kt b/jipp-core/src/main/java/com/hp/jipp/model/PrinterVolumeSupported.kt index 996cc843..919c8a5f 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/PrinterVolumeSupported.kt +++ b/jipp-core/src/main/java/com/hp/jipp/model/PrinterVolumeSupported.kt @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2018 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/PrinterXriSupported.kt b/jipp-core/src/main/java/com/hp/jipp/model/PrinterXriSupported.kt index f7431015..6cf564d6 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/PrinterXriSupported.kt +++ b/jipp-core/src/main/java/com/hp/jipp/model/PrinterXriSupported.kt @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2018 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/ProofPrint.kt b/jipp-core/src/main/java/com/hp/jipp/model/ProofPrint.kt index 0afc223f..16407b83 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/ProofPrint.kt +++ b/jipp-core/src/main/java/com/hp/jipp/model/ProofPrint.kt @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2018 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/PunchingReferenceEdge.java b/jipp-core/src/main/java/com/hp/jipp/model/PunchingReferenceEdge.java index 57059602..64d9f232 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/PunchingReferenceEdge.java +++ b/jipp-core/src/main/java/com/hp/jipp/model/PunchingReferenceEdge.java @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2018 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/PwgRasterDocumentSheetBack.java b/jipp-core/src/main/java/com/hp/jipp/model/PwgRasterDocumentSheetBack.java index 36d81046..7a1dbf7d 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/PwgRasterDocumentSheetBack.java +++ b/jipp-core/src/main/java/com/hp/jipp/model/PwgRasterDocumentSheetBack.java @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2018 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/PwgRasterDocumentTypeSupported.java b/jipp-core/src/main/java/com/hp/jipp/model/PwgRasterDocumentTypeSupported.java index 9c121948..4977c2bb 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/PwgRasterDocumentTypeSupported.java +++ b/jipp-core/src/main/java/com/hp/jipp/model/PwgRasterDocumentTypeSupported.java @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2018 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/RequestedAttribute.java b/jipp-core/src/main/java/com/hp/jipp/model/RequestedAttribute.java index c3ac433a..b5667f1f 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/RequestedAttribute.java +++ b/jipp-core/src/main/java/com/hp/jipp/model/RequestedAttribute.java @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2018 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/ResourceState.kt b/jipp-core/src/main/java/com/hp/jipp/model/ResourceState.kt index 2bf48948..b3b57ddb 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/ResourceState.kt +++ b/jipp-core/src/main/java/com/hp/jipp/model/ResourceState.kt @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2020 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/ResourceType.java b/jipp-core/src/main/java/com/hp/jipp/model/ResourceType.java index c558d129..d81f9bc3 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/ResourceType.java +++ b/jipp-core/src/main/java/com/hp/jipp/model/ResourceType.java @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2020 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/SaveDisposition.java b/jipp-core/src/main/java/com/hp/jipp/model/SaveDisposition.java index 08d78f60..a473e119 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/SaveDisposition.java +++ b/jipp-core/src/main/java/com/hp/jipp/model/SaveDisposition.java @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2018 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/SaveInfoSupported.java b/jipp-core/src/main/java/com/hp/jipp/model/SaveInfoSupported.java index ba289e65..d6ac8b79 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/SaveInfoSupported.java +++ b/jipp-core/src/main/java/com/hp/jipp/model/SaveInfoSupported.java @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2018 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/SeparatorSheets.kt b/jipp-core/src/main/java/com/hp/jipp/model/SeparatorSheets.kt index 76c70b7d..19f94202 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/SeparatorSheets.kt +++ b/jipp-core/src/main/java/com/hp/jipp/model/SeparatorSheets.kt @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2018 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/SeparatorSheetsType.java b/jipp-core/src/main/java/com/hp/jipp/model/SeparatorSheetsType.java index 010ac324..3e22e781 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/SeparatorSheetsType.java +++ b/jipp-core/src/main/java/com/hp/jipp/model/SeparatorSheetsType.java @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2018 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/Sides.java b/jipp-core/src/main/java/com/hp/jipp/model/Sides.java index 21fba7fc..6cf23b29 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/Sides.java +++ b/jipp-core/src/main/java/com/hp/jipp/model/Sides.java @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2018 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/Status.kt b/jipp-core/src/main/java/com/hp/jipp/model/Status.kt index 76d9e286..38e83f61 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/Status.kt +++ b/jipp-core/src/main/java/com/hp/jipp/model/Status.kt @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2018 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/StitchingMethod.java b/jipp-core/src/main/java/com/hp/jipp/model/StitchingMethod.java index 62e2c517..af222865 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/StitchingMethod.java +++ b/jipp-core/src/main/java/com/hp/jipp/model/StitchingMethod.java @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2018 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/StitchingReferenceEdge.java b/jipp-core/src/main/java/com/hp/jipp/model/StitchingReferenceEdge.java index cdeca191..255e2b5e 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/StitchingReferenceEdge.java +++ b/jipp-core/src/main/java/com/hp/jipp/model/StitchingReferenceEdge.java @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2018 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/StitchingSupported.java b/jipp-core/src/main/java/com/hp/jipp/model/StitchingSupported.java index cb26f8ee..2b9cd29a 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/StitchingSupported.java +++ b/jipp-core/src/main/java/com/hp/jipp/model/StitchingSupported.java @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2018 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/SubscriptionPrivacyAttribute.java b/jipp-core/src/main/java/com/hp/jipp/model/SubscriptionPrivacyAttribute.java index e2782311..01845909 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/SubscriptionPrivacyAttribute.java +++ b/jipp-core/src/main/java/com/hp/jipp/model/SubscriptionPrivacyAttribute.java @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2018 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/SubscriptionPrivacyScope.java b/jipp-core/src/main/java/com/hp/jipp/model/SubscriptionPrivacyScope.java index f3b25aec..6affdfd4 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/SubscriptionPrivacyScope.java +++ b/jipp-core/src/main/java/com/hp/jipp/model/SubscriptionPrivacyScope.java @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2018 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/SystemConfiguredPrinters.kt b/jipp-core/src/main/java/com/hp/jipp/model/SystemConfiguredPrinters.kt index 43798731..a8b923e6 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/SystemConfiguredPrinters.kt +++ b/jipp-core/src/main/java/com/hp/jipp/model/SystemConfiguredPrinters.kt @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2020 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/SystemConfiguredResources.kt b/jipp-core/src/main/java/com/hp/jipp/model/SystemConfiguredResources.kt index 08180a0a..f82d74b1 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/SystemConfiguredResources.kt +++ b/jipp-core/src/main/java/com/hp/jipp/model/SystemConfiguredResources.kt @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2020 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/SystemState.kt b/jipp-core/src/main/java/com/hp/jipp/model/SystemState.kt index 88ae4ded..77182f74 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/SystemState.kt +++ b/jipp-core/src/main/java/com/hp/jipp/model/SystemState.kt @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2018 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/SystemTimeSource.java b/jipp-core/src/main/java/com/hp/jipp/model/SystemTimeSource.java index 7a0d8d31..fa29ef0a 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/SystemTimeSource.java +++ b/jipp-core/src/main/java/com/hp/jipp/model/SystemTimeSource.java @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2020 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/TimeoutPredicate.java b/jipp-core/src/main/java/com/hp/jipp/model/TimeoutPredicate.java index a62f724d..078c0104 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/TimeoutPredicate.java +++ b/jipp-core/src/main/java/com/hp/jipp/model/TimeoutPredicate.java @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2018 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/TransmissionStatus.kt b/jipp-core/src/main/java/com/hp/jipp/model/TransmissionStatus.kt index 043563b0..e8402f93 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/TransmissionStatus.kt +++ b/jipp-core/src/main/java/com/hp/jipp/model/TransmissionStatus.kt @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2018 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/TrimmingReferenceEdge.java b/jipp-core/src/main/java/com/hp/jipp/model/TrimmingReferenceEdge.java index a4a8cc1e..497037e8 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/TrimmingReferenceEdge.java +++ b/jipp-core/src/main/java/com/hp/jipp/model/TrimmingReferenceEdge.java @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2018 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/TrimmingType.java b/jipp-core/src/main/java/com/hp/jipp/model/TrimmingType.java index 881b9978..18de99a3 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/TrimmingType.java +++ b/jipp-core/src/main/java/com/hp/jipp/model/TrimmingType.java @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2018 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/TrimmingWhen.java b/jipp-core/src/main/java/com/hp/jipp/model/TrimmingWhen.java index 98d478de..02d675e5 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/TrimmingWhen.java +++ b/jipp-core/src/main/java/com/hp/jipp/model/TrimmingWhen.java @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2018 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/Types.kt b/jipp-core/src/main/java/com/hp/jipp/model/Types.kt index b208ce23..594f233f 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/Types.kt +++ b/jipp-core/src/main/java/com/hp/jipp/model/Types.kt @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2018 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/UriAuthenticationSupported.java b/jipp-core/src/main/java/com/hp/jipp/model/UriAuthenticationSupported.java index 7906b114..7c683022 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/UriAuthenticationSupported.java +++ b/jipp-core/src/main/java/com/hp/jipp/model/UriAuthenticationSupported.java @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2018 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/UriSecuritySupported.java b/jipp-core/src/main/java/com/hp/jipp/model/UriSecuritySupported.java index 6324e5af..1c82c492 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/UriSecuritySupported.java +++ b/jipp-core/src/main/java/com/hp/jipp/model/UriSecuritySupported.java @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2018 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/WhichJobs.java b/jipp-core/src/main/java/com/hp/jipp/model/WhichJobs.java index 8a858d8c..b11d482b 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/WhichJobs.java +++ b/jipp-core/src/main/java/com/hp/jipp/model/WhichJobs.java @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2018 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/WhichPrinter.java b/jipp-core/src/main/java/com/hp/jipp/model/WhichPrinter.java index 628578be..9a2f80b3 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/WhichPrinter.java +++ b/jipp-core/src/main/java/com/hp/jipp/model/WhichPrinter.java @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2020 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/XImagePosition.java b/jipp-core/src/main/java/com/hp/jipp/model/XImagePosition.java index ce1b23ae..951aa3be 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/XImagePosition.java +++ b/jipp-core/src/main/java/com/hp/jipp/model/XImagePosition.java @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2018 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/XriAuthenticationSupported.java b/jipp-core/src/main/java/com/hp/jipp/model/XriAuthenticationSupported.java index 45c232fd..427dcf94 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/XriAuthenticationSupported.java +++ b/jipp-core/src/main/java/com/hp/jipp/model/XriAuthenticationSupported.java @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2018 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/XriSecuritySupported.java b/jipp-core/src/main/java/com/hp/jipp/model/XriSecuritySupported.java index 97477c1c..2bda8949 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/XriSecuritySupported.java +++ b/jipp-core/src/main/java/com/hp/jipp/model/XriSecuritySupported.java @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2018 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at diff --git a/jipp-core/src/main/java/com/hp/jipp/model/YImagePosition.java b/jipp-core/src/main/java/com/hp/jipp/model/YImagePosition.java index 98f11a68..96f51a72 100644 --- a/jipp-core/src/main/java/com/hp/jipp/model/YImagePosition.java +++ b/jipp-core/src/main/java/com/hp/jipp/model/YImagePosition.java @@ -1,4 +1,4 @@ -// Copyright 2018 HP Development Company, L.P. +// Copyright 2018 - 2024 HP Development Company, L.P. // SPDX-License-Identifier: MIT // // DO NOT MODIFY. Code is auto-generated by genTypes.py. Content taken from registry at