|
|
|
@ -1,5 +1,5 @@ |
|
|
|
/* |
|
|
|
/* |
|
|
|
* Copyright 2002-2023 the original author or authors. |
|
|
|
* Copyright 2002-2025 the original author or authors. |
|
|
|
* |
|
|
|
* |
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License"); |
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License"); |
|
|
|
* you may not use this file except in compliance with the License. |
|
|
|
* you may not use this file except in compliance with the License. |
|
|
|
@ -44,7 +44,11 @@ public class UserDestinationResult { |
|
|
|
private final Set<String> sessionIds; |
|
|
|
private final Set<String> sessionIds; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public UserDestinationResult(String sourceDestination, Set<String> targetDestinations, |
|
|
|
/** |
|
|
|
|
|
|
|
* Main constructor. |
|
|
|
|
|
|
|
*/ |
|
|
|
|
|
|
|
public UserDestinationResult( |
|
|
|
|
|
|
|
String sourceDestination, Set<String> targetDestinations, |
|
|
|
String subscribeDestination, @Nullable String user) { |
|
|
|
String subscribeDestination, @Nullable String user) { |
|
|
|
|
|
|
|
|
|
|
|
this(sourceDestination, targetDestinations, subscribeDestination, user, null); |
|
|
|
this(sourceDestination, targetDestinations, subscribeDestination, user, null); |
|
|
|
@ -114,7 +118,6 @@ public class UserDestinationResult { |
|
|
|
/** |
|
|
|
/** |
|
|
|
* Return the session id for the targetDestination. |
|
|
|
* Return the session id for the targetDestination. |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
@Nullable |
|
|
|
|
|
|
|
public Set<String> getSessionIds() { |
|
|
|
public Set<String> getSessionIds() { |
|
|
|
return this.sessionIds; |
|
|
|
return this.sessionIds; |
|
|
|
} |
|
|
|
} |
|
|
|
|