The following document contains the results of Rat (Release Audit Tool).
***************************************************** Summary ------- Generated at: 2017-03-11T23:53:59-05:00 Notes: 0 Binaries: 0 Archives: 0 Standards: 3 Apache Licensed: 0 Generated Documents: 0 JavaDocs are generated, thus a license header is optional. Generated files do not require license headers. 3 Unknown Licenses ***************************************************** Files with unapproved licenses: C:/projects/fgsms/fgsms-ws-notification/fgsms-wsnotification-client/pom.xml C:/projects/fgsms/fgsms-ws-notification/fgsms-wsnotification-client/src/main/java/org/miloss/fgsms/wsn/clientcallback/IWSNCallBack.java C:/projects/fgsms/fgsms-ws-notification/fgsms-wsnotification-client/src/main/java/org/miloss/fgsms/wsn/clientcallback/WSNotifyCallback.java ***************************************************** ***************************************************** Files with Apache License headers will be marked AL Binary files (which do not require any license headers) will be marked B Compressed archives will be marked A Notices, licenses etc. will be marked N !????? C:/projects/fgsms/fgsms-ws-notification/fgsms-wsnotification-client/pom.xml !????? C:/projects/fgsms/fgsms-ws-notification/fgsms-wsnotification-client/src/main/java/org/miloss/fgsms/wsn/clientcallback/IWSNCallBack.java !????? C:/projects/fgsms/fgsms-ws-notification/fgsms-wsnotification-client/src/main/java/org/miloss/fgsms/wsn/clientcallback/WSNotifyCallback.java ***************************************************** Printing headers for text files without a valid license header... ===================================================== == File: C:/projects/fgsms/fgsms-ws-notification/fgsms-wsnotification-client/pom.xml ===================================================== <?xml version="1.0" encoding="UTF-8"?> <!-- This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this file, You can obtain one at http://mozilla.org/MPL/2.0/. If it is not possible or desirable to put the notice in a particular file, then You may include the notice in a location (such as a LICENSE file in a relevant directory) where a recipient would be likely to look for such a notice. U.S. Government, Department of the Army Army Materiel Command Research Development Engineering Command Communications Electronics Research Development and Engineering Center --> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.mil-oss</groupId> <artifactId>fgsms-ws-notification</artifactId> <version>7.0.0</version> </parent> <artifactId>fgsms-wsnotification-client</artifactId> <packaging>jar</packaging> <name>fgsms WS-Notification Client</name> <description>WSN Client</description> <dependencies> <dependency> <groupId>${project.groupId}</groupId> <artifactId>fgsms-wsnotification-spec</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>test</scope> </dependency> </dependencies> </project> ===================================================== == File: C:/projects/fgsms/fgsms-ws-notification/fgsms-wsnotification-client/src/main/java/org/miloss/fgsms/wsn/clientcallback/IWSNCallBack.java ===================================================== /** * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. * * If it is not possible or desirable to put the notice in a particular * file, then You may include the notice in a location (such as a LICENSE * file in a relevant directory) where a recipient would be likely to look * for such a notice. * */ /* --------------------------------------------------------------------------- * U.S. Government, Department of the Army * Army Materiel Command * Research Development Engineering Command * Communications Electronics Research Development and Engineering Center * --------------------------------------------------------------------------- */ package org.miloss.fgsms.wsn.clientcallback; import org.oasis_open.docs.wsn.b_2.Notify; /** * * @author AO */ public interface IWSNCallBack { public void OnMessage(Notify notify); } ===================================================== == File: C:/projects/fgsms/fgsms-ws-notification/fgsms-wsnotification-client/src/main/java/org/miloss/fgsms/wsn/clientcallback/WSNotifyCallback.java ===================================================== /** * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. * * If it is not possible or desirable to put the notice in a particular * file, then You may include the notice in a location (such as a LICENSE * file in a relevant directory) where a recipient would be likely to look * for such a notice. * */ /* --------------------------------------------------------------------------- * U.S. Government, Department of the Army * Army Materiel Command * Research Development Engineering Command * Communications Electronics Research Development and Engineering Center * --------------------------------------------------------------------------- */ package org.miloss.fgsms.wsn.clientcallback; import javax.jws.*; import javax.jws.soap.SOAPBinding; import javax.xml.datatype.DatatypeConfigurationException; import org.oasis_open.docs.wsn.b_2.*; import org.oasis_open.docs.wsn.br_2.*; import org.oasis_open.docs.wsn.brw_2.*; /** * * @author Administrator */ @WebService(name = "NotificationBroker", targetNamespace = "http://docs.oasis-open.org/wsn/bw-2") @SOAPBinding(parameterStyle = SOAPBinding.ParameterStyle.BARE) public class WSNotifyCallback implements org.oasis_open.docs.wsn.brw_2.NotificationBroker { private IWSNCallBack callbackReference=null; public WSNotifyCallback(IWSNCallBack callbackDelegate) throws DatatypeConfigurationException { callbackReference = callbackDelegate; } /** * * @param registerPublisherRequest