The following document contains the results of Rat (Release Audit Tool).
***************************************************** Summary ------- Generated at: 2017-03-12T00:17:25-05:00 Notes: 0 Binaries: 0 Archives: 0 Standards: 11 Apache Licensed: 0 Generated Documents: 0 JavaDocs are generated, thus a license header is optional. Generated files do not require license headers. 9 Unknown Licenses ***************************************************** Files with unapproved licenses: C:/projects/fgsms/fgsms-samples/fgsms.SLAPluginWebService/pom.xml C:/projects/fgsms/fgsms-samples/fgsms.SLAPluginWebService/src/main/java/org/miloss/fgsms/plugins/sla/alertservice/AlertRecieverImpl.java C:/projects/fgsms/fgsms-samples/fgsms.SLAPluginWebService/src/main/java/org/miloss/fgsms/plugins/sla/alertservice/ObjectFactory.java C:/projects/fgsms/fgsms-samples/fgsms.SLAPluginWebService/src/main/java/org/miloss/fgsms/plugins/sla/alertservice/package-info.java C:/projects/fgsms/fgsms-samples/fgsms.SLAPluginWebService/src/main/java/org/miloss/fgsms/plugins/sla/alertservice/RecieveServiceAlert.java C:/projects/fgsms/fgsms-samples/fgsms.SLAPluginWebService/src/main/webapp/index.jsp C:/projects/fgsms/fgsms-samples/fgsms.SLAPluginWebService/src/main/webapp/META-INF/SLAPluginWebService.wsdl C:/projects/fgsms/fgsms-samples/fgsms.SLAPluginWebService/src/main/webapp/WEB-INF/jboss-web.xml C:/projects/fgsms/fgsms-samples/fgsms.SLAPluginWebService/src/main/webapp/WEB-INF/web.xml ***************************************************** ***************************************************** 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-samples/fgsms.SLAPluginWebService/pom.xml !????? C:/projects/fgsms/fgsms-samples/fgsms.SLAPluginWebService/src/main/java/org/miloss/fgsms/plugins/sla/alertservice/AlertRecieverImpl.java C:/projects/fgsms/fgsms-samples/fgsms.SLAPluginWebService/src/main/java/org/miloss/fgsms/plugins/sla/alertservice/AlertRecieverPortType.java C:/projects/fgsms/fgsms-samples/fgsms.SLAPluginWebService/src/main/java/org/miloss/fgsms/plugins/sla/alertservice/AlertRecieverService.java !????? C:/projects/fgsms/fgsms-samples/fgsms.SLAPluginWebService/src/main/java/org/miloss/fgsms/plugins/sla/alertservice/ObjectFactory.java !????? C:/projects/fgsms/fgsms-samples/fgsms.SLAPluginWebService/src/main/java/org/miloss/fgsms/plugins/sla/alertservice/package-info.java !????? C:/projects/fgsms/fgsms-samples/fgsms.SLAPluginWebService/src/main/java/org/miloss/fgsms/plugins/sla/alertservice/RecieveServiceAlert.java !????? C:/projects/fgsms/fgsms-samples/fgsms.SLAPluginWebService/src/main/webapp/index.jsp !????? C:/projects/fgsms/fgsms-samples/fgsms.SLAPluginWebService/src/main/webapp/META-INF/SLAPluginWebService.wsdl !????? C:/projects/fgsms/fgsms-samples/fgsms.SLAPluginWebService/src/main/webapp/WEB-INF/jboss-web.xml !????? C:/projects/fgsms/fgsms-samples/fgsms.SLAPluginWebService/src/main/webapp/WEB-INF/web.xml ***************************************************** Printing headers for text files without a valid license header... ===================================================== == File: C:/projects/fgsms/fgsms-samples/fgsms.SLAPluginWebService/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-samples</artifactId> <version>7.0.0</version> </parent> <artifactId>fgsms.SLAPluginWebService</artifactId> <packaging>war</packaging> <name>fgsms Sample SLA Plugin Webservice</name> <description>Example SLA plugin</description> <dependencies> <dependency> <groupId>log4j</groupId> <artifactId>log4j</artifactId> </dependency> </dependencies> <!-- TODO add cxf stack post build, copy to running tomcat instance --> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-deploy-plugin</artifactId> <version>2.7</version> <configuration> <skip>true</skip> ===================================================== == File: C:/projects/fgsms/fgsms-samples/fgsms.SLAPluginWebService/src/main/java/org/miloss/fgsms/plugins/sla/alertservice/AlertRecieverImpl.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.plugins.sla.alertservice; import javax.jws.Oneway; import javax.jws.WebMethod; import javax.jws.WebParam; import javax.jws.WebService; import javax.xml.bind.annotation.XmlSeeAlso; import java.util.Calendar; import javax.xml.ws.RequestWrapper; import org.apache.log4j.Level; import org.apache.log4j.Logger; @WebService(name = "AlertRecieverPortType", targetNamespace = "urn:mil:army:cerdec:fgsms:plugins:sla:alertservice") @XmlSeeAlso({ ObjectFactory.class }) public class AlertRecieverImpl { static final Logger log = Logger.getLogger("RecieverServiceAlertsSample"); /** * * @param message * @param timestamp */ @WebMethod(operationName = "RecieveServiceAlert", action = "urn:RecieveServiceAlert") @Oneway @RequestWrapper(localName = "RecieveServiceAlert", targetNamespace = "urn:mil:army:cerdec:fgsms:plugins:sla:alertservice", className = "mil.army.cerdec.fgsms.plugins.sla.alertservice.RecieveServiceAlert") public void recieveServiceAlert( @WebParam(name = "utcdatetime", targetNamespace = "urn:mil:army:cerdec:fgsms:plugins:sla:alertservice") Calendar timestamp, ===================================================== == File: C:/projects/fgsms/fgsms-samples/fgsms.SLAPluginWebService/src/main/java/org/miloss/fgsms/plugins/sla/alertservice/ObjectFactory.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.plugins.sla.alertservice; import javax.xml.bind.JAXBElement; import javax.xml.bind.annotation.XmlElementDecl; import javax.xml.bind.annotation.XmlRegistry; import javax.xml.namespace.QName; /** * This object contains factory methods for each * Java content interface and Java element interface * generated in the mil.army.cerdec.fgsms.plugins.sla.alertservice package. * <p>An ObjectFactory allows you to programatically * construct new instances of the Java representation * for XML content. The Java representation of XML * content can consist of schema derived interfaces * and classes representing the binding of schema * type definitions, element declarations and model * groups. Factory methods for each of these are * provided in this class. * */ @XmlRegistry public class ObjectFactory { private final static QName _RecieveServiceAlert_QNAME = new QName("urn:mil:army:cerdec:fgsms:plugins:sla:alertservice", "RecieveServiceAlert"); /** * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: mil.army.cerdec.fgsms.plugins.sla.alertservice ===================================================== == File: C:/projects/fgsms/fgsms-samples/fgsms.SLAPluginWebService/src/main/java/org/miloss/fgsms/plugins/sla/alertservice/package-info.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 * --------------------------------------------------------------------------- */ @javax.xml.bind.annotation.XmlSchema(namespace = "urn:mil:army:cerdec:fgsms:plugins:sla:alertservice", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) package org.miloss.fgsms.plugins.sla.alertservice; ===================================================== == File: C:/projects/fgsms/fgsms-samples/fgsms.SLAPluginWebService/src/main/java/org/miloss/fgsms/plugins/sla/alertservice/RecieveServiceAlert.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.plugins.sla.alertservice; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; import java.util.Calendar; /** * <p>Java class for RecieveServiceAlert complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="RecieveServiceAlert"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="utcdatetime" type="{http://www.w3.org/2001/XMLSchema}dateTime"/> * <element name="message" type="{http://www.w3.org/2001/XMLSchema}string"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * ===================================================== == File: C:/projects/fgsms/fgsms-samples/fgsms.SLAPluginWebService/src/main/webapp/index.jsp ===================================================== <%-- Document : index Created on : Aug 21, 2012, 2:11:50 PM Author : Administrator --%> <%@page contentType="text/html" pageEncoding="UTF-8"%> <!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>JSP Page</title> </head> <body> <h1>Hello World!</h1> </body> </html> ===================================================== == File: C:/projects/fgsms/fgsms-samples/fgsms.SLAPluginWebService/src/main/webapp/META-INF/SLAPluginWebService.wsdl ===================================================== <?xml version="1.0" encoding="UTF-8"?> <wsdl:definitions xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:http="http://schemas.xmlsoap.org/wsdl/http/" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/" xmlns:tns="urn:org:miloss:fgsms:plugins:sla:alertservice" targetNamespace="urn:org:miloss:fgsms:plugins:sla:alertservice"> <wsdl:types> <xs:schema targetNamespace="urn:org:miloss:fgsms:plugins:sla:alertservice" elementFormDefault="qualified"> <xs:complexType name="RecieveServiceAlert"> <xs:sequence> <xs:element name="timestamp" type="xs:dateTime"/> <xs:element name="message" type="xs:string"/> </xs:sequence> </xs:complexType> <xs:element name="RecieveServiceAlert" type="tns:RecieveServiceAlert"></xs:element> </xs:schema> </wsdl:types> <wsdl:message name="AlertMessageRequest_inputmessage"> <wsdl:part name="parameters" element="tns:RecieveServiceAlert"/> </wsdl:message> <wsdl:portType name="AlertRecieverPortType"> <wsdl:operation name="RecieveServiceAlert"> <wsdl:input message="tns:AlertMessageRequest_inputmessage"/> </wsdl:operation> </wsdl:portType> <wsdl:binding name="AlertRecieverBinding" type="tns:AlertRecieverPortType"> <soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/> <wsdl:operation name="RecieveServiceAlert"> <soap:operation soapAction="urn:RecieveServiceAlert"/> <wsdl:input> <soap:body use="literal"/> </wsdl:input> </wsdl:operation> </wsdl:binding> <wsdl:service name="AlertRecieverService"> <wsdl:port name="AlertRecieverPort" binding="tns:AlertRecieverBinding"> <soap:address location="No Target Adress"/> </wsdl:port> </wsdl:service> </wsdl:definitions> ===================================================== == File: C:/projects/fgsms/fgsms-samples/fgsms.SLAPluginWebService/src/main/webapp/WEB-INF/jboss-web.xml ===================================================== <?xml version="1.0" encoding="UTF-8"?> <jboss-web> <context-root>/SLAPluginWebService</context-root> </jboss-web> ===================================================== == File: C:/projects/fgsms/fgsms-samples/fgsms.SLAPluginWebService/src/main/webapp/WEB-INF/web.xml ===================================================== <?xml version="1.0" encoding="UTF-8"?> <web-app version="2.5" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"> <servlet> <servlet-name>AlertRecieverPortType</servlet-name> <servlet-class>org.miloss.fgsms.plugins.sla.alertservice.AlertRecieverImpl</servlet-class> <load-on-startup>1</load-on-startup> </servlet> <servlet-mapping> <servlet-name>AlertRecieverPortType</servlet-name> <url-pattern>/AlertRecieverPortType</url-pattern> </servlet-mapping> <session-config> <session-timeout> 30 </session-timeout> </session-config> <welcome-file-list> <welcome-file>index.jsp</welcome-file> </welcome-file-list> </web-app>