Skip to content

Commit 56cb89c

Browse files
committed
Fixing ServiceProviderSingleLogoutRedirectUri for pre-14.1.2 and fixing exception creation for 14.1.1
1 parent be6650d commit 56cb89c

37 files changed

+214
-90
lines changed

core/src/main/python/compare_model.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""
2-
Copyright (c) 2020, 2023, Oracle and/or its affiliates.
2+
Copyright (c) 2020, 2024, Oracle and/or its affiliates.
33
Licensed under the Universal Permissive License v1.0 as shown at https://oss.oracle.com/licenses/upl.
44
55
------------
@@ -35,7 +35,7 @@
3535
from wlsdeploy.aliases.aliases import Aliases
3636
from wlsdeploy.aliases.wlst_modes import WlstModes
3737
from wlsdeploy.exception import exception_helper
38-
from wlsdeploy.exception.expection_types import ExceptionType
38+
from wlsdeploy.exception.exception_types import ExceptionType
3939
from wlsdeploy.json.json_translator import PythonToJson
4040
from wlsdeploy.logging.platform_logger import PlatformLogger
4141
from wlsdeploy.tool.compare.model_comparer import ModelComparer

core/src/main/python/create.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""
2-
Copyright (c) 2017, 2023, Oracle Corporation and/or its affiliates.
2+
Copyright (c) 2017, 2024, Oracle and/or its affiliates.
33
Licensed under the Universal Permissive License v1.0 as shown at https://oss.oracle.com/licenses/upl.
44
55
The main module for the WLSDeploy tool to create empty domains.
@@ -34,7 +34,7 @@
3434
from wlsdeploy.aliases.model_constants import TOPOLOGY
3535
from wlsdeploy.aliases.wlst_modes import WlstModes
3636
from wlsdeploy.exception import exception_helper
37-
from wlsdeploy.exception.expection_types import ExceptionType
37+
from wlsdeploy.exception.exception_types import ExceptionType
3838
from wlsdeploy.logging.platform_logger import PlatformLogger
3939
from wlsdeploy.tool.create.rcudbinfo_helper import RcuDbInfo
4040
from wlsdeploy.tool.create.domain_creator import DomainCreator

core/src/main/python/deploy.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""
2-
Copyright (c) 2017, 2023, Oracle Corporation and/or its affiliates.
2+
Copyright (c) 2017, 2024, Oracle and/or its affiliates.
33
Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl.
44
55
The entry point for the deployApps tool.
@@ -15,7 +15,7 @@
1515
# imports from local packages start here
1616
from wlsdeploy.aliases.aliases import Aliases
1717
from wlsdeploy.aliases.wlst_modes import WlstModes
18-
from wlsdeploy.exception.expection_types import ExceptionType
18+
from wlsdeploy.exception.exception_types import ExceptionType
1919
from wlsdeploy.logging.platform_logger import PlatformLogger
2020
from wlsdeploy.tool.deploy import deployer_utils
2121
from wlsdeploy.tool.deploy import model_deployer

core/src/main/python/discover.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""
2-
Copyright (c) 2017, 2023, Oracle Corporation and/or its affiliates.
2+
Copyright (c) 2017, 2024, Oracle and/or its affiliates.
33
Licensed under the Universal Permissive License v1.0 as shown at https://oss.oracle.com/licenses/upl.
44
55
The entry point for the discoverDomain tool.
@@ -31,7 +31,7 @@
3131
from wlsdeploy.aliases.validation_codes import ValidationCodes
3232
from wlsdeploy.aliases.wlst_modes import WlstModes
3333
from wlsdeploy.exception import exception_helper
34-
from wlsdeploy.exception.expection_types import ExceptionType
34+
from wlsdeploy.exception.exception_types import ExceptionType
3535
from wlsdeploy.json import json_translator
3636
from wlsdeploy.logging.platform_logger import PlatformLogger
3737
from wlsdeploy.tool.discover import discoverer

core/src/main/python/encrypt.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""
2-
Copyright (c) 2017, 2023, Oracle Corporation and/or its affiliates. All rights reserved.
2+
Copyright (c) 2017, 2024, Oracle and/or its affiliates.
33
Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl.
44
55
The main module for the WLSDeploy tool to encrypt passwords.
@@ -21,7 +21,7 @@
2121
from wlsdeploy.aliases.aliases import Aliases
2222
from wlsdeploy.aliases.wlst_modes import WlstModes
2323
from wlsdeploy.exception import exception_helper
24-
from wlsdeploy.exception.expection_types import ExceptionType
24+
from wlsdeploy.exception.exception_types import ExceptionType
2525
from wlsdeploy.logging.platform_logger import PlatformLogger
2626
from wlsdeploy.tool.encrypt import encryption_utils
2727
from wlsdeploy.util import cla_helper

core/src/main/python/extract_resource.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""
2-
Copyright (c) 2020, 2023, Oracle and/or its affiliates.
2+
Copyright (c) 2020, 2024, Oracle and/or its affiliates.
33
Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl.
44
55
The entry point for the extractDomainResource tool.
@@ -14,7 +14,7 @@
1414
from wlsdeploy.aliases.aliases import Aliases
1515
from wlsdeploy.aliases.wlst_modes import WlstModes
1616
from wlsdeploy.exception import exception_helper
17-
from wlsdeploy.exception.expection_types import ExceptionType
17+
from wlsdeploy.exception.exception_types import ExceptionType
1818
from wlsdeploy.logging.platform_logger import PlatformLogger
1919
from wlsdeploy.tool.extract.domain_resource_extractor import DomainResourceExtractor
2020
from wlsdeploy.tool.util import model_context_helper

core/src/main/python/update.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""
2-
Copyright (c) 2017, 2023, Oracle Corporation and/or its affiliates.
2+
Copyright (c) 2017, 2024, Oracle and/or its affiliates.
33
Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl.
44
55
The entry point for the updateDomain tool.
@@ -16,7 +16,7 @@
1616
# imports from local packages start here
1717
from wlsdeploy.aliases.aliases import Aliases
1818
from wlsdeploy.aliases.wlst_modes import WlstModes
19-
from wlsdeploy.exception.expection_types import ExceptionType
19+
from wlsdeploy.exception.exception_types import ExceptionType
2020
from wlsdeploy.logging.platform_logger import PlatformLogger
2121
from wlsdeploy.tool.deploy import deployer_utils
2222
from wlsdeploy.tool.deploy import model_deployer

core/src/main/python/validate.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""
2-
Copyright (c) 2017, 2023, Oracle Corporation and/or its affiliates.
2+
Copyright (c) 2017, 2024, Oracle and/or its affiliates.
33
Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl.
44
55
The WLS Deploy tooling entry point for the validateModel tool.
@@ -21,7 +21,7 @@
2121
from wlsdeploy.aliases.aliases import Aliases
2222
from wlsdeploy.aliases.wlst_modes import WlstModes
2323
from wlsdeploy.exception import exception_helper
24-
from wlsdeploy.exception.expection_types import ExceptionType
24+
from wlsdeploy.exception.exception_types import ExceptionType
2525
from wlsdeploy.logging.platform_logger import PlatformLogger
2626
from wlsdeploy.tool.util import filter_helper
2727
from wlsdeploy.tool.util import model_context_helper

core/src/main/python/wlsdeploy/aliases/aliases.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""
2-
Copyright (c) 2017, 2023, Oracle and/or its affiliates.
2+
Copyright (c) 2017, 2024, Oracle and/or its affiliates.
33
Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl.
44
"""
55
from java.lang import String
@@ -54,7 +54,7 @@
5454
from wlsdeploy.aliases.validation_codes import ValidationCodes
5555
from wlsdeploy.aliases.wlst_modes import WlstModes
5656
from wlsdeploy.exception import exception_helper
57-
from wlsdeploy.exception.expection_types import ExceptionType
57+
from wlsdeploy.exception.exception_types import ExceptionType
5858
from wlsdeploy.logging.platform_logger import PlatformLogger
5959
from wlsdeploy.util import dictionary_utils
6060
from wlsdeploy.util import string_utils

0 commit comments

Comments
 (0)