Repository: karaf Updated Branches: refs/heads/karaf-2.3.x e3c3af996 -> 068547f3a
Fix license header in PropertiesInstaller Project: http://git-wip-us.apache.org/repos/asf/karaf/repo Commit: http://git-wip-us.apache.org/repos/asf/karaf/commit/068547f3 Tree: http://git-wip-us.apache.org/repos/asf/karaf/tree/068547f3 Diff: http://git-wip-us.apache.org/repos/asf/karaf/diff/068547f3 Branch: refs/heads/karaf-2.3.x Commit: 068547f3a8eb2e8dc16ade71a700be43005d4ee0 Parents: e3c3af9 Author: Jean-Baptiste Onofré <[email protected]> Authored: Sat Feb 22 10:57:09 2014 +0100 Committer: Jean-Baptiste Onofré <[email protected]> Committed: Sat Feb 22 10:58:46 2014 +0100 ---------------------------------------------------------------------- .../modules/properties/PropertiesInstaller.java | 20 +++++++++++++++++--- 1 file changed, 17 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/karaf/blob/068547f3/jaas/modules/src/main/java/org/apache/karaf/jaas/modules/properties/PropertiesInstaller.java ---------------------------------------------------------------------- diff --git a/jaas/modules/src/main/java/org/apache/karaf/jaas/modules/properties/PropertiesInstaller.java b/jaas/modules/src/main/java/org/apache/karaf/jaas/modules/properties/PropertiesInstaller.java index 730e97e..d8bcacd 100644 --- a/jaas/modules/src/main/java/org/apache/karaf/jaas/modules/properties/PropertiesInstaller.java +++ b/jaas/modules/src/main/java/org/apache/karaf/jaas/modules/properties/PropertiesInstaller.java @@ -1,3 +1,19 @@ +/* + * 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.karaf.jaas.modules.properties; import java.io.File; @@ -14,11 +30,9 @@ public class PropertiesInstaller implements ArtifactInstaller { private String usersFileName; private File usersFile; - - + PropertiesLoginModule propertiesLoginModule; - public PropertiesInstaller(PropertiesLoginModule propertiesLoginModule, String usersFile) { this.propertiesLoginModule = propertiesLoginModule; this.usersFileName = usersFile;
