org.guvnor.messageconsole.events.UnpublishMessagesEvent Maven / Gradle / Ivy
/*
* Copyright 2014 Red Hat, Inc. and/or its affiliates.
*
* 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 org.guvnor.messageconsole.events;
import java.util.ArrayList;
import java.util.List;
import org.jboss.errai.common.client.api.annotations.Portable;
@Portable
public class UnpublishMessagesEvent {
/**
* Filter parameter to establish that messagesToUnpublish for this session should be unpublished. (if null
* all messagesToUnpublish will be deleted depending on userId and messageType).
*/
private String sessionId;
/**
* Filter parameter to establish that messagesToUnpublish for this user should be unpublished.
*/
private String userId;
/**
* Filter parameter to establish that messagesToUnpublish of this type should be unpublished.
*/
private String messageType;
private List messagesToUnpublish = new ArrayList();
/**
* If set to true, interested parties will always try to show the system errors console. If set to false
* it's expected that the console is already opened.
*/
private boolean showSystemConsole = true;
public UnpublishMessagesEvent() {
//needed for marshalling.
}
public String getSessionId() {
return sessionId;
}
public void setSessionId(String sessionId) {
this.sessionId = sessionId;
}
public String getUserId() {
return userId;
}
public void setUserId(String userId) {
this.userId = userId;
}
public String getMessageType() {
return messageType;
}
public boolean isShowSystemConsole() {
return showSystemConsole;
}
public void setShowSystemConsole(boolean showSystemConsole) {
this.showSystemConsole = showSystemConsole;
}
public void setMessageType(String messageType) {
this.messageType = messageType;
}
public List getMessagesToUnpublish() {
return messagesToUnpublish;
}
public void setMessagesToUnpublish(List messagesToUnpublish) {
this.messagesToUnpublish = messagesToUnpublish;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy