From c931dd1b727ec19c9b089f9a0c30b65b99ab6416 Mon Sep 17 00:00:00 2001 From: Fernando Mendioroz Date: Tue, 23 Jan 2018 19:50:02 -0500 Subject: [PATCH] Most important: updated JiBX version which it was preventing from building mvn project. Likewise, updated date in license header plus some other minor code style enhancements. --- .../org/mobicents/gmlc/GmlcManagement.java | 2 +- .../org/mobicents/gmlc/GmlcOAMMessages.java | 2 +- .../gmlc/GmlcPropertiesManagement.java | 2 +- .../gmlc/GmlcPropertiesManagementMBean.java | 2 +- .../org/mobicents/gmlc/GmlcShellExecutor.java | 8 +- .../java/org/mobicents/gmlc/library/Test.java | 7 +- .../console/impl/GmlcCommandHandler.java | 116 +++++++++--------- .../slee/MobileCoreNetworkInterfaceSbb.java | 2 +- .../mobicents/gmlc/slee/mlp/MLPException.java | 2 +- .../mobicents/gmlc/slee/mlp/MLPRequest.java | 2 +- .../mobicents/gmlc/slee/mlp/MLPResponse.java | 22 ++-- pom.xml | 2 +- .../protocols/ss7/gmlc/load/Client.java | 38 +++--- .../protocols/ss7/gmlc/load/ClientServer.java | 2 +- .../protocols/ss7/gmlc/load/Server.java | 11 +- .../protocols/ss7/gmlc/load/TestHarness.java | 2 +- 16 files changed, 107 insertions(+), 115 deletions(-) diff --git a/core/domain/src/main/java/org/mobicents/gmlc/GmlcManagement.java b/core/domain/src/main/java/org/mobicents/gmlc/GmlcManagement.java index 90910a1..b2f9d74 100644 --- a/core/domain/src/main/java/org/mobicents/gmlc/GmlcManagement.java +++ b/core/domain/src/main/java/org/mobicents/gmlc/GmlcManagement.java @@ -1,6 +1,6 @@ /* * TeleStax, Open Source Cloud Communications - * Copyright 2011-2013, Telestax Inc and individual contributors + * Copyright 2011-2018, Telestax Inc and individual contributors * by the @authors tag. * * This is free software; you can redistribute it and/or modify it diff --git a/core/domain/src/main/java/org/mobicents/gmlc/GmlcOAMMessages.java b/core/domain/src/main/java/org/mobicents/gmlc/GmlcOAMMessages.java index 218e151..7f48353 100644 --- a/core/domain/src/main/java/org/mobicents/gmlc/GmlcOAMMessages.java +++ b/core/domain/src/main/java/org/mobicents/gmlc/GmlcOAMMessages.java @@ -1,6 +1,6 @@ /* * TeleStax, Open Source Cloud Communications - * Copyright 2011-2013, Telestax Inc and individual contributors + * Copyright 2011-2018, Telestax Inc and individual contributors * by the @authors tag. * * This is free software; you can redistribute it and/or modify it diff --git a/core/domain/src/main/java/org/mobicents/gmlc/GmlcPropertiesManagement.java b/core/domain/src/main/java/org/mobicents/gmlc/GmlcPropertiesManagement.java index b57e548..095aaff 100644 --- a/core/domain/src/main/java/org/mobicents/gmlc/GmlcPropertiesManagement.java +++ b/core/domain/src/main/java/org/mobicents/gmlc/GmlcPropertiesManagement.java @@ -1,6 +1,6 @@ /* * TeleStax, Open Source Cloud Communications - * Copyright 2011-2013, Telestax Inc and individual contributors + * Copyright 2011-2018, Telestax Inc and individual contributors * by the @authors tag. * * This is free software; you can redistribute it and/or modify it diff --git a/core/domain/src/main/java/org/mobicents/gmlc/GmlcPropertiesManagementMBean.java b/core/domain/src/main/java/org/mobicents/gmlc/GmlcPropertiesManagementMBean.java index 5caf16f..a0c54f5 100644 --- a/core/domain/src/main/java/org/mobicents/gmlc/GmlcPropertiesManagementMBean.java +++ b/core/domain/src/main/java/org/mobicents/gmlc/GmlcPropertiesManagementMBean.java @@ -1,6 +1,6 @@ /* * TeleStax, Open Source Cloud Communications - * Copyright 2011-2013, Telestax Inc and individual contributors + * Copyright 2011-2018, Telestax Inc and individual contributors * by the @authors tag. * * This is free software; you can redistribute it and/or modify it diff --git a/core/domain/src/main/java/org/mobicents/gmlc/GmlcShellExecutor.java b/core/domain/src/main/java/org/mobicents/gmlc/GmlcShellExecutor.java index 753de24..51b1045 100644 --- a/core/domain/src/main/java/org/mobicents/gmlc/GmlcShellExecutor.java +++ b/core/domain/src/main/java/org/mobicents/gmlc/GmlcShellExecutor.java @@ -1,6 +1,6 @@ /* * TeleStax, Open Source Cloud Communications - * Copyright 2011-2013, Telestax Inc and individual contributors + * Copyright 2011-2018, Telestax Inc and individual contributors * by the @authors tag. * * This is free software; you can redistribute it and/or modify it @@ -57,8 +57,7 @@ public void setGmlcManagement(GmlcManagement gmlcManagement) { * (non-Javadoc) * * @see - * org.mobicents.ss7.management.console.ShellExecutor#execute(java.lang. - * String[]) + * org.mobicents.ss7.management.console.ShellExecutor#execute(java.lang.String[]) */ @Override public String execute(String[] commands) { @@ -85,8 +84,7 @@ public String execute(String[] commands) { * (non-Javadoc) * * @see - * org.mobicents.ss7.management.console.ShellExecutor#handles(java.lang. - * String) + * org.mobicents.ss7.management.console.ShellExecutor#handles(java.lang.String) */ @Override public boolean handles(String command) { diff --git a/core/gmlc-common-library/src/main/java/org/mobicents/gmlc/library/Test.java b/core/gmlc-common-library/src/main/java/org/mobicents/gmlc/library/Test.java index acd5312..23a1253 100644 --- a/core/gmlc-common-library/src/main/java/org/mobicents/gmlc/library/Test.java +++ b/core/gmlc-common-library/src/main/java/org/mobicents/gmlc/library/Test.java @@ -1,8 +1,7 @@ /* - * TeleStax, Open Source Cloud Communications Copyright 2012. - * and individual contributors - * by the @authors tag. See the copyright.txt in the distribution for a - * full listing of individual contributors. + * TeleStax, Open Source Cloud Communications + * Copyright 2011-2018, Telestax Inc and individual contributors + * by the @authors tag. * * This is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as diff --git a/core/oam/cli/src/main/java/org/mobicents/gmlc/management/console/impl/GmlcCommandHandler.java b/core/oam/cli/src/main/java/org/mobicents/gmlc/management/console/impl/GmlcCommandHandler.java index ce7442c..1d06158 100644 --- a/core/oam/cli/src/main/java/org/mobicents/gmlc/management/console/impl/GmlcCommandHandler.java +++ b/core/oam/cli/src/main/java/org/mobicents/gmlc/management/console/impl/GmlcCommandHandler.java @@ -1,8 +1,7 @@ -/** - * TeleStax, Open Source Cloud Communications Copyright 2012. - * and individual contributors - * by the @authors tag. See the copyright.txt in the distribution for a - * full listing of individual contributors. +/* + * TeleStax, Open Source Cloud Communications + * Copyright 2011-2018, Telestax Inc and individual contributors + * by the @authors tag. * * This is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as @@ -19,6 +18,7 @@ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA * 02110-1301 USA, or see the FSF site: http://www.fsf.org. */ + package org.mobicents.gmlc.management.console.impl; import org.mobicents.ss7.management.console.CommandContext; @@ -27,65 +27,67 @@ import org.mobicents.ss7.management.console.Tree.Node; /** - * @author amit bhayani - * + * + * @author Amit Bhayani + * */ public class GmlcCommandHandler extends CommandHandlerWithHelp { - static final Tree commandTree = new Tree("gmlc"); - static { - Node parent = commandTree.getTopNode(); + static final Tree commandTree = new Tree("gmlc"); + + static { + Node parent = commandTree.getTopNode(); + + Node set = parent.addChild("set"); + set.addChild("gmlcgt"); + set.addChild("gmlcssn"); + set.addChild("hlrssn"); + set.addChild("mscssn"); + + Node get = parent.addChild("get"); + get.addChild("gmlcgt"); + get.addChild("gmlcssn"); + set.addChild("hlrssn"); + set.addChild("mscssn"); + + } - Node set = parent.addChild("set"); - set.addChild("gmlcgt"); - set.addChild("gmlcssn"); - set.addChild("hlrssn"); - set.addChild("mscssn"); - - Node get = parent.addChild("get"); - get.addChild("gmlcgt"); - get.addChild("gmlcssn"); - set.addChild("hlrssn"); - set.addChild("mscssn"); + ; - }; + public GmlcCommandHandler() { + super(commandTree, CONNECT_MANDATORY_FLAG); + } - public GmlcCommandHandler() { - super(commandTree, CONNECT_MANDATORY_FLAG); - } + /* + * (non-Javadoc) + * + * @see + * org.mobicents.ss7.management.console.CommandHandler#isValid(java.lang.String) + */ + @Override + public void handle(CommandContext ctx, String commandLine) { + // TODO Validate command + if (commandLine.contains("--help")) { + this.printHelp(commandLine, ctx); + return; + } - /* - * (non-Javadoc) - * - * @see - * org.mobicents.ss7.management.console.CommandHandler#isValid(java.lang - * .String) - */ - @Override - public void handle(CommandContext ctx, String commandLine) { - // TODO Validate command - if (commandLine.contains("--help")) { - this.printHelp(commandLine, ctx); - return; - } - - ctx.sendMessage(commandLine); - } + ctx.sendMessage(commandLine); + } - /* - * (non-Javadoc) - * - * @see - * org.mobicents.ss7.management.console.CommandHandler#isAvailable(org.mobicents - * .ss7.management.console.CommandContext) - */ - @Override - public boolean isAvailable(CommandContext ctx) { - if (!ctx.isControllerConnected()) { - ctx.printLine("The command is not available in the current context. Please connnect first"); - return false; - } - return true; - } + /* + * (non-Javadoc) + * + * @see + * org.mobicents.ss7.management.console.CommandHandler#isAvailable(org.mobicents.ss7.management.console.CommandContext) + */ + @Override + public boolean isAvailable(CommandContext ctx) { + if (!ctx.isControllerConnected()) { + ctx.printLine("The command is not available in the current context. Please connect first"); + return false; + } + return true; + } } diff --git a/core/slee/services/sbbs/src/main/java/org/mobicents/gmlc/slee/MobileCoreNetworkInterfaceSbb.java b/core/slee/services/sbbs/src/main/java/org/mobicents/gmlc/slee/MobileCoreNetworkInterfaceSbb.java index 725d822..8b429dd 100644 --- a/core/slee/services/sbbs/src/main/java/org/mobicents/gmlc/slee/MobileCoreNetworkInterfaceSbb.java +++ b/core/slee/services/sbbs/src/main/java/org/mobicents/gmlc/slee/MobileCoreNetworkInterfaceSbb.java @@ -1,6 +1,6 @@ /* * TeleStax, Open Source Cloud Communications - * Copyright 2011-2013, Telestax Inc and individual contributors + * Copyright 2011-2018, Telestax Inc and individual contributors * by the @authors tag. * * This is free software; you can redistribute it and/or modify it diff --git a/core/slee/services/sbbs/src/main/java/org/mobicents/gmlc/slee/mlp/MLPException.java b/core/slee/services/sbbs/src/main/java/org/mobicents/gmlc/slee/mlp/MLPException.java index e986fdd..0dcfe16 100644 --- a/core/slee/services/sbbs/src/main/java/org/mobicents/gmlc/slee/mlp/MLPException.java +++ b/core/slee/services/sbbs/src/main/java/org/mobicents/gmlc/slee/mlp/MLPException.java @@ -1,6 +1,6 @@ /* * TeleStax, Open Source Cloud Communications - * Copyright 2011-2013, Telestax Inc and individual contributors + * Copyright 2011-2018, Telestax Inc and individual contributors * by the @authors tag. * * This is free software; you can redistribute it and/or modify it diff --git a/core/slee/services/sbbs/src/main/java/org/mobicents/gmlc/slee/mlp/MLPRequest.java b/core/slee/services/sbbs/src/main/java/org/mobicents/gmlc/slee/mlp/MLPRequest.java index 64e2bae..44cb6a5 100644 --- a/core/slee/services/sbbs/src/main/java/org/mobicents/gmlc/slee/mlp/MLPRequest.java +++ b/core/slee/services/sbbs/src/main/java/org/mobicents/gmlc/slee/mlp/MLPRequest.java @@ -1,6 +1,6 @@ /* * TeleStax, Open Source Cloud Communications - * Copyright 2011-2013, Telestax Inc and individual contributors + * Copyright 2011-2018, Telestax Inc and individual contributors * by the @authors tag. * * This is free software; you can redistribute it and/or modify it diff --git a/core/slee/services/sbbs/src/main/java/org/mobicents/gmlc/slee/mlp/MLPResponse.java b/core/slee/services/sbbs/src/main/java/org/mobicents/gmlc/slee/mlp/MLPResponse.java index 29c4ed4..46b7032 100644 --- a/core/slee/services/sbbs/src/main/java/org/mobicents/gmlc/slee/mlp/MLPResponse.java +++ b/core/slee/services/sbbs/src/main/java/org/mobicents/gmlc/slee/mlp/MLPResponse.java @@ -1,6 +1,6 @@ /* * TeleStax, Open Source Cloud Communications - * Copyright 2011-2013, Telestax Inc and individual contributors + * Copyright 2011-2018, Telestax Inc and individual contributors * by the @authors tag. * * This is free software; you can redistribute it and/or modify it @@ -303,11 +303,11 @@ public String getSystemErrorResponseXML(MLPResultType mlpClientErrorType, String /** * Internal XML generation support function for above getSystemErrorResponseXML() * - * @param mlpClientErrorType Error type to return to client - * @param mlpClientErrorMessage Error message to send to client - * @return String XML result to return to client - * @throws org.jibx.runtime.JiBXException JiBX had an internal failure of some kind while marshalling the XML - * @throws IOException IO error occurred while generating the XML result + * @param mlpClientErrorType Error type to return to client + * @param mlpClientErrorMessage Error message to send to client + * @return String XML result to return to client + * @throws org.jibx.runtime.JiBXException JiBX had an internal failure of some kind while marshalling the XML + * @throws IOException IO error occurred while generating the XML result */ private String generateSystemErrorXML(MLPResultType mlpClientErrorType, String mlpClientErrorMessage) throws org.jibx.runtime.JiBXException, IOException { @@ -404,9 +404,9 @@ public String getPositionErrorResponseXML(String msid, MLPResultType mlpClientEr * @param msid Device MSISDN * @param mlpClientErrorType Error type to return to client * @param mlpClientErrorMessage Error message to send to client - * @return String XML result to return to client + * @return String XML result to return to client * @throws org.jibx.runtime.JiBXException JiBX had an internal failure of some kind while marshalling the XML - * @throws IOException IO error occurred while generating the XML result + * @throws IOException IO error occurred while generating the XML result */ private String generatePositionErrorXML(String utcOffSet, String time, String msid, MLPResultType mlpClientErrorType, String mlpClientErrorMessage) throws org.jibx.runtime.JiBXException, IOException { @@ -456,10 +456,10 @@ private String generatePositionErrorXML(String utcOffSet, String time, String ms /** * Create the svc_result XML result for any type of result (error or success) * - * @param mlpSvcResult Fully filled in SvcResult object to marshal (convert to XML) - * @return String of XML result to send to client + * @param mlpSvcResult Fully filled in SvcResult object to marshal (convert to XML) + * @return String of XML result to send to client * @throws org.jibx.runtime.JiBXException JiBX had an internal failure of some kind while marshalling the XML - * @throws IOException IO error occurred while generating the XML result + * @throws IOException IO error occurred while generating the XML result */ private String marshalMlpResult(org.oma.protocols.mlp.svc_result.SvcResult mlpSvcResult) throws org.jibx.runtime.JiBXException, IOException { diff --git a/pom.xml b/pom.xml index 82050bf..f78b0c4 100644 --- a/pom.xml +++ b/pom.xml @@ -42,7 +42,7 @@ 1.3.4 ISO-8859-1 2.8.5 - 1.2.6 + 1.3.1 diff --git a/test-suite/src/main/java/org/mobicents/protocols/ss7/gmlc/load/Client.java b/test-suite/src/main/java/org/mobicents/protocols/ss7/gmlc/load/Client.java index 93d88d7..1207fab 100644 --- a/test-suite/src/main/java/org/mobicents/protocols/ss7/gmlc/load/Client.java +++ b/test-suite/src/main/java/org/mobicents/protocols/ss7/gmlc/load/Client.java @@ -1,6 +1,6 @@ /* * TeleStax, Open Source Cloud Communications - * Copyright 2011-2013, Telestax Inc and individual contributors + * Copyright 2011-2018, Telestax Inc and individual contributors * by the @authors tag. * * This is free software; you can redistribute it and/or modify it @@ -24,8 +24,6 @@ import java.math.BigInteger; import java.nio.charset.Charset; import java.util.ArrayList; -// import java.io.Serializable; -// import javolution.util.FastMap; import org.apache.log4j.Logger; import org.mobicents.protocols.api.IpChannelType; @@ -1717,8 +1715,7 @@ public void onSubscriberLocationReportResponse(SubscriberLocationReportResponse /* * (non-Javadoc) * - * @see org.mobicents.protocols.ss7.map.api.MAPServiceListener#onErrorComponent - * (org.mobicents.protocols.ss7.map.api.MAPDialog, java.lang.Long, + * @see org.mobicents.protocols.ss7.map.api.MAPServiceListener#onErrorComponent(org.mobicents.protocols.ss7.map.api.MAPDialog, java.lang.Long, * org.mobicents.protocols.ss7.map.api.errors.MAPErrorMessage) */ // @Override @@ -1769,8 +1766,8 @@ public void onDialogDelimiter(MAPDialog mapDialog) { /* * (non-Javadoc) * - * @see org.mobicents.protocols.ss7.map.api.MAPDialogListener#onDialogRequest - * (org.mobicents.protocols.ss7.map.api.MAPDialog, org.mobicents.protocols.ss7.map.api.primitives.AddressString, + * @see org.mobicents.protocols.ss7.map.api.MAPDialogListener#onDialogRequest(org.mobicents.protocols.ss7.map.api.MAPDialog, + * org.mobicents.protocols.ss7.map.api.primitives.AddressString, * org.mobicents.protocols.ss7.map.api.primitives.AddressString, * org.mobicents.protocols.ss7.map.api.primitives.MAPExtensionContainer) */ @@ -1791,9 +1788,10 @@ public void onDialogRequest(MAPDialog mapDialog, AddressString destReference, Ad /* * (non-Javadoc) * - * @see org.mobicents.protocols.ss7.map.api.MAPDialogListener#onDialogRequestEricsson - * (org.mobicents.protocols.ss7.map.api.MAPDialog, org.mobicents.protocols.ss7.map.api.primitives.AddressString, - * org.mobicents.protocols.ss7.map.api.primitives.AddressString, org.mobicents.protocols.ss7.map.api.primitives.IMSI, + * @see org.mobicents.protocols.ss7.map.api.MAPDialogListener#onDialogRequestEricsson(org.mobicents.protocols.ss7.map.api.MAPDialog, + * org.mobicents.protocols.ss7.map.api.primitives.AddressString, + * org.mobicents.protocols.ss7.map.api.primitives.AddressString, + * org.mobicents.protocols.ss7.map.api.primitives.IMSI, * org.mobicents.protocols.ss7.map.api.primitives.AddressString) */ @Override @@ -1811,7 +1809,7 @@ public void onDialogRequestEricsson(MAPDialog mapDialog, AddressString destRefer /* * (non-Javadoc) * - * @see org.mobicents.protocols.ss7.map.api.MAPDialogListener#onDialogAccept( org.mobicents.protocols.ss7.map.api.MAPDialog, + * @see org.mobicents.protocols.ss7.map.api.MAPDialogListener#onDialogAccept(org.mobicents.protocols.ss7.map.api.MAPDialog, * org.mobicents.protocols.ss7.map.api.primitives.MAPExtensionContainer) */ @Override @@ -1828,7 +1826,7 @@ public void onDialogAccept(MAPDialog mapDialog, MAPExtensionContainer extensionC /* * (non-Javadoc) * - * @see org.mobicents.protocols.ss7.map.api.MAPDialogListener#onDialogReject( org.mobicents.protocols.ss7.map.api.MAPDialog, + * @see org.mobicents.protocols.ss7.map.api.MAPDialogListener#onDialogReject(org.mobicents.protocols.ss7.map.api.MAPDialog, * org.mobicents.protocols.ss7.map.api.dialog.MAPRefuseReason, org.mobicents.protocols.ss7.map.api.dialog.MAPProviderError, * org.mobicents.protocols.ss7.tcap.asn.ApplicationContextName, * org.mobicents.protocols.ss7.map.api.primitives.MAPExtensionContainer) @@ -1844,8 +1842,8 @@ public void onDialogReject(MAPDialog mapDialog, MAPRefuseReason refuseReason, /* * (non-Javadoc) * - * @see org.mobicents.protocols.ss7.map.api.MAPDialogListener#onDialogUserAbort - * (org.mobicents.protocols.ss7.map.api.MAPDialog, org.mobicents.protocols.ss7.map.api.dialog.MAPUserAbortChoice, + * @see org.mobicents.protocols.ss7.map.api.MAPDialogListener#onDialogUserAbort(org.mobicents.protocols.ss7.map.api.MAPDialog, + * org.mobicents.protocols.ss7.map.api.dialog.MAPUserAbortChoice, * org.mobicents.protocols.ss7.map.api.primitives.MAPExtensionContainer) */ @Override @@ -1858,8 +1856,8 @@ public void onDialogUserAbort(MAPDialog mapDialog, MAPUserAbortChoice userReason /* * (non-Javadoc) * - * @see org.mobicents.protocols.ss7.map.api.MAPDialogListener#onDialogProviderAbort - * (org.mobicents.protocols.ss7.map.api.MAPDialog, org.mobicents.protocols.ss7.map.api.dialog.MAPAbortProviderReason, + * @see org.mobicents.protocols.ss7.map.api.MAPDialogListener#onDialogProviderAbort(org.mobicents.protocols.ss7.map.api.MAPDialog, + * org.mobicents.protocols.ss7.map.api.dialog.MAPAbortProviderReason, * org.mobicents.protocols.ss7.map.api.dialog.MAPAbortSource, * org.mobicents.protocols.ss7.map.api.primitives.MAPExtensionContainer) */ @@ -1889,7 +1887,7 @@ public void onDialogClose(MAPDialog mapDialog) { /* * (non-Javadoc) * - * @see org.mobicents.protocols.ss7.map.api.MAPDialogListener#onDialogNotice( org.mobicents.protocols.ss7.map.api.MAPDialog, + * @see org.mobicents.protocols.ss7.map.api.MAPDialogListener#onDialogNotice(org.mobicents.protocols.ss7.map.api.MAPDialog, * org.mobicents.protocols.ss7.map.api.dialog.MAPNoticeProblemDiagnostic) */ @Override @@ -1901,8 +1899,7 @@ public void onDialogNotice(MAPDialog mapDialog, MAPNoticeProblemDiagnostic notic /* * (non-Javadoc) * - * @see org.mobicents.protocols.ss7.map.api.MAPDialogListener#onDialogResease - * (org.mobicents.protocols.ss7.map.api.MAPDialog) + * @see org.mobicents.protocols.ss7.map.api.MAPDialogListener#onDialogResease(org.mobicents.protocols.ss7.map.api.MAPDialog) */ @Override public void onDialogRelease(MAPDialog mapDialog) { @@ -1937,8 +1934,7 @@ public void onDialogRelease(MAPDialog mapDialog) { /* * (non-Javadoc) * - * @see org.mobicents.protocols.ss7.map.api.MAPDialogListener#onDialogTimeout - * (org.mobicents.protocols.ss7.map.api.MAPDialog) + * @see org.mobicents.protocols.ss7.map.api.MAPDialogListener#onDialogTimeout(org.mobicents.protocols.ss7.map.api.MAPDialog) */ @Override public void onDialogTimeout(MAPDialog mapDialog) { diff --git a/test-suite/src/main/java/org/mobicents/protocols/ss7/gmlc/load/ClientServer.java b/test-suite/src/main/java/org/mobicents/protocols/ss7/gmlc/load/ClientServer.java index 06c2a04..95d31f6 100644 --- a/test-suite/src/main/java/org/mobicents/protocols/ss7/gmlc/load/ClientServer.java +++ b/test-suite/src/main/java/org/mobicents/protocols/ss7/gmlc/load/ClientServer.java @@ -1,6 +1,6 @@ /* * TeleStax, Open Source Cloud Communications - * Copyright 2011-2013, Telestax Inc and individual contributors + * Copyright 2011-2018, Telestax Inc and individual contributors * by the @authors tag. * * This is free software; you can redistribute it and/or modify it diff --git a/test-suite/src/main/java/org/mobicents/protocols/ss7/gmlc/load/Server.java b/test-suite/src/main/java/org/mobicents/protocols/ss7/gmlc/load/Server.java index 91fc205..44ab2ba 100644 --- a/test-suite/src/main/java/org/mobicents/protocols/ss7/gmlc/load/Server.java +++ b/test-suite/src/main/java/org/mobicents/protocols/ss7/gmlc/load/Server.java @@ -1,6 +1,6 @@ /* * TeleStax, Open Source Cloud Communications - * Copyright 2011-2013, Telestax Inc and individual contributors + * Copyright 2011-2018, Telestax Inc and individual contributors * by the @authors tag. * * This is free software; you can redistribute it and/or modify it @@ -261,8 +261,7 @@ private void initMAP() throws Exception { /* * (non-Javadoc) * - * @see org.mobicents.protocols.ss7.map.api.MAPDialogListener#onDialogDelimiter - * (org.mobicents.protocols.ss7.map.api.MAPDialog) + * @see org.mobicents.protocols.ss7.map.api.MAPDialogListener#onDialogDelimiter(org.mobicents.protocols.ss7.map.api.MAPDialog) */ @Override public void onDialogDelimiter(MAPDialog mapDialog) { @@ -399,8 +398,7 @@ public void onDialogNotice(MAPDialog mapDialog, MAPNoticeProblemDiagnostic notic /* * (non-Javadoc) * - * @see org.mobicents.protocols.ss7.map.api.MAPDialogListener#onDialogResease - * (org.mobicents.protocols.ss7.map.api.MAPDialog) + * @see org.mobicents.protocols.ss7.map.api.MAPDialogListener#onDialogResease(org.mobicents.protocols.ss7.map.api.MAPDialog) */ @Override public void onDialogRelease(MAPDialog mapDialog) { @@ -424,8 +422,7 @@ public void onDialogRelease(MAPDialog mapDialog) { /* * (non-Javadoc) * - * @see org.mobicents.protocols.ss7.map.api.MAPDialogListener#onDialogTimeout - * (org.mobicents.protocols.ss7.map.api.MAPDialog) + * @see org.mobicents.protocols.ss7.map.api.MAPDialogListener#onDialogTimeout(org.mobicents.protocols.ss7.map.api.MAPDialog) */ @Override public void onDialogTimeout(MAPDialog mapDialog) { diff --git a/test-suite/src/main/java/org/mobicents/protocols/ss7/gmlc/load/TestHarness.java b/test-suite/src/main/java/org/mobicents/protocols/ss7/gmlc/load/TestHarness.java index b14858b..12e3159 100644 --- a/test-suite/src/main/java/org/mobicents/protocols/ss7/gmlc/load/TestHarness.java +++ b/test-suite/src/main/java/org/mobicents/protocols/ss7/gmlc/load/TestHarness.java @@ -1,6 +1,6 @@ /* * TeleStax, Open Source Cloud Communications - * Copyright 2011-2013, Telestax Inc and individual contributors + * Copyright 2011-2018, Telestax Inc and individual contributors * by the @authors tag. * * This is free software; you can redistribute it and/or modify it