All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.juneau.httppart.SimplePartSerializer Maven / Gradle / Ivy

// ***************************************************************************************************************************
// * 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 org.apache.juneau.*;
import org.apache.juneau.internal.*;
import org.apache.juneau.reflect.*;
import org.apache.juneau.utils.*;

/**
 * An implementation of {@link HttpPartSerializer} that simply serializes everything using {@link Object#toString()}.
 *
 * 

* More precisely, uses the {@link Mutaters#toString(Object)} method to stringify objects. * *

Notes:
    *
  • This class is thread safe and reusable. *
* *
See Also:
*/ public class SimplePartSerializer extends BaseHttpPartSerializer { //----------------------------------------------------------------------------------------------------------------- // Static //----------------------------------------------------------------------------------------------------------------- /** Reusable instance of {@link SimplePartSerializer}, all default settings. */ public static final SimplePartSerializer DEFAULT = create().build(); /** * Creates a new builder for this object. * * @return A new builder. */ public static Builder create() { return new Builder(); } //------------------------------------------------------------------------------------------------------------------- // Builder //------------------------------------------------------------------------------------------------------------------- /** * Builder class. */ public static class Builder extends BaseHttpPartSerializer.Builder { private static final Cache CACHE = Cache.of(HashKey.class, SimplePartSerializer.class).build(); /** * Constructor. */ protected Builder() { } /** * Copy constructor. * * @param copyFrom The builder to copy. */ protected Builder(Builder copyFrom) { super(copyFrom); } @Override public SimplePartSerializer build() { return cache(CACHE).build(SimplePartSerializer.class); } @Override public Builder copy() { return new Builder(this); } @Override /* GENERATED - org.apache.juneau.Context.Builder */ public Builder cache(Cache value) { super.cache(value); return this; } } //------------------------------------------------------------------------------------------------------------------- // Instance //------------------------------------------------------------------------------------------------------------------- /** * Constructor * * @param builder The builder for this object. */ public SimplePartSerializer(Builder builder) { super(builder); } @Override public SimplePartSerializerSession getPartSession() { return new SimplePartSerializerSession(); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy