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

com.tencent.trpc.admin.dto.CommandDto Maven / Gradle / Ivy

There is a newer version: 1.3.1
Show newest version
/*
 * Tencent is pleased to support the open source community by making tRPC available.
 *
 * Copyright (C) 2023 THL A29 Limited, a Tencent company. 
 * All rights reserved.
 *
 * If you have downloaded a copy of the tRPC source code from Tencent,
 * please note that tRPC source code is licensed under the Apache 2.0 License,
 * A copy of the Apache 2.0 License can be found in the LICENSE file.
 */

package com.tencent.trpc.admin.dto;

import java.util.List;

/**
 * Admin command view class
 */
public class CommandDto extends CommonDto {

    /**
     * Command list
     */
    private List cmds;

    public CommandDto() {
    }

    public CommandDto(List cmds) {
        this.cmds = cmds;
    }

    public List getCmds() {
        return cmds;
    }

    public void setCmds(List cmds) {
        this.cmds = cmds;
    }

    @Override
    public String toString() {
        return "CommandDto{" + "cmds=" + cmds + "} " + super.toString();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy