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

com.acrolinx.client.sdk.platform.CustomFieldDescriptor Maven / Gradle / Ivy

There is a newer version: 1.0.22
Show newest version
/**
 * Copyright (c) 2019-present Acrolinx GmbH
 */

package com.acrolinx.client.sdk.platform;

import java.util.List;

public class CustomFieldDescriptor
{
    private String key;
    private String displayName;
    private String inputType;
    private String type;
    private List possibleValues;

    public CustomFieldDescriptor(String key, String displayName, String inputType, String type,
            List possibleValues)
    {
        this.key = key;
        this.displayName = displayName;
        this.inputType = inputType;
        this.type = type;
        this.possibleValues = possibleValues;
    }

    public String getKey()
    {
        return key;
    }

    public String getDisplayName()
    {
        return displayName;
    }

    public String getInputType()
    {
        return inputType;
    }

    public String getType()
    {
        return type;
    }

    public List getPossibleValues()
    {
        return possibleValues;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy