001/**
002 *
003 * Copyright 2020 Florian Schmaus.
004 *
005 * Licensed under the Apache License, Version 2.0 (the "License");
006 * you may not use this file except in compliance with the License.
007 * You may obtain a copy of the License at
008 *
009 *     http://www.apache.org/licenses/LICENSE-2.0
010 *
011 * Unless required by applicable law or agreed to in writing, software
012 * distributed under the License is distributed on an "AS IS" BASIS,
013 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
014 * See the License for the specific language governing permissions and
015 * limitations under the License.
016 */
017package org.jivesoftware.smackx.xdata;
018
019public class TextSingleFormField extends AbstractSingleStringValueFormField {
020
021    protected TextSingleFormField(Builder builder) {
022        super(builder);
023    }
024
025    public Builder asBuilder() {
026        return new Builder(this);
027    }
028
029    public static final class Builder
030                    extends AbstractSingleStringValueFormField.Builder<TextSingleFormField, TextSingleFormField.Builder> {
031
032        private Builder(TextSingleFormField textSingleFormField) {
033            super(textSingleFormField);
034        }
035
036        Builder(String fieldName, FormField.Type type) {
037            super(fieldName, type);
038        }
039
040        @Override
041        public TextSingleFormField build() {
042            return new TextSingleFormField(this);
043        }
044
045        @Override
046        public Builder getThis() {
047            return this;
048        }
049    }
050
051}