Files
Signal-Server/src/main/java/org/whispersystems/textsecuregcm/controllers/FederationController.java
2014-07-16 17:24:01 -07:00

20 lines
680 B
Java

package org.whispersystems.textsecuregcm.controllers;
import org.whispersystems.textsecuregcm.storage.AccountsManager;
public class FederationController {
protected final AccountsManager accounts;
protected final AttachmentController attachmentController;
protected final MessageController messageController;
public FederationController(AccountsManager accounts,
AttachmentController attachmentController,
MessageController messageController)
{
this.accounts = accounts;
this.attachmentController = attachmentController;
this.messageController = messageController;
}
}