You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@isis.apache.org by da...@apache.org on 2019/12/04 12:12:42 UTC

[isis] 04/09: ISIS-2205: deletes PropertyResource from applib, doesn't seem to be used anymore

This is an automated email from the ASF dual-hosted git repository.

danhaywood pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/isis.git

commit ca635ccbc24532a2d53e6e03483608a0cf79775d
Author: danhaywood <da...@haywood-associates.co.uk>
AuthorDate: Wed Dec 4 09:22:52 2019 +0000

    ISIS-2205: deletes PropertyResource from applib, doesn't seem to be used anymore
---
 .../org/apache/isis/applib/PropertyResource.java   | 73 ----------------------
 1 file changed, 73 deletions(-)

diff --git a/core/applib/src/main/java/org/apache/isis/applib/PropertyResource.java b/core/applib/src/main/java/org/apache/isis/applib/PropertyResource.java
deleted file mode 100644
index 84af182..0000000
--- a/core/applib/src/main/java/org/apache/isis/applib/PropertyResource.java
+++ /dev/null
@@ -1,73 +0,0 @@
-/*
- *  Licensed to the Apache Software Foundation (ASF) under one
- *  or more contributor license agreements.  See the NOTICE file
- *  distributed with this work for additional information
- *  regarding copyright ownership.  The ASF licenses this file
- *  to you under the Apache License, Version 2.0 (the
- *  "License"); you may not use this file except in compliance
- *  with the License.  You may obtain a copy of the License at
- *
- *        http://www.apache.org/licenses/LICENSE-2.0
- *
- *  Unless required by applicable law or agreed to in writing,
- *  software distributed under the License is distributed on an
- *  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- *  KIND, either express or implied.  See the License for the
- *  specific language governing permissions and limitations
- *  under the License.
- */
-package org.apache.isis.applib;
-
-import java.io.InputStream;
-import java.util.Map;
-import java.util.Properties;
-
-public final class PropertyResource {
-    private final Class<?> resourceContext;
-    private final String resourceName;
-
-    /**
-     * @since 2.0
-     */
-    public static PropertyResource ofClassContext(final Class<?> resourceContext, final String resourceName) {
-        return new PropertyResource(resourceContext, resourceName);
-    }
-
-    PropertyResource(final Class<?> resourceContext, final String resourceName) {
-        this.resourceContext = resourceContext;
-        this.resourceName = resourceName;
-    }
-
-    /**
-     * @since 2.0
-     */
-    public Class<?> getResourceContext() {
-        return resourceContext;
-    }
-
-    /**
-     * @since 2.0
-     */
-    public String getResourceName() {
-        return resourceName;
-    }
-
-    void loadPropsInto(final Map<String, String> props) {
-
-        final Properties properties = new Properties();
-        try {
-            try (final InputStream stream = resourceContext.getResourceAsStream(resourceName)) {
-                properties.load(stream);
-                for (Object key : properties.keySet()) {
-                    final Object value = properties.get(key);
-                    if (key instanceof String && value instanceof String) {
-                        props.put((String) key, (String) value);
-                    }
-                }
-            }
-        } catch (Exception e) {
-            throw new RuntimeException(
-                    String.format("Failed to load '%s' file relative to %s", getResourceName(), getResourceContext().getName()), e);
-        }
-    }
-}