You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@karaf.apache.org by jb...@apache.org on 2014/02/22 10:57:29 UTC

git commit: Fix license header in PropertiesInstaller

Repository: karaf
Updated Branches:
  refs/heads/karaf-3.0.x e8ece739f -> cf2a7f7eb


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/cf2a7f7e
Tree: http://git-wip-us.apache.org/repos/asf/karaf/tree/cf2a7f7e
Diff: http://git-wip-us.apache.org/repos/asf/karaf/diff/cf2a7f7e

Branch: refs/heads/karaf-3.0.x
Commit: cf2a7f7eb336b7d8c2916eb4840a4e796d01b010
Parents: e8ece73
Author: Jean-Baptiste Onofré <jb...@apache.org>
Authored: Sat Feb 22 10:57:09 2014 +0100
Committer: Jean-Baptiste Onofré <jb...@apache.org>
Committed: Sat Feb 22 10:57:09 2014 +0100

----------------------------------------------------------------------
 .../modules/properties/PropertiesInstaller.java | 20 +++++++++++++++++---
 1 file changed, 17 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/karaf/blob/cf2a7f7e/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;