Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJesse McConnell2013-05-21 20:09:29 +0000
committerJesse McConnell2013-05-21 20:09:49 +0000
commit74a4077dad360b10723aafe9ddad282f58ae1e55 (patch)
tree3d32f138d74954fa838280f3beaf02295476bb73 /jetty-jaas
parentcede990d41374a2c09a26d0e1619f2f8918d021b (diff)
downloadorg.eclipse.jetty.project-74a4077dad360b10723aafe9ddad282f58ae1e55.tar.gz
org.eclipse.jetty.project-74a4077dad360b10723aafe9ddad282f58ae1e55.tar.xz
org.eclipse.jetty.project-74a4077dad360b10723aafe9ddad282f58ae1e55.zip
Add package-info.java files to all jetty packages.
Diffstat (limited to 'jetty-jaas')
-rw-r--r--jetty-jaas/src/main/java/org/eclipse/jetty/jaas/callback/package-info.java23
-rw-r--r--jetty-jaas/src/main/java/org/eclipse/jetty/jaas/package-info.java23
-rw-r--r--jetty-jaas/src/main/java/org/eclipse/jetty/jaas/spi/package-info.java23
3 files changed, 69 insertions, 0 deletions
diff --git a/jetty-jaas/src/main/java/org/eclipse/jetty/jaas/callback/package-info.java b/jetty-jaas/src/main/java/org/eclipse/jetty/jaas/callback/package-info.java
new file mode 100644
index 0000000000..d972808332
--- /dev/null
+++ b/jetty-jaas/src/main/java/org/eclipse/jetty/jaas/callback/package-info.java
@@ -0,0 +1,23 @@
+//
+// ========================================================================
+// Copyright (c) 1995-2013 Mort Bay Consulting Pty. Ltd.
+// ------------------------------------------------------------------------
+// All rights reserved. This program and the accompanying materials
+// are made available under the terms of the Eclipse Public License v1.0
+// and Apache License v2.0 which accompanies this distribution.
+//
+// The Eclipse Public License is available at
+// http://www.eclipse.org/legal/epl-v10.html
+//
+// The Apache License v2.0 is available at
+// http://www.opensource.org/licenses/apache2.0.php
+//
+// You may elect to redistribute this code under either of these licenses.
+// ========================================================================
+//
+
+/**
+ * Jetty Jaas : Jaas Callbacks
+ */
+package org.eclipse.jetty.jaas.callback;
+
diff --git a/jetty-jaas/src/main/java/org/eclipse/jetty/jaas/package-info.java b/jetty-jaas/src/main/java/org/eclipse/jetty/jaas/package-info.java
new file mode 100644
index 0000000000..6d895ffbc6
--- /dev/null
+++ b/jetty-jaas/src/main/java/org/eclipse/jetty/jaas/package-info.java
@@ -0,0 +1,23 @@
+//
+// ========================================================================
+// Copyright (c) 1995-2013 Mort Bay Consulting Pty. Ltd.
+// ------------------------------------------------------------------------
+// All rights reserved. This program and the accompanying materials
+// are made available under the terms of the Eclipse Public License v1.0
+// and Apache License v2.0 which accompanies this distribution.
+//
+// The Eclipse Public License is available at
+// http://www.eclipse.org/legal/epl-v10.html
+//
+// The Apache License v2.0 is available at
+// http://www.opensource.org/licenses/apache2.0.php
+//
+// You may elect to redistribute this code under either of these licenses.
+// ========================================================================
+//
+
+/**
+ * Jetty Jaas : Support for Jaas
+ */
+package org.eclipse.jetty.jaas;
+
diff --git a/jetty-jaas/src/main/java/org/eclipse/jetty/jaas/spi/package-info.java b/jetty-jaas/src/main/java/org/eclipse/jetty/jaas/spi/package-info.java
new file mode 100644
index 0000000000..0c332b36ce
--- /dev/null
+++ b/jetty-jaas/src/main/java/org/eclipse/jetty/jaas/spi/package-info.java
@@ -0,0 +1,23 @@
+//
+// ========================================================================
+// Copyright (c) 1995-2013 Mort Bay Consulting Pty. Ltd.
+// ------------------------------------------------------------------------
+// All rights reserved. This program and the accompanying materials
+// are made available under the terms of the Eclipse Public License v1.0
+// and Apache License v2.0 which accompanies this distribution.
+//
+// The Eclipse Public License is available at
+// http://www.eclipse.org/legal/epl-v10.html
+//
+// The Apache License v2.0 is available at
+// http://www.opensource.org/licenses/apache2.0.php
+//
+// You may elect to redistribute this code under either of these licenses.
+// ========================================================================
+//
+
+/**
+ * Jetty Jaas : Various Jaas Implementations for Jetty
+ */
+package org.eclipse.jetty.jaas.spi;
+

Back to the top