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

com.askfast.model.Dialog Maven / Gradle / Ivy

There is a newer version: 1.5.7
Show newest version
package com.askfast.model;


import java.util.ArrayList;
import java.util.List;

public class Dialog {
    protected String id = null;
    protected String name = null;
    protected List url = null;
    protected String owner = null;
    
    protected boolean useBasicAuth = false;
    protected String userName = null;
    protected String password = null;
    
    protected TTSInfo ttsInfo = null;

    public Dialog() {
        this(null, new ArrayList());
    }


    public Dialog(String name, List url){
        this.name = name;
        this.url = url;
        this.useBasicAuth = false;
    }

    public String getId() {
        return id;
    }

    public void setId(String id) {
        this.id = id;
    }

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }


    public List getUrl() {
        return url;
    }

    public void setUrl(List url) {
        this.url = url;
    }

    public String getOwner() {
        return owner;
    }

    public void setOwner(String owner) {
        this.owner = owner;
    }
    
    public boolean isUseBasicAuth() {
        return useBasicAuth;
    }
    
    public void setUseBasicAuth( boolean useBasicAuth ) {
        this.useBasicAuth = useBasicAuth;
    }
    
    public String getUserName() {
        return userName;
    }
    
    public void setUserName( String userName ) {
        this.userName = userName;
    }
    
    public String getPassword() {
        return password;
    }
    
    public void setPassword( String password ) {
        this.password = password;
    }
    
    public TTSInfo getTtsInfo() {
        return ttsInfo;
    }
    
    public void setTtsInfo( TTSInfo ttsInfo ) {
        this.ttsInfo = ttsInfo;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy