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

com.tcdng.unify.web.ui.widget.data.MessageBox Maven / Gradle / Ivy

/*
 * Copyright 2018-2023 The Code Department.
 * 
 * Licensed under the Apache License, Version 2.0 (the "License"); you may not
 * use this file except in compliance with the License. You may obtain a copy of
 * the License at
 * 
 * http://www.apache.org/licenses/LICENSE-2.0
 * 
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
 * License for the specific language governing permissions and limitations under
 * the License.
 */
package com.tcdng.unify.web.ui.widget.data;

/**
 * Message box data object.
 * 
 * @author The Code Department
 * @since 1.0
 */
public class MessageBox {

    private MessageIcon messageIcon;

    private MessageMode messageMode;

    private String caption;

    private String message;

    private String resultPath;

    public MessageBox(String caption, String message) {
        this(caption, message, null);
    }

    public MessageBox(String caption, String message, String resultPath) {
        this(MessageIcon.INFO, MessageMode.OK, caption, message, resultPath);
    }

    public MessageBox(MessageIcon messageIcon, MessageMode messageMode, String caption, String message) {
        this(messageIcon, messageMode, caption, message, null);
    }

    public MessageBox(MessageIcon messageIcon, MessageMode messageMode, String caption, String message,
            String resultPath) {
        this.messageIcon = messageIcon;
        this.messageMode = messageMode;
        this.caption = caption;
        this.message = message;
        this.resultPath = resultPath;
    }

    public MessageIcon getMessageIcon() {
        return messageIcon;
    }

    public int getIconIndex() {
        return messageIcon.getIconIndex();
    }

    public MessageMode getMessageMode() {
        return messageMode;
    }

    public String getCaption() {
        return caption;
    }

    public String getMessage() {
        return message;
    }

    public String getResultPath() {
        return resultPath;
    }

    public String getOkCode() {
        return MessageResult.OK.code();
    }

    public String getCancelCode() {
        return MessageResult.CANCEL.code();
    }

    public String getYesCode() {
        return MessageResult.YES.code();
    }

    public String getNoCode() {
        return MessageResult.NO.code();
    }

    public String getRetryCode() {
        return MessageResult.RETRY.code();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy