Author: markt Date: Tue Mar 8 10:31:29 2016 New Revision: 1734048 URL: http://svn.apache.org/viewvc?rev=1734048&view=rev Log: Add missing class
Added: tomcat/trunk/java/org/apache/coyote/PushToken.java (with props) Added: tomcat/trunk/java/org/apache/coyote/PushToken.java URL: http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/coyote/PushToken.java?rev=1734048&view=auto ============================================================================== --- tomcat/trunk/java/org/apache/coyote/PushToken.java (added) +++ tomcat/trunk/java/org/apache/coyote/PushToken.java Tue Mar 8 10:31:29 2016 @@ -0,0 +1,44 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package org.apache.coyote; + +import java.util.concurrent.atomic.AtomicBoolean; + +/** + * Token used during the HTTP/2 server push process. + */ +public class PushToken { + + private final AtomicBoolean result = new AtomicBoolean(false); + private final Request pushTarget; + + public PushToken(Request pushTarget) { + this.pushTarget = pushTarget; + } + + public Request getPushTarget() { + return pushTarget; + } + + public void setResult(boolean result) { + this.result.set(result); + } + + public boolean getResult() { + return result.get(); + } +} Propchange: tomcat/trunk/java/org/apache/coyote/PushToken.java ------------------------------------------------------------------------------ svn:eol-style = native --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org