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

com.vmware.connectors.jira.AddCommentForm Maven / Gradle / Ivy

There is a newer version: 2.5
Show newest version
/*
 * Copyright © 2019 VMware, Inc. All Rights Reserved.
 * SPDX-License-Identifier: BSD-2-Clause
 */

package com.vmware.connectors.jira;

import javax.validation.constraints.NotBlank;

public class AddCommentForm {
    @NotBlank
    private String body;

    public String getBody() {
        return body;
    }

    public void setBody(String body) {
        this.body = body;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy