blob: 45f302ba6e44b57a7326caab721f263e1521bbc7 [file] [log] [blame]
/*
* The contents of this file are subject to the terms
* of the Common Development and Distribution License
* (the "License"). You may not use this file except
* in compliance with the License.
*
* You can obtain a copy of the license at
* http://www.opensource.org/licenses/cddl1.php
* See the License for the specific language governing
* permissions and limitations under the License.
*/
package javax.ws.rs.core;
import javax.ws.rs.core.Response.ResponseBuilder;
import javax.ws.rs.core.Variant.VariantListBuilder;
import javax.ws.rs.ext.RuntimeDelegate;
public class RuntimeDelegateStub extends RuntimeDelegate {
@Override
public UriBuilder createUriBuilder() {
return null;
}
@Override
public ResponseBuilder createResponseBuilder() {
return null;
}
@Override
public VariantListBuilder createVariantListBuilder() {
return null;
}
@Override
public <T> T createEndpoint(Application application, Class<T> endpointType) throws IllegalArgumentException, UnsupportedOperationException {
return null;
}
@Override
public <T> HeaderDelegate<T> createHeaderDelegate(Class<T> type) {
return null;
}
}