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

org.labkey.remoteapi.domain.GetDomainCommand Maven / Gradle / Ivy

Go to download

The client-side library for Java developers is a separate JAR from the LabKey Server code base. It can be used by any Java program, including another Java web application.

There is a newer version: 6.2.0
Show newest version
package org.labkey.remoteapi.domain;

import org.json.JSONObject;
import org.labkey.remoteapi.GetCommand;

import java.util.Map;

/**
 * @deprecated The associated server action was deprecated in LabKey Server 20.3
 * @see GetDomainDetailsCommand
 */
@Deprecated (since = "4.0.0")
public class GetDomainCommand extends GetCommand
{
    private String _schemaName;
    private String _queryName;
    private Long _domainId;

    public GetDomainCommand(String schemaName, String queryName)
    {
        super("property", "getDomain");
        _schemaName = schemaName;
        _queryName = queryName;
    }

    public GetDomainCommand(Long domainId)
    {
        super("property", "getDomain");
        _domainId = domainId;
    }

    @Override
    protected Map createParameterMap()
    {
        Map params = super.createParameterMap();

        if (_schemaName != null && _queryName != null)
        {
            params.put("schemaName", _schemaName);
            params.put("queryName", _queryName);
        }
        else if (_domainId != null)
        {
            params.put("domainId", _domainId);
        }

        return params;
    }

    @Override
    protected DomainResponse createResponse(String text, int status, String contentType, JSONObject json)
    {
        return new DomainResponse(text, status, contentType, json);
    }

    public String getSchemaName()
    {
        return _schemaName;
    }

    public void setSchemaName(String schemaName)
    {
        _schemaName = schemaName;
    }

    public String getQueryName()
    {
        return _queryName;
    }

    public void setQueryName(String queryName)
    {
        _queryName = queryName;
    }

    public Long getDomainId()
    {
        return _domainId;
    }

    public void setDomainId(Long domainId)
    {
        _domainId = domainId;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy