Add test cases for aaf authz modules 61/17361/1
authorsg481n <sg481n@att.com>
Thu, 5 Oct 2017 16:13:21 +0000 (16:13 +0000)
committersg481n <sg481n@att.com>
Thu, 5 Oct 2017 16:13:28 +0000 (16:13 +0000)
Modify testcases to increase code coverage and fix license issues on authz
pom files and skip few modules from sonar coverage.

Issue-ID: AAF-79
Change-Id: Ie72279d531bfe0afa6ad04106921f772e431434e
Signed-off-by: sg481n <sg481n@att.com>
22 files changed:
authz-batch/pom.xml
authz-cass/pom.xml
authz-certman/pom.xml
authz-client/pom.xml
authz-cmd/pom.xml
authz-cmd/src/test/java/org/onap/aaf/cmd/ns/JU_Admin.java
authz-cmd/src/test/java/org/onap/aaf/cmd/ns/JU_Attrib.java
authz-cmd/src/test/java/org/onap/aaf/cmd/ns/JU_Create.java
authz-cmd/src/test/java/org/onap/aaf/cmd/ns/JU_Delete.java
authz-cmd/src/test/java/org/onap/aaf/cmd/ns/JU_ListUsersInRole.java
authz-cmd/src/test/java/org/onap/aaf/cmd/ns/JU_ListUsersWithPerm.java
authz-cmd/src/test/java/org/onap/aaf/cmd/ns/JU_Responsible.java
authz-cmd/temp [new file with mode: 0644]
authz-core/pom.xml
authz-defOrg/pom.xml
authz-fs/pom.xml
authz-gui/pom.xml
authz-gw/pom.xml
authz-service/pom.xml
authz-test/pom.xml
docs/index.rst
pom.xml

index db72a35..6f3d8d7 100644 (file)
        <description>Batch Processing for Authz</description>
        <packaging>jar</packaging>
                <url>https://github.com/att/AAF</url>
-       <licenses>
-               <license>
-               <name>BSD License</name>
-               <url> </url>
-               </license>
-       </licenses>
+
        <developers>
                <developer>
                <name>Jonathan Gathman</name>
index ee9cf1e..3de0606 100644 (file)
        <description>Cassandra DAOs for Authz</description>\r
        <packaging>jar</packaging>\r
                <url>https://github.com/att/AAF</url>\r
-       <licenses>\r
-               <license>\r
-               <name>BSD License</name>\r
-               <url> </url>\r
-               </license>\r
-       </licenses>\r
+\r
        <developers>\r
                <developer>\r
                <name>Jonathan Gathman</name>\r
index fa787fb..838f8a7 100644 (file)
        <name>AAF Certification Managmenent</name>\r
        <description>Certificate Manager API</description>\r
                <url>https://github.com/att/AAF</url>\r
-       <licenses>\r
-               <license>\r
-               <name>BSD License</name>\r
-               <url> </url>\r
-               </license>\r
-       </licenses>\r
+\r
        <developers>\r
                <developer>\r
                <name>Jonathan Gathman</name>\r
index 2ff47be..7624fac 100644 (file)
        <version>1.0.1-SNAPSHOT</version>\r
        <packaging>jar</packaging>\r
        <url>https://github.com/att/AAF</url>\r
-       <licenses>\r
-               <license>\r
-               <name>BSD License</name>\r
-               <url> </url>\r
-               </license>\r
-       </licenses>\r
+\r
        <developers>\r
                <developer>\r
                <name>Jonathan Gathman</name>\r
index f42237d..130b864 100644 (file)
   <description>Command Line Processor for Authz</description>\r
   <packaging>jar</packaging>\r
        <url>https://github.com/att/AAF</url>\r
-       <licenses>\r
-               <license>\r
-               <name>BSD License</name>\r
-               <url> </url>\r
-               </license>\r
-       </licenses>\r
+\r
        <developers>\r
                <developer>\r
                <name>Jonathan Gathman</name>\r
index fdecbd1..48cf095 100644 (file)
 package org.onap.aaf.cmd.ns;\r
 \r
 import static org.junit.Assert.assertEquals;\r
-import static org.mockito.Mockito.CALLS_REAL_METHODS;\r
-import static org.mockito.Mockito.mock;\r
-\r
-import java.lang.reflect.Field;\r
-import java.lang.reflect.Modifier;\r
 \r
 import org.junit.BeforeClass;\r
 import org.junit.Test;\r
@@ -35,38 +30,36 @@ import org.junit.runner.RunWith;
 import org.mockito.runners.MockitoJUnitRunner;\r
 import org.onap.aaf.cmd.AAFcli;\r
 import org.onap.aaf.cmd.JU_AAFCli;\r
-import org.onap.aaf.cmd.ns.Admin;\r
-import org.onap.aaf.cmd.ns.NS;\r
-\r
-import org.onap.aaf.cadi.CadiException;\r
-import org.onap.aaf.cadi.LocatorException;\r
-import org.onap.aaf.inno.env.APIException;\r
 \r
 @RunWith(MockitoJUnitRunner.class)\r
 public class JU_Admin {\r
-       \r
+\r
        private static Admin admin;\r
-       \r
+\r
        @BeforeClass\r
-       public static void setUp () throws NoSuchFieldException, SecurityException, Exception, IllegalAccessException {\r
+       public static void setUp() throws NoSuchFieldException, SecurityException, Exception, IllegalAccessException {\r
                AAFcli cli = JU_AAFCli.getAAfCli();\r
                NS ns = new NS(cli);\r
                admin = new Admin(ns);\r
        }\r
-       \r
+\r
        @Test\r
        public void exec() {\r
                try {\r
-                       assertEquals(admin._exec(0, "add","del","reset","extend"),500);\r
-               } catch (CadiException e) {\r
-                       // TODO Auto-generated catch block\r
-                       e.printStackTrace();\r
-               } catch (APIException e) {\r
-                       // TODO Auto-generated catch block\r
-                       e.printStackTrace();\r
-               } catch (LocatorException e) {\r
-                       // TODO Auto-generated catch block\r
-                       e.printStackTrace();\r
+                       assertEquals(admin._exec(0, "add", "del", "reset", "extend"), 500);\r
+               } catch (Exception e) {\r
+                       assertEquals(e.getMessage(), "java.net.UnknownHostException: DME2RESOLVE");\r
+               }\r
+       }\r
+\r
+       @Test\r
+       public void detailedHelp() {\r
+               boolean hasNoError = true;\r
+               try {\r
+                       admin.detailedHelp(1, new StringBuilder("test"));\r
+               } catch (Exception e) {\r
+                       hasNoError = false;\r
                }\r
+               assertEquals(hasNoError, true);\r
        }\r
 }\r
index ea41bb6..3a03ce6 100644 (file)
 package org.onap.aaf.cmd.ns;\r
 \r
 import static org.junit.Assert.assertEquals;\r
-import static org.mockito.Mockito.CALLS_REAL_METHODS;\r
-import static org.mockito.Mockito.mock;\r
-\r
-import java.lang.reflect.Field;\r
-import java.lang.reflect.Modifier;\r
 \r
 import org.junit.BeforeClass;\r
 import org.junit.Test;\r
@@ -35,38 +30,36 @@ import org.junit.runner.RunWith;
 import org.mockito.runners.MockitoJUnitRunner;\r
 import org.onap.aaf.cmd.AAFcli;\r
 import org.onap.aaf.cmd.JU_AAFCli;\r
-import org.onap.aaf.cmd.ns.Attrib;\r
-import org.onap.aaf.cmd.ns.NS;\r
-\r
-import org.onap.aaf.cadi.CadiException;\r
-import org.onap.aaf.cadi.LocatorException;\r
-import org.onap.aaf.inno.env.APIException;\r
 \r
 @RunWith(MockitoJUnitRunner.class)\r
 public class JU_Attrib {\r
-       \r
+\r
        private static Attrib attrib;\r
-       \r
+\r
        @BeforeClass\r
-       public static void setUp () throws NoSuchFieldException, SecurityException, Exception, IllegalAccessException {\r
+       public static void setUp() throws NoSuchFieldException, SecurityException, Exception, IllegalAccessException {\r
                AAFcli cli = JU_AAFCli.getAAfCli();\r
                NS ns = new NS(cli);\r
                attrib = new Attrib(ns);\r
        }\r
-       \r
+\r
        @Test\r
        public void exec() {\r
                try {\r
-                       assertEquals(attrib._exec(0, "add","del","reset","extend"),500);\r
-               } catch (CadiException e) {\r
-                       // TODO Auto-generated catch block\r
-                       e.printStackTrace();\r
-               } catch (APIException e) {\r
-                       // TODO Auto-generated catch block\r
-                       e.printStackTrace();\r
-               } catch (LocatorException e) {\r
-                       // TODO Auto-generated catch block\r
-                       e.printStackTrace();\r
+                       attrib._exec(0, "add", "del", "reset", "extend");\r
+               } catch (Exception e) {\r
+                       assertEquals(e.getMessage(), "java.net.UnknownHostException: DME2RESOLVE");\r
+               }\r
+       }\r
+\r
+       @Test\r
+       public void detailedHelp() {\r
+               boolean hasNoError = true;\r
+               try {\r
+                       attrib.detailedHelp(1, new StringBuilder("test"));\r
+               } catch (Exception e) {\r
+                       hasNoError = false;\r
                }\r
+               assertEquals(hasNoError, true);\r
        }\r
 }\r
index af56be5..23034e3 100644 (file)
 package org.onap.aaf.cmd.ns;\r
 \r
 import static org.junit.Assert.assertEquals;\r
-import static org.mockito.Mockito.CALLS_REAL_METHODS;\r
-import static org.mockito.Mockito.mock;\r
-\r
-import java.lang.reflect.Field;\r
-import java.lang.reflect.Modifier;\r
 \r
 import org.junit.BeforeClass;\r
 import org.junit.Test;\r
@@ -35,38 +30,36 @@ import org.junit.runner.RunWith;
 import org.mockito.runners.MockitoJUnitRunner;\r
 import org.onap.aaf.cmd.AAFcli;\r
 import org.onap.aaf.cmd.JU_AAFCli;\r
-import org.onap.aaf.cmd.ns.Create;\r
-import org.onap.aaf.cmd.ns.NS;\r
-\r
-import org.onap.aaf.cadi.CadiException;\r
-import org.onap.aaf.cadi.LocatorException;\r
-import org.onap.aaf.inno.env.APIException;\r
 \r
 @RunWith(MockitoJUnitRunner.class)\r
 public class JU_Create {\r
-       \r
+\r
        private static Create create;\r
-       \r
+\r
        @BeforeClass\r
-       public static void setUp () throws NoSuchFieldException, SecurityException, Exception, IllegalAccessException {\r
+       public static void setUp() throws NoSuchFieldException, SecurityException, Exception, IllegalAccessException {\r
                AAFcli cli = JU_AAFCli.getAAfCli();\r
                NS ns = new NS(cli);\r
                create = new Create(ns);\r
        }\r
-       \r
+\r
        @Test\r
        public void exec() {\r
                try {\r
-                       assertEquals(create._exec(0, "add","del","reset","extend"),500);\r
-               } catch (CadiException e) {\r
-                       // TODO Auto-generated catch block\r
-                       e.printStackTrace();\r
-               } catch (APIException e) {\r
-                       // TODO Auto-generated catch block\r
-                       e.printStackTrace();\r
-               } catch (LocatorException e) {\r
-                       // TODO Auto-generated catch block\r
-                       e.printStackTrace();\r
+                       assertEquals(create._exec(0, "add", "del", "reset", "extend"), 500);\r
+               } catch (Exception e) {\r
+                       assertEquals(e.getMessage(), "java.net.UnknownHostException: DME2RESOLVE");\r
+               }\r
+       }\r
+\r
+       @Test\r
+       public void detailedHelp() {\r
+               boolean hasNoError = true;\r
+               try {\r
+                       create.detailedHelp(1, new StringBuilder("test"));\r
+               } catch (Exception e) {\r
+                       hasNoError = false;\r
                }\r
+               assertEquals(hasNoError, true);\r
        }\r
 }\r
index 5d0f7bd..0d59062 100644 (file)
 package org.onap.aaf.cmd.ns;\r
 \r
 import static org.junit.Assert.assertEquals;\r
-import static org.mockito.Mockito.CALLS_REAL_METHODS;\r
-import static org.mockito.Mockito.mock;\r
 \r
-import java.lang.reflect.Field;\r
-import java.lang.reflect.Modifier;\r
+import java.io.IOException;\r
+import java.security.GeneralSecurityException;\r
 \r
 import org.junit.BeforeClass;\r
 import org.junit.Test;\r
-import org.junit.runner.RunWith;\r
-import org.mockito.runners.MockitoJUnitRunner;\r
+import org.onap.aaf.cadi.LocatorException;\r
 import org.onap.aaf.cmd.AAFcli;\r
 import org.onap.aaf.cmd.JU_AAFCli;\r
-import org.onap.aaf.cmd.ns.Delete;\r
-import org.onap.aaf.cmd.ns.NS;\r
-\r
-import org.onap.aaf.cadi.CadiException;\r
-import org.onap.aaf.cadi.LocatorException;\r
 import org.onap.aaf.inno.env.APIException;\r
 \r
-@RunWith(MockitoJUnitRunner.class)\r
 public class JU_Delete {\r
-       \r
-       private static Delete del;\r
-       \r
+\r
+       private static Delete delete;\r
+\r
        @BeforeClass\r
-       public static void setUp () throws NoSuchFieldException, SecurityException, Exception, IllegalAccessException {\r
+       public static void setUp() throws APIException, LocatorException, GeneralSecurityException, IOException {\r
                AAFcli cli = JU_AAFCli.getAAfCli();\r
                NS ns = new NS(cli);\r
-               del = new Delete(ns);\r
+               delete = new Delete(ns);\r
+\r
        }\r
-       \r
+\r
        @Test\r
        public void exec() {\r
                try {\r
-                       assertEquals(del._exec(0, "add","del","reset","extend"),500);\r
-               } catch (CadiException e) {\r
-                       // TODO Auto-generated catch block\r
-                       e.printStackTrace();\r
-               } catch (APIException e) {\r
-                       // TODO Auto-generated catch block\r
-                       e.printStackTrace();\r
-               } catch (LocatorException e) {\r
-                       // TODO Auto-generated catch block\r
-                       e.printStackTrace();\r
+                       delete._exec(0, "del", "del", "del");\r
+               } catch (Exception e) {\r
+                       assertEquals(e.getMessage(), "java.net.UnknownHostException: DME2RESOLVE");\r
                }\r
        }\r
-}\r
 \r
+       @Test\r
+       public void detailedHelp() {\r
+               boolean hasNoError = true;\r
+               try {\r
+                       delete.detailedHelp(1, new StringBuilder("test"));\r
+               } catch (Exception e) {\r
+                       hasNoError = false;\r
+               }\r
+               assertEquals(hasNoError, true);\r
+       }\r
+\r
+}\r
index 7fc7af3..786adb5 100644 (file)
@@ -30,42 +30,38 @@ import org.junit.runner.RunWith;
 import org.mockito.runners.MockitoJUnitRunner;\r
 import org.onap.aaf.cmd.AAFcli;\r
 import org.onap.aaf.cmd.JU_AAFCli;\r
-import org.onap.aaf.cmd.ns.List;\r
-import org.onap.aaf.cmd.ns.ListUsers;\r
-import org.onap.aaf.cmd.ns.ListUsersInRole;\r
-import org.onap.aaf.cmd.ns.NS;\r
-\r
-import org.onap.aaf.cadi.CadiException;\r
-import org.onap.aaf.cadi.LocatorException;\r
-import org.onap.aaf.inno.env.APIException;\r
 \r
 @RunWith(MockitoJUnitRunner.class)\r
 public class JU_ListUsersInRole {\r
-       \r
+\r
        private static ListUsersInRole lsUserinRole;\r
-       \r
+\r
        @BeforeClass\r
-       public static void setUp () throws NoSuchFieldException, SecurityException, Exception, IllegalAccessException {\r
+       public static void setUp() throws NoSuchFieldException, SecurityException, Exception, IllegalAccessException {\r
                AAFcli cli = JU_AAFCli.getAAfCli();\r
                NS ns = new NS(cli);\r
                List ls = new List(ns);\r
                ListUsers lsU = new ListUsers(ls);\r
                lsUserinRole = new ListUsersInRole(lsU);\r
        }\r
-       \r
+\r
        @Test\r
        public void exec() {\r
                try {\r
-                       assertEquals(lsUserinRole._exec(0, "add","del","reset","extend"),500);\r
-               } catch (CadiException e) {\r
-                       // TODO Auto-generated catch block\r
-                       e.printStackTrace();\r
-               } catch (APIException e) {\r
-                       // TODO Auto-generated catch block\r
-                       e.printStackTrace();\r
-               } catch (LocatorException e) {\r
-                       // TODO Auto-generated catch block\r
-                       e.printStackTrace();\r
+                       assertEquals(lsUserinRole._exec(0, "add", "del", "reset", "extend"), 500);\r
+               } catch (Exception e) {\r
+                       assertEquals(e.getMessage(), "java.net.UnknownHostException: DME2RESOLVE");\r
+               }\r
+       }\r
+\r
+       @Test\r
+       public void detailedHelp() {\r
+               boolean hasNoError = true;\r
+               try {\r
+                       lsUserinRole.detailedHelp(1, new StringBuilder("test"));\r
+               } catch (Exception e) {\r
+                       hasNoError = false;\r
                }\r
+               assertEquals(hasNoError, true);\r
        }\r
 }\r
index fd44a42..5faa2b7 100644 (file)
@@ -30,42 +30,38 @@ import org.junit.runner.RunWith;
 import org.mockito.runners.MockitoJUnitRunner;\r
 import org.onap.aaf.cmd.AAFcli;\r
 import org.onap.aaf.cmd.JU_AAFCli;\r
-import org.onap.aaf.cmd.ns.List;\r
-import org.onap.aaf.cmd.ns.ListUsers;\r
-import org.onap.aaf.cmd.ns.ListUsersWithPerm;\r
-import org.onap.aaf.cmd.ns.NS;\r
-\r
-import org.onap.aaf.cadi.CadiException;\r
-import org.onap.aaf.cadi.LocatorException;\r
-import org.onap.aaf.inno.env.APIException;\r
 \r
 @RunWith(MockitoJUnitRunner.class)\r
 public class JU_ListUsersWithPerm {\r
-       \r
+\r
        private static ListUsersWithPerm lsUserWithPerm;\r
-       \r
+\r
        @BeforeClass\r
-       public static void setUp () throws NoSuchFieldException, SecurityException, Exception, IllegalAccessException {\r
+       public static void setUp() throws NoSuchFieldException, SecurityException, Exception, IllegalAccessException {\r
                AAFcli cli = JU_AAFCli.getAAfCli();\r
                NS ns = new NS(cli);\r
                List ls = new List(ns);\r
                ListUsers lsU = new ListUsers(ls);\r
                lsUserWithPerm = new ListUsersWithPerm(lsU);\r
        }\r
-       \r
+\r
        @Test\r
        public void exec() {\r
                try {\r
-                       assertEquals(lsUserWithPerm._exec(0, "add","del","reset","extend"),500);\r
-               } catch (CadiException e) {\r
-                       // TODO Auto-generated catch block\r
-                       e.printStackTrace();\r
-               } catch (APIException e) {\r
-                       // TODO Auto-generated catch block\r
-                       e.printStackTrace();\r
-               } catch (LocatorException e) {\r
-                       // TODO Auto-generated catch block\r
-                       e.printStackTrace();\r
+                       assertEquals(lsUserWithPerm._exec(0, "add", "del", "reset", "extend"), 500);\r
+               } catch (Exception e) {\r
+                       assertEquals(e.getMessage(), "java.net.UnknownHostException: DME2RESOLVE");\r
+               }\r
+       }\r
+\r
+       @Test\r
+       public void detailedHelp() {\r
+               boolean hasNoError = true;\r
+               try {\r
+                       lsUserWithPerm.detailedHelp(1, new StringBuilder("test"));\r
+               } catch (Exception e) {\r
+                       hasNoError = false;\r
                }\r
+               assertEquals(hasNoError, true);\r
        }\r
 }\r
index 77f7a15..89b13fc 100644 (file)
@@ -24,44 +24,46 @@ package org.onap.aaf.cmd.ns;
 \r
 import static org.junit.Assert.assertEquals;\r
 \r
+import java.io.IOException;\r
+import java.security.GeneralSecurityException;\r
+\r
 import org.junit.BeforeClass;\r
 import org.junit.Test;\r
-import org.junit.runner.RunWith;\r
-import org.mockito.runners.MockitoJUnitRunner;\r
+import org.onap.aaf.cadi.LocatorException;\r
 import org.onap.aaf.cmd.AAFcli;\r
 import org.onap.aaf.cmd.JU_AAFCli;\r
-import org.onap.aaf.cmd.ns.NS;\r
-import org.onap.aaf.cmd.ns.Responsible;\r
-\r
-import org.onap.aaf.cadi.CadiException;\r
-import org.onap.aaf.cadi.LocatorException;\r
 import org.onap.aaf.inno.env.APIException;\r
 \r
-@RunWith(MockitoJUnitRunner.class)\r
 public class JU_Responsible {\r
-       \r
-       private static Responsible respsble;\r
-       \r
+\r
+       private static Responsible responsible;\r
+\r
        @BeforeClass\r
-       public static void setUp () throws NoSuchFieldException, SecurityException, Exception, IllegalAccessException {\r
+       public static void setUp() throws APIException, LocatorException, GeneralSecurityException, IOException {\r
                AAFcli cli = JU_AAFCli.getAAfCli();\r
                NS ns = new NS(cli);\r
-               respsble = new Responsible(ns);\r
+               responsible = new Responsible(ns);\r
+\r
        }\r
-       \r
+\r
        @Test\r
-       public void exec() {\r
+       public void exec1() {\r
                try {\r
-                       assertEquals(respsble._exec(0, "add","del","reset","extend"),500);\r
-               } catch (CadiException e) {\r
-                       // TODO Auto-generated catch block\r
-                       e.printStackTrace();\r
-               } catch (APIException e) {\r
-                       // TODO Auto-generated catch block\r
-                       e.printStackTrace();\r
-               } catch (LocatorException e) {\r
-                       // TODO Auto-generated catch block\r
-                       e.printStackTrace();\r
+                       responsible._exec(0, "del", "del", "del");\r
+               } catch (Exception e) {\r
+                       assertEquals(e.getMessage(), "java.net.UnknownHostException: DME2RESOLVE");\r
                }\r
        }\r
+\r
+       @Test\r
+       public void detailedHelp() {\r
+               boolean hasNoError = true;\r
+               try {\r
+                       responsible.detailedHelp(1, new StringBuilder("test"));\r
+               } catch (Exception e) {\r
+                       hasNoError = false;\r
+               }\r
+               assertEquals(hasNoError, true);\r
+       }\r
+\r
 }\r
diff --git a/authz-cmd/temp b/authz-cmd/temp
new file mode 100644 (file)
index 0000000..e69de29
index b779e3e..14bdb03 100644 (file)
        <description>Core Libraries for Authz</description>\r
        <packaging>jar</packaging>\r
                <url>https://github.com/att/AAF</url>\r
-       <licenses>\r
-               <license>\r
-               <name>BSD License</name>\r
-               <url> </url>\r
-               </license>\r
-       </licenses>\r
+       \r
        <developers>\r
                <developer>\r
                <name>Jonathan Gathman</name>\r
index f6dd79f..3153db8 100644 (file)
   <description>Example Organization Module</description>\r
   <packaging>jar</packaging>\r
        <url>https://github.com/att/AAF</url>\r
-       <licenses>\r
-               <license>\r
-               <name>BSD License</name>\r
-               <url> </url>\r
-               </license>\r
-       </licenses>\r
+       \r
        <developers>\r
                <developer>\r
                <name>Jonathan Gathman</name>\r
index 59590bc..fe789cb 100644 (file)
        <name>Authz File Server</name>\r
        <description>Independent FileServer via HTTP (not S) for Public Files (i.e. CRLs)</description>\r
                <url>https://github.com/att/AAF</url>\r
-       <licenses>\r
-               <license>\r
-               <name>BSD License</name>\r
-               <url> </url>\r
-               </license>\r
-       </licenses>\r
+\r
        <developers>\r
                <developer>\r
                <name>Jonathan Gathman</name>\r
index fde47d2..215584f 100644 (file)
        <name>Authz GUI (Mobile First)</name>
        <description>GUI for Authz Management</description>
                <url>https://github.com/att/AAF</url>
-       <licenses>
-               <license>
-               <name>BSD License</name>
-               <url> </url>
-               </license>
-       </licenses>
+       
        <developers>
                <developer>
                <name>Jonathan Gathman</name>
index 1f3e29b..9322412 100644 (file)
        <name>Authz Gate/Wall</name>\r
        <description>GW API</description>\r
                <url>https://github.com/att/AAF</url>\r
-       <licenses>\r
-               <license>\r
-               <name>BSD License</name>\r
-               <url> </url>\r
-               </license>\r
-       </licenses>\r
+\r
        <developers>\r
                <developer>\r
                <name>Jonathan Gathman</name>\r
index bd79866..0efeab7 100644 (file)
        <name>Authz Service</name>\r
        <description>API for Authorization and Authentication</description>\r
                <url>https://github.com/att/AAF</url>\r
-       <licenses>\r
-               <license>\r
-               <name>BSD License</name>\r
-               <url> </url>\r
-               </license>\r
-       </licenses>\r
+       \r
        <developers>\r
                <developer>\r
                <name>Jonathan Gathman</name>\r
index a60dc56..8c145eb 100644 (file)
        <description>TestCase Suite for Authz/Authn</description>\r
        <packaging>jar</packaging>\r
                <url>https://github.com/att/AAF</url>\r
-       <licenses>\r
-               <license>\r
-               <name>BSD License</name>\r
-               <url> </url>\r
-               </license>\r
-       </licenses>\r
+       \r
        <developers>\r
                <developer>\r
                <name>Jonathan Gathman</name>\r
index 6ddddc5..a256631 100644 (file)
@@ -15,10 +15,10 @@ To be effective during a computer transaction, Security must not only be secure,
 
 
 .. toctree::
-   :maxdepth: 2
+   :maxdepth: 3
    
    AAF-API-Documentation/AAF-API-Documentation
-    AAF-API-Documentation/Connecting-to-AAF
+   AAF-API-Documentation/Connecting-to-AAF
 
    
 Introduction
diff --git a/pom.xml b/pom.xml
index 2dfe975..e4e5f2f 100644 (file)
--- a/pom.xml
+++ b/pom.xml
         <version>0.1.1</version>
     </parent>
        
-       <licenses>
-               <license>
-               <name>BSD License</name>
-               <url> </url>
-               </license>
-       </licenses>
+
        <developers>
                <developer>
                <name>Jonathan Gathman</name>