/forgerock/opendj-b2.6/src/server/org/opends/server/replication/protocol/ |
H A D | RoutableMsg.java | 32 * send them and the destination servers to which they should be sent. 57 * The destination server or servers of this message. 59 protected int destination = UNKNOWN_SERVER; field in class:RoutableMsg 68 * @param destination replication server id 70 public RoutableMsg(int serverID, int destination) argument 73 this.destination = destination; 84 * Get the destination. The value is a serverId, or ALL_SERVERS dedicated 86 * @return the destination 90 return this.destination; [all...] |
/forgerock/opendj2/src/server/org/opends/server/replication/protocol/ |
H A D | RoutableMsg.java | 32 * destination servers to which they should be sent. 62 * The destination server or servers of this message. 64 protected int destination = UNKNOWN_SERVER; field in class:RoutableMsg 73 * @param destination replication server id 75 public RoutableMsg(int serverID, int destination) argument 78 this.destination = destination; 89 * Get the destination. The value is a serverId, or ALL_SERVERS dedicated 91 * @return the destination 95 return this.destination; [all...] |
H A D | MonitorRequestMsg.java | 39 * The destination server or servers of this message. 41 private final int destination; field in class:MonitorRequestMsg 53 * @param destination 56 public MonitorRequestMsg(int serverID, int destination) argument 59 this.destination = destination; 80 this.destination = scanner.nextIntUTF8(); 90 builder.appendIntUTF8(destination); 95 * Get the destination. 97 * @return the destination [all...] |
H A D | InitializeRcvAckMsg.java | 48 * @param destination The destination server or servers of this message. 52 public InitializeRcvAckMsg(int sender, int destination, int numAck) argument 54 super(sender, destination); 75 destination = scanner.nextIntUTF8(); 86 builder.appendIntUTF8(destination); 97 " destination=" + this.destination +
|
H A D | EntryMsg.java | 47 * @param destination The destination of this message. 51 public EntryMsg(int serverID, int destination, byte[] entryBytes, int msgId) argument 53 this(serverID, destination, entryBytes, 0, entryBytes.length, msgId); 60 * @param destination The destination of this message. 66 public EntryMsg(int serverID, int destination, byte[] entryBytes, int startPos, argument 69 super(serverID, destination); 93 this.destination = scanner.nextIntUTF8(); 117 builder.appendIntUTF8(destination); [all...] |
H A D | InitializeRequestMsg.java | 48 * @param destination destination of this message 52 public InitializeRequestMsg(DN baseDN, int serverID, int destination, argument 55 super(serverID, destination); 78 destination = scanner.nextIntUTF8(); 108 builder.appendIntUTF8(destination); 124 + senderID + " destination=" + destination + " initWindow=" + initWindow;
|
H A D | DoneMsg.java | 65 this.destination = scanner.nextIntUTF8(); 75 builder.appendIntUTF8(destination);
|
/forgerock/opendj2.6.2/src/server/org/opends/server/replication/protocol/ |
H A D | RoutableMsg.java | 33 * destination servers to which they should be sent. 63 * The destination server or servers of this message. 65 protected int destination = UNKNOWN_SERVER; field in class:RoutableMsg 74 * @param destination replication server id 76 public RoutableMsg(int serverID, int destination) argument 79 this.destination = destination; 90 * Get the destination. The value is a serverId, or ALL_SERVERS dedicated 92 * @return the destination 96 return this.destination; [all...] |
H A D | MonitorRequestMsg.java | 41 * The destination server or servers of this message. 43 private final int destination; field in class:MonitorRequestMsg 57 * @param destination 60 public MonitorRequestMsg(int serverID, int destination) argument 63 this.destination = destination; 90 // destination 93 this.destination = Integer.valueOf(destinationString); 112 byte[] destinationBytes = String.valueOf(destination).getBytes("UTF-8"); 125 /* put the destination */ [all...] |
/forgerock/opendj2-jel-hg/src/server/org/opends/server/replication/protocol/ |
H A D | RoutableMsg.java | 32 * send them and the destination servers to which they should be sent. 57 * The destination server or servers of this message. 59 protected int destination = UNKNOWN_SERVER; field in class:RoutableMsg 68 * @param destination replication server id 70 public RoutableMsg(int serverID, int destination) argument 73 this.destination = destination; 84 * Get the destination. The value is a serverId, or ALL_SERVERS dedicated 86 * @return the destination 90 return this.destination; [all...] |
/forgerock/opendj2-hg/src/server/org/opends/server/replication/protocol/ |
H A D | RoutableMsg.java | 32 * destination servers to which they should be sent. 62 * The destination server or servers of this message. 64 protected int destination = UNKNOWN_SERVER; field in class:RoutableMsg 73 * @param destination replication server id 75 public RoutableMsg(int serverID, int destination) argument 78 this.destination = destination; 89 * Get the destination. The value is a serverId, or ALL_SERVERS dedicated 91 * @return the destination 95 return this.destination; [all...] |
H A D | MonitorRequestMsg.java | 39 * The destination server or servers of this message. 41 private final int destination; field in class:MonitorRequestMsg 53 * @param destination 56 public MonitorRequestMsg(int serverID, int destination) argument 59 this.destination = destination; 80 this.destination = scanner.nextIntUTF8(); 90 builder.appendIntUTF8(destination); 95 * Get the destination. 97 * @return the destination [all...] |
H A D | InitializeRcvAckMsg.java | 48 * @param destination The destination server or servers of this message. 52 public InitializeRcvAckMsg(int sender, int destination, int numAck) argument 54 super(sender, destination); 75 destination = scanner.nextIntUTF8(); 86 builder.appendIntUTF8(destination); 97 " destination=" + this.destination +
|
H A D | EntryMsg.java | 47 * @param destination The destination of this message. 51 public EntryMsg(int serverID, int destination, byte[] entryBytes, int msgId) argument 53 this(serverID, destination, entryBytes, 0, entryBytes.length, msgId); 60 * @param destination The destination of this message. 66 public EntryMsg(int serverID, int destination, byte[] entryBytes, int startPos, argument 69 super(serverID, destination); 93 this.destination = scanner.nextIntUTF8(); 117 builder.appendIntUTF8(destination); [all...] |
H A D | InitializeRequestMsg.java | 48 * @param destination destination of this message 52 public InitializeRequestMsg(DN baseDN, int serverID, int destination, argument 55 super(serverID, destination); 78 destination = scanner.nextIntUTF8(); 108 builder.appendIntUTF8(destination); 124 + senderID + " destination=" + destination + " initWindow=" + initWindow;
|
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/replication/protocol/ |
H A D | RoutableMsg.java | 34 * destination servers to which they should be sent. 64 * The destination server or servers of this message. 66 protected int destination = UNKNOWN_SERVER; field in class:RoutableMsg 75 * @param destination replication server id 77 public RoutableMsg(int serverID, int destination) argument 80 this.destination = destination; 91 * Get the destination. The value is a serverId, or ALL_SERVERS dedicated 93 * @return the destination 97 return this.destination; [all...] |
H A D | MonitorRequestMsg.java | 39 * The destination server or servers of this message. 41 private final int destination; field in class:MonitorRequestMsg 53 * @param destination 56 public MonitorRequestMsg(int serverID, int destination) argument 59 this.destination = destination; 82 this.destination = scanner.nextIntUTF8(); 92 builder.appendIntUTF8(destination); 97 * Get the destination. 99 * @return the destination [all...] |
H A D | InitializeRcvAckMsg.java | 48 * @param destination The destination server or servers of this message. 52 public InitializeRcvAckMsg(int sender, int destination, int numAck) argument 54 super(sender, destination); 75 destination = scanner.nextIntUTF8(); 86 builder.appendIntUTF8(destination); 97 " destination=" + this.destination +
|
H A D | EntryMsg.java | 48 * @param destination The destination of this message. 52 public EntryMsg(int serverID, int destination, byte[] entryBytes, int msgId) argument 54 this(serverID, destination, entryBytes, 0, entryBytes.length, msgId); 61 * @param destination The destination of this message. 67 public EntryMsg(int serverID, int destination, byte[] entryBytes, int startPos, argument 70 super(serverID, destination); 94 this.destination = scanner.nextIntUTF8(); 118 builder.appendIntUTF8(destination); [all...] |
H A D | ErrorMsg.java | 59 * Creates an ErrorMsg providing the destination server. 62 * @param destination The destination server or servers of this message. 65 public ErrorMsg(int sender, int destination, LocalizableMessage details) argument 67 super(sender, destination); 82 * @param destination replication server id 85 public ErrorMsg(int destination, LocalizableMessage details) argument 87 this(-2, destination, details); 114 destination = scanner.nextIntUTF8(); 155 builder.appendIntUTF8(destination); [all...] |
H A D | InitializeRequestMsg.java | 48 * @param destination destination of this message 52 public InitializeRequestMsg(DN baseDN, int serverID, int destination, argument 55 super(serverID, destination); 78 destination = scanner.nextIntUTF8(); 108 builder.appendIntUTF8(destination); 124 + senderID + " destination=" + destination + " initWindow=" + initWindow;
|
/forgerock/openam/openam-ui/openam-ui-ria/src/main/js/org/forgerock/openam/ui/user/anonymousProcess/ |
H A D | SelfRegistrationView.js | 29 function shouldRouteToLoginView (response, destination) { 30 return response.type === "selfRegistration" && response.tag === "end" && destination === "login"; 33 function shouldAutoLogin (response, destination) { 34 return response.type === "autoLoginStage" && response.tag === "end" && destination === "auto-login"; 46 const destination = _.get(Configuration, "globalData.successfulUserRegistrationDestination"); 49 if (shouldAutoLogin(response, destination)) { 54 } else if (shouldRouteToLoginView(response, destination)) {
|
/forgerock/opendj2/src/quicksetup/org/opends/quicksetup/util/ |
H A D | ZipExtractor.java | 139 * @param destination File where the zip file will be extracted 142 public void extract(File destination) throws ApplicationException { argument 143 extract(Utils.getPath(destination)); 148 * @param destination File where the zip file will be extracted 151 public void extract(String destination) throws ApplicationException { argument 152 extract(destination, true); 160 * when copied to the destination folder. So for instance if the zip entry's 161 * name was /OpenDJ-2.4.x/some_file the file would appear in the destination 208 File destination = new File(destDir, name); 209 copyZipEntry(entry, destination, zipI 272 copyZipEntry(ZipEntry entry, File destination, ZipInputStream is, int ratioBeforeCompleted, int ratioWhenCompleted, Map<String, ArrayList<String>> permissions) argument [all...] |
/forgerock/opendj-b2.6/src/quicksetup/org/opends/quicksetup/util/ |
H A D | ZipExtractor.java | 140 * @param destination File where the zip file will be extracted 143 public void extract(File destination) throws ApplicationException { argument 144 extract(Utils.getPath(destination)); 149 * @param destination File where the zip file will be extracted 152 public void extract(String destination) throws ApplicationException { argument 153 extract(destination, true); 161 * when copied to the destination folder. So for instance if the zip entry's 162 * name was /OpenDJ-2.4.x/some_file the file would appear in the destination 209 File destination = new File(destDir, name); 210 copyZipEntry(entry, destination, zipI 273 copyZipEntry(ZipEntry entry, File destination, ZipInputStream is, int ratioBeforeCompleted, int ratioWhenCompleted, Map<String, ArrayList<String>> permissions) argument [all...] |
/forgerock/opendj2.6.2/src/quicksetup/org/opends/quicksetup/util/ |
H A D | ZipExtractor.java | 140 * @param destination File where the zip file will be extracted 143 public void extract(File destination) throws ApplicationException { argument 144 extract(Utils.getPath(destination)); 149 * @param destination File where the zip file will be extracted 152 public void extract(String destination) throws ApplicationException { argument 153 extract(destination, true); 161 * when copied to the destination folder. So for instance if the zip entry's 162 * name was /OpenDJ-2.4.x/some_file the file would appear in the destination 209 File destination = new File(destDir, name); 210 copyZipEntry(entry, destination, zipI 273 copyZipEntry(ZipEntry entry, File destination, ZipInputStream is, int ratioBeforeCompleted, int ratioWhenCompleted, Map<String, ArrayList<String>> permissions) argument [all...] |