Searched defs:response (Results 1 - 25 of 46) sorted by relevance

12

/openjdk7/jdk/src/macosx/classes/com/apple/eawt/
H A DQuitHandler.java51 * @param response the one-shot response object used to cancel or proceed with the quit action.
53 public void handleQuitRequestWith(final QuitEvent e, final QuitResponse response); argument
H A D_AppEventLegacyHandler.java162 public void handleQuitRequestWith(final QuitEvent e, final QuitResponse response) { argument
/openjdk7/jdk/src/share/classes/javax/smartcardio/
H A DCardChannel.java79 * response APDU.
95 * <li><p>if the response APDU has an SW1 of <code>61</code>, the
99 * received. The response body of these exchanges is concatenated
100 * to form the final response body.
102 * <li><p>if the response APDU is <code>6C XX</code>, the implementation
111 * @return the response APDU received from the card
125 * the reponse APDU in the response ByteBuffer.
132 * will have received the response APDU bytes. Its position will have
145 * of response APDUs with the SW1 values <code>61</code> or <code>6C</code>.
148 * @param response th
163 transmit(ByteBuffer command, ByteBuffer response) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/api/server/
H A DAsyncProviderCallback.java40 * send out an actual response at some later point.
51 * @param response
53 * as a response. To indicate one-way, response needs to be null
55 void send(@Nullable T response); argument
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/protocol/soap/
H A DClientMUTube.java57 * Do MU Header Processing on incoming message (response)
61 * call the previous pipes with response packet
66 public NextAction processResponse(Packet response) { argument
67 if (response.getMessage() == null) {
68 return super.processResponse(response);
70 HandlerConfiguration handlerConfig = response.handlerConfig;
83 // response.getMessage().getHeaders(), roles,
86 //Use from binding instead of defaults in case response packet does not have it,
90 Set<QName> misUnderstoodHeaders = getMisUnderstoodHeaders(response.getMessage().getHeaders(), handlerConfig.getRoles(),handlerConfig.getHandlerKnownHeaders());
92 return super.processResponse(response);
[all...]
/openjdk7/jdk/test/sun/net/www/http/KeepAliveStream/
H A DKeepAliveStreamClose.java49 // simulated HTTP server response
50 static String response = "HTTP/1.1 200 OK\nDate: Thu, 07 Dec 2000 11:32:28 GMT\n"+ field in class:KeepAliveStreamClose.XServer
63 os.write (response.getBytes());
/openjdk7/jdk/src/share/classes/javax/security/sasl/
H A DSaslServer.java49 * response. It then might use the server as follows:
53 * byte[] challenge = ss.evaluateResponse(response);
59 * response = ldap.readBindRequest();
98 * Evaluates the response data and generates a challenge.
100 * If a response is received from the client during the authentication
109 * response is needed from the client.
111 * @param response The non-null (but possibly empty) response sent
118 * the response or generating a challenge.
120 public abstract byte[] evaluateResponse(byte[] response) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/processor/model/
H A DModelVisitor.java38 public void visit(Response response) throws Exception; argument
H A DExtendedModelVisitor.java73 Response response = operation.getResponse();
74 if (response != null) {
75 preVisit(response);
76 for (Iterator iter4 = response.getHeaderBlocks();
82 for (Iterator iter4 = response.getBodyBlocks();
88 for (Iterator iter4 = response.getParameters();
94 postVisit(response);
130 protected void preVisit(Response response) throws Exception {} argument
131 protected void postVisit(Response response) throws Exception {} argument
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/addressing/
H A DWsaClientTube.java50 // determine if its oneway for response validation.
71 public @NotNull NextAction processResponse(Packet response) { argument
73 if (response.getMessage() != null) {
74 response = validateInboundHeaders(response);
75 response.addSatellite(new WsaPropertyBag(addressingVersion,soapVersion,response));
78 return doReturnWith(response);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/api/pipe/
H A DTube.java99 * A pipeline is not reentrant; one pipeline is used to process one request/response
100 * at at time. The same pipeline instance may serve multiple request/response,
276 * Acts on a response and performs some protocol specific operation.
280 * will be always invoked with the response, before this {@link Tube}
283 * @param response
286 * a response to the request message passed to
290 * that there was no response. This is used for things like
299 @NotNull NextAction processResponse(@NotNull Packet response); argument
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/api/pipe/helper/
H A DAbstractFilterTubeImpl.java70 public @NotNull NextAction processResponse(Packet response) { argument
71 return doReturnWith(response);
H A DAbstractTubeImpl.java72 protected final NextAction doReturnWith(Packet response) { argument
74 na.returnWith(response);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/client/dispatch/
H A DDataSourceDispatch.java72 DataSource toReturnValue(Packet response) { argument
73 Message message = response.getMessage();
H A DMessageDispatch.java58 Message toReturnValue(Packet response) { argument
59 return response.getMessage();
H A DRESTSourceDispatch.java67 Source toReturnValue(Packet response) { argument
68 Message msg = response.getMessage();
H A DSOAPMessageDispatch.java81 SOAPMessage toReturnValue(Packet response) { argument
85 if ( response ==null || response.getMessage() == null )
88 return response.getMessage().readAsSOAPMessage();
H A DSOAPSourceDispatch.java69 Source toReturnValue(Packet response) { argument
70 Message msg = response.getMessage();
H A DJAXBDispatch.java75 Object toReturnValue(Packet response) { argument
78 Message msg = response.getMessage();
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/server/provider/
H A DSyncProviderInvokerTube.java71 Packet response = argsBuilder.getResponse(request,e,port,binding);
72 return doReturnWith(response);
75 // Oneway. Send response code immediately for transports(like HTTP)
81 Packet response = argsBuilder.getResponse(request,returnValue,port,binding);
82 return doReturnWith(response);
85 public NextAction processResponse(Packet response) { argument
H A DAsyncProviderInvokerTube.java76 // it receives response.
127 public @NotNull NextAction processResponse(@NotNull Packet response) { argument
128 return doReturnWith(response);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/server/sei/
H A DSEIInvokerTube.java78 * return value, and response Holder arguments are used to create a new {@link Message}
93 public @NotNull NextAction processResponse(@NotNull Packet response) { argument
/openjdk7/jdk/test/java/net/URLConnection/
H A DResendPostBody.java54 StringBuffer response; field in class:ResendPostBody.Server
96 response = new StringBuffer (1024);
105 response.append ("HTTP/1.1 200 OK\r\n");
106 response.append ("Server: Microsoft-IIS/5.0");
107 response.append ("Date: Wed, 26 Jul 2000 14:17:04 GMT\r\n\r\n");
108 out.write (response.toString().getBytes());
166 /* Read the response */
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/client/
H A DClientSchemaValidationTube.java125 public NextAction processResponse(Packet response) { argument
126 if (isNoValidation() || !feature.isInbound() || response.getMessage() == null || !response.getMessage().hasPayload() || response.getMessage().isFault()) {
127 return super.processResponse(response);
130 doProcess(response);
134 return super.processResponse(response);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/server/
H A DServerSchemaValidationTube.java126 public NextAction processResponse(Packet response) { argument
127 if (isNoValidation() || !feature.isOutbound() || response.getMessage() == null || !response.getMessage().hasPayload() || response.getMessage().isFault()) {
128 return super.processResponse(response);
131 doProcess(response);
136 return super.processResponse(response);

Completed in 99 milliseconds

12