Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions src/main/java/com/cloudhopper/smpp/SmppConstants.java
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,8 @@
*/
public class SmppConstants {

private SmppConstants() {}

//
// SMPP Data Types
//
Expand Down
2 changes: 2 additions & 0 deletions src/main/java/com/cloudhopper/smpp/channel/ChannelUtil.java
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@
*/
public class ChannelUtil {

private ChannelUtil() {}

/**
* Create a name for the channel based on the remote host's IP and port.
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@
*/
public class SmppChannelConstants {

private SmppChannelConstants() {}

public static final String PIPELINE_SERVER_CONNECTOR_NAME = "smppServerConnector";

// default channel handler used only during connects
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,9 @@
* @author joelauer (twitter: @jjlauer or <a href="http://twitter.com/jjlauer" target=window>http://twitter.com/jjlauer</a>)
*/
public class ChannelBufferUtil {

private ChannelBufferUtil() {}

private static final Logger logger = LoggerFactory.getLogger(ChannelBufferUtil.class);

/**
Expand Down
2 changes: 2 additions & 0 deletions src/main/java/com/cloudhopper/smpp/util/DaemonExecutors.java
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@
*/
public class DaemonExecutors {

private DaemonExecutors() {}

/**
* Utility method for creating a cached pool of "daemon" threads. A daemon
* thread does not limit the JVM from exiting if they aren't shutdown.
Expand Down
2 changes: 2 additions & 0 deletions src/main/java/com/cloudhopper/smpp/util/PduUtil.java
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@
*/
public class PduUtil {

private PduUtil() {}

/**
* Calculates size of a "C-String" by returning the length of the String
* plus 1 (for the NULL byte). If the parameter is null, will return 1.
Expand Down
3 changes: 3 additions & 0 deletions src/main/java/com/cloudhopper/smpp/util/SmppSessionUtil.java
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,9 @@
* @author joelauer (twitter: @jjlauer or <a href="http://twitter.com/jjlauer" target=window>http://twitter.com/jjlauer</a>)
*/
public class SmppSessionUtil {

private SmppSessionUtil() {}

private static final Logger logger = LoggerFactory.getLogger(SmppSessionUtil.class);

static public void close(SmppSession session) {
Expand Down
2 changes: 2 additions & 0 deletions src/main/java/com/cloudhopper/smpp/util/SmppUtil.java
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,8 @@
*/
public class SmppUtil {

private SmppUtil() {}

/**
* Does the "esm_class" value have a message type set at all? This basically
* checks if the "esm_class" could either be SMSC delivery receipt, ESME delivery receipt,
Expand Down
2 changes: 2 additions & 0 deletions src/main/java/com/cloudhopper/smpp/util/TlvUtil.java
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@
* @author joelauer (twitter: @jjlauer or <a href="http://twitter.com/jjlauer" target=window>http://twitter.com/jjlauer</a>)
*/
public class TlvUtil {

private TlvUtil() {}

/**
* Writes a variable length C-String (null terminated) TLV. If the String
Expand Down