Searched defs:protocolVersion (Results 51 - 75 of 200) sorted by relevance

12345678

/forgerock/opendj2-jel-hg/src/server/org/opends/server/replication/protocol/
H A DWindowMsg.java97 public byte[] getBytes(short protocolVersion) argument
/forgerock/opendj2-hg/src/server/org/opends/server/replication/protocol/
H A DChangeStatusMsg.java87 public byte[] getBytes(short protocolVersion) argument
H A DChangeTimeHeartbeatMsg.java113 public byte[] getBytes(short protocolVersion) argument
115 if (protocolVersion < ProtocolVersion.REPLICATION_PROTOCOL_V7)
H A DDoneMsg.java70 public byte[] getBytes(short protocolVersion) argument
H A DInitializeRcvAckMsg.java81 public byte[] getBytes(short protocolVersion) argument
H A DMonitorRequestMsg.java85 public byte[] getBytes(short protocolVersion) argument
H A DNotSupportedOldVersionPDUException.java44 private short protocolVersion = -1; // protocol version of the pdu field in class:NotSupportedOldVersionPDUException
50 * @param protocolVersion PDU protocol version.
54 short protocolVersion, byte pduType)
58 ") from protocol version " + protocolVersion;
59 this.protocolVersion = protocolVersion;
96 return protocolVersion;
53 NotSupportedOldVersionPDUException(String pduStr, short protocolVersion, byte pduType) argument
H A DReplicaOfflineMsg.java71 protocolVersion = scanner.nextShort();
91 public byte[] getBytes(short protocolVersion) argument
93 if (protocolVersion < ProtocolVersion.REPLICATION_PROTOCOL_V8)
99 builder.appendShort(protocolVersion);
H A DResetGenerationIdMsg.java69 public byte[] getBytes(short protocolVersion) argument
H A DWindowMsg.java77 public byte[] getBytes(short protocolVersion) argument
/forgerock/openam-v13/openam-restlet/src/main/java/org/forgerock/openam/rest/service/
H A DResourceApiVersionRoutingFilter.java70 private void addContentAPIVersion(Response response, Version protocolVersion, Version resourceVersion) { argument
72 new ContentApiVersionHeader(protocolVersion, resourceVersion).toString());
/forgerock/openam-v13/openam-rest/src/main/java/org/forgerock/openam/rest/
H A DCrestProtocolEnforcementFilter.java82 private void enforceProtocolVersion(Version protocolVersion) throws BadRequestException { argument
83 if (protocolVersion != null && protocolVersion.getMajor() != ENFORCE_PROTOCOL_VERSION.getMajor()) {
84 throw new BadRequestException("Unsupported major version: " + protocolVersion);
85 } else if (protocolVersion != null && protocolVersion.getMinor() > ENFORCE_PROTOCOL_VERSION.getMinor()) {
86 throw new BadRequestException("Unsupported minor version: " + protocolVersion);
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/replication/protocol/
H A DChangeStatusMsg.java87 public byte[] getBytes(short protocolVersion) argument
H A DChangeTimeHeartbeatMsg.java113 public byte[] getBytes(short protocolVersion) argument
115 if (protocolVersion < ProtocolVersion.REPLICATION_PROTOCOL_V7)
H A DDoneMsg.java70 public byte[] getBytes(short protocolVersion) argument
H A DInitializeRcvAckMsg.java81 public byte[] getBytes(short protocolVersion) argument
H A DMonitorRequestMsg.java87 public byte[] getBytes(short protocolVersion) argument
H A DNotSupportedOldVersionPDUException.java47 private short protocolVersion = -1; field in class:NotSupportedOldVersionPDUException
54 * @param protocolVersion PDU protocol version.
58 short protocolVersion, byte pduType)
62 ") from protocol version " + protocolVersion;
63 this.protocolVersion = protocolVersion;
96 return protocolVersion;
57 NotSupportedOldVersionPDUException(String pduStr, short protocolVersion, byte pduType) argument
H A DReplicaOfflineMsg.java71 protocolVersion = scanner.nextShort();
91 public byte[] getBytes(short protocolVersion) argument
93 if (protocolVersion < ProtocolVersion.REPLICATION_PROTOCOL_V8)
99 builder.appendShort(protocolVersion);
H A DResetGenerationIdMsg.java69 public byte[] getBytes(short protocolVersion) argument
H A DWindowMsg.java77 public byte[] getBytes(short protocolVersion) argument
/forgerock/openam/openam-restlet/src/main/java/org/forgerock/openam/rest/service/
H A DResourceApiVersionRoutingFilter.java70 private void addContentAPIVersion(Response response, Version protocolVersion, Version resourceVersion) { argument
72 new ContentApiVersionHeader(protocolVersion, resourceVersion).toString());
/forgerock/opendj-b2.6/src/server/org/opends/server/protocols/ldap/
H A DBindRequestProtocolOp.java68 private int protocolVersion; field in class:BindRequestProtocolOp
80 * @param protocolVersion The LDAP protocol version for this bind request.
83 public BindRequestProtocolOp(ByteString dn, int protocolVersion, argument
87 this.protocolVersion = protocolVersion;
113 protocolVersion = 3;
138 return protocolVersion;
226 stream.writeInteger(protocolVersion);
257 buffer.append(protocolVersion);
309 buffer.append(protocolVersion);
[all...]
/forgerock/opendj-b2.6/src/server/org/opends/server/replication/protocol/
H A DAckMsg.java217 public byte[] getBytes(short protocolVersion) argument
H A DECLUpdateMsg.java182 public byte[] getBytes(short protocolVersion) argument
189 byte[] byteUpdateMsg = updateMsg.getBytes(protocolVersion);

Completed in 78 milliseconds

12345678