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

com.geosiris.etp.protocols.handlers.generated.StoreNotificationHandler_DefaultPrinter Maven / Gradle / Ivy

There is a newer version: 1.0.5
Show newest version
/*
Copyright 2019 GEOSIRIS

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.geosiris.etp.protocols.handlers.generated;

import Energistics.Etp.v12.Datatypes.MessageHeader;
import Energistics.Etp.v12.Protocol.StoreNotification.*;
import com.geosiris.etp.communication.ClientInfo;
import com.geosiris.etp.communication.Message;
import com.geosiris.etp.protocols.handlers.StoreNotificationHandler;
import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;

import java.util.ArrayList;
import java.util.Collection;
public class StoreNotificationHandler_DefaultPrinter extends StoreNotificationHandler{
	public static final Logger logger = LogManager.getLogger(StoreNotificationHandler_DefaultPrinter.class);

    @Override
    public Collection on_Chunk(Chunk msg, MessageHeader msgHeader, ClientInfo clientInfo) {
        logger.info("[StoreNotificationHandler_DefaultPrinter] received message" + msg);
        return new ArrayList<>();
    }

    @Override
    public Collection on_ObjectAccessRevoked(ObjectAccessRevoked msg, MessageHeader msgHeader, ClientInfo clientInfo) {
        logger.info("[StoreNotificationHandler_DefaultPrinter] received message" + msg);
        return new ArrayList<>();
    }

    @Override
    public Collection on_ObjectActiveStatusChanged(ObjectActiveStatusChanged msg, MessageHeader msgHeader, ClientInfo clientInfo) {
        logger.info("[StoreNotificationHandler_DefaultPrinter] received message" + msg);
        return new ArrayList<>();
    }

    @Override
    public Collection on_ObjectChanged(ObjectChanged msg, MessageHeader msgHeader, ClientInfo clientInfo) {
        logger.info("[StoreNotificationHandler_DefaultPrinter] received message" + msg);
        return new ArrayList<>();
    }

    @Override
    public Collection on_ObjectDeleted(ObjectDeleted msg, MessageHeader msgHeader, ClientInfo clientInfo) {
        logger.info("[StoreNotificationHandler_DefaultPrinter] received message" + msg);
        return new ArrayList<>();
    }

    @Override
    public Collection on_SubscribeNotifications(SubscribeNotifications msg, MessageHeader msgHeader, ClientInfo clientInfo) {
        logger.info("[StoreNotificationHandler_DefaultPrinter] received message" + msg);
        return new ArrayList<>();
    }

    @Override
    public Collection on_SubscribeNotificationsResponse(SubscribeNotificationsResponse msg, MessageHeader msgHeader, ClientInfo clientInfo) {
        logger.info("[StoreNotificationHandler_DefaultPrinter] received message" + msg);
        return new ArrayList<>();
    }

    @Override
    public Collection on_SubscriptionEnded(SubscriptionEnded msg, MessageHeader msgHeader, ClientInfo clientInfo) {
        logger.info("[StoreNotificationHandler_DefaultPrinter] received message" + msg);
        return new ArrayList<>();
    }

    @Override
    public Collection on_UnsolicitedStoreNotifications(UnsolicitedStoreNotifications msg, MessageHeader msgHeader, ClientInfo clientInfo) {
        logger.info("[StoreNotificationHandler_DefaultPrinter] received message" + msg);
        return new ArrayList<>();
    }

    @Override
    public Collection on_UnsubscribeNotifications(UnsubscribeNotifications msg, MessageHeader msgHeader, ClientInfo clientInfo) {
        logger.info("[StoreNotificationHandler_DefaultPrinter] received message" + msg);
        return new ArrayList<>();
    }


}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy