Repository: karaf Updated Branches: refs/heads/karaf-2.x a60cec5bd -> e99ef0f23
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/e99ef0f2 Tree: http://git-wip-us.apache.org/repos/asf/karaf/tree/e99ef0f2 Diff: http://git-wip-us.apache.org/repos/asf/karaf/diff/e99ef0f2 Branch: refs/heads/karaf-2.x Commit: e99ef0f2318aa9e9006ec63d0812c09836434801 Parents: a60cec5 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:13 2014 +0100 ---------------------------------------------------------------------- .../modules/properties/PropertiesInstaller.java | 20 +++++++++++++++++--- 1 file changed, 17 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/karaf/blob/e99ef0f2/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;
