Renamed classes with a two-letter initialism according to convention

This commit is contained in:
delvh 2020-03-24 18:41:26 +01:00
parent 47473e9c47
commit 1302967fc4
3 changed files with 4 additions and 4 deletions

File diff suppressed because one or more lines are too long

View File

@ -38,7 +38,7 @@ public class Startup {
processors.add(new MessageProcessor());
processors.add(new MessageStatusChangeProcessor());
processors.add(new UserStatusChangeProcessor());
processors.add(new IdGeneratorRequestProcessor());
processors.add(new IDGeneratorRequestProcessor());
processors.add(new ContactsRequestEventProcessor());
processors.add(new ContactOperationProcessor());
Server server = new Server(8080, () -> new ObjectMessageReader(), new ObjectMessageProcessor(processors));

View File

@ -10,13 +10,13 @@ import envoy.server.net.ObjectWriteProxy;
/**
* Project: <strong>envoy-server-standalone</strong><br>
* File: <strong>IdGeneratorRequestProcessor.java</strong><br>
* File: <strong>IDGeneratorRequestProcessor.java</strong><br>
* Created: <strong>28 Jan 2020</strong><br>
*
* @author Kai S. K. Engelbart
* @since Envoy Server Standalone v0.1-alpha
*/
public class IdGeneratorRequestProcessor implements ObjectProcessor<IdGeneratorRequest> {
public class IDGeneratorRequestProcessor implements ObjectProcessor<IdGeneratorRequest> {
private static final long ID_RANGE = 200;