9 lines
371 B
Java
9 lines
371 B
Java
|
|
package com.polar.nextcloudservices.Services;
|
||
|
|
|
||
|
|
public class NotificationServiceComponents {
|
||
|
|
public static final Integer SERVICE_COMPONENT_API = 0x1;
|
||
|
|
public static final Integer SERVICE_COMPONENT_CONNECTION = 0x2;
|
||
|
|
public static final Integer SERVICE_COMPONENT_NOTIFICATION_CONTROLLER = 0x3;
|
||
|
|
public static final Integer SERVICE_COMPONENT_WEBSOCKET = 0x4;
|
||
|
|
}
|