blob: 209e2970dc0befc8cbd4d535df49368e8618f983 [file] [log] [blame]
// ***************************************************************************************************************************
// * 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.juneau.rest;
import org.apache.juneau.*;
import org.apache.juneau.internal.*;
/**
* Denotes the default resolver for child resources.
*
* The default implementation simply instantiates the class using one of the following constructors:
* <ul>
* <li><code><jk>public</jk> T(RestContextBuilder)</code>
* <li><code><jk>public</jk> T()</code>
* </ul>
*
* <p>
* The former constructor can be used to get access to the {@link RestContextBuilder} object to get access to the
* config file and initialization information or make programmatic modifications to the resource before
* full initialization.
*
* <p>
* Child classes can also be defined as inner-classes of the parent resource class.
*
* <ul class='seealso'>
* <li class='link'>{@doc juneau-rest-server.Instantiation.ResourceResolvers}
* </ul>
*/
public class BasicRestResourceResolver extends FuzzyResourceResolver implements RestResourceResolver {
@Override /* RestResourceResolver */
public <T> T resolve(Object parent, Class<T> c, RestContextBuilder builder, Object...args) {
return resolve(parent, c, ArrayUtils.append(args, builder));
}
}