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

io.infinicast.client.api.paths.HandlerRegistrationOptionsData Maven / Gradle / Ivy

There is a newer version: 1.5.0
Show newest version
package io.infinicast.client.api.paths;

import io.infinicast.client.api.query.ListeningType;

import java.util.ArrayList;
public class HandlerRegistrationOptionsData {
    public boolean sendingEndpointDataContext = false;
    public ArrayList dataContextPaths = null;
    boolean _isOncePerRole;
    boolean _isSticky;
    ListeningType _listenerType;
    String _roleFilter;
    public HandlerRegistrationOptionsData() {
    }
    public boolean getIsOncePerRole() {
        return this._isOncePerRole;
    }
    public void setIsOncePerRole(boolean value) {
        this._isOncePerRole = value;
    }
    public boolean getIsSticky() {
        return this._isSticky;
    }
    public void setIsSticky(boolean value) {
        this._isSticky = value;
    }
    public ListeningType getListenerType() {
        return this._listenerType;
    }
    public void setListenerType(ListeningType value) {
        this._listenerType = value;
    }
    public String getRoleFilter() {
        return this._roleFilter;
    }
    public void setRoleFilter(String value) {
        this._roleFilter = value;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy