From 7fa29381654d8d3a29cda9c7caff3a07966bae9c Mon Sep 17 00:00:00 2001 From: Jayasri Radhakrishnan Date: Mon, 9 Sep 2024 15:43:22 +0100 Subject: [PATCH] Add model properties --- .../rosetta/common/model/ModelProperties.java | 25 +++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 src/main/java/com/regnosys/rosetta/common/model/ModelProperties.java diff --git a/src/main/java/com/regnosys/rosetta/common/model/ModelProperties.java b/src/main/java/com/regnosys/rosetta/common/model/ModelProperties.java new file mode 100644 index 00000000..74bfd582 --- /dev/null +++ b/src/main/java/com/regnosys/rosetta/common/model/ModelProperties.java @@ -0,0 +1,25 @@ +package com.regnosys.rosetta.common.model; + +/*- + * ============== + * Rune Common + * ============== + * Copyright (C) 2018 - 2024 REGnosys + * ============== + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ============== + */ + +public class ModelProperties { + public static final String BASE_RESOURCES_PATH = "base.resource.path"; +}