blob: 364585fff3d6b11a26494d8007d71d7b2c31ae38 [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.httppart;
import java.lang.reflect.*;
import org.apache.juneau.parser.*;
/**
* An implementation of {@link HttpPartParser} that takes in the strings and tries to convert them to POJOs using constructors and static create methods.
*
* <p>
* The class being created must be one of the following in order to convert it from a string:
*
* <ul>
* <li>
* An <jk>enum</jk>.
* <li>
* Have a public constructor with a single <c>String</c> parameter.
* <li>
* Have one of the following public static methods that takes in a single <c>String</c> parameter:
* <ul>
* <li><c>fromString</c>
* <li><c>fromValue</c>
* <li><c>valueOf</c>
* <li><c>parse</c>
* <li><c>parseString</c>
* <li><c>forName</c>
* <li><c>forString</c>
* </ul>
* </ul>
*/
public class SimplePartParser extends BaseHttpPartParser {
//-------------------------------------------------------------------------------------------------------------------
// Predefined instances
//-------------------------------------------------------------------------------------------------------------------
/** Reusable instance of {@link SimplePartParser}, all default settings. */
public static final SimplePartParser DEFAULT = new SimplePartParser();
//-------------------------------------------------------------------------------------------------------------------
// Instance
//-------------------------------------------------------------------------------------------------------------------
@Override
public SimplePartParserSession createPartSession(ParserSessionArgs args) {
return new SimplePartParserSession();
}
@Override /* HttpPartParser */
public <T> T parse(HttpPartType partType, HttpPartSchema schema, String in, Class<T> toType) throws ParseException, SchemaValidationException {
return createPartSession().parse(partType, schema, in, toType);
}
@Override /* HttpPartParser */
public <T> T parse(HttpPartType partType, HttpPartSchema schema, String in, Type toType, Type...toTypeArgs) throws ParseException, SchemaValidationException {
return createPartSession().parse(partType, schema, in, toType, toTypeArgs);
}
}