Package org.jvnet.glassfish.comms.admin.pluggable.extensions.sip

Source Code of org.jvnet.glassfish.comms.admin.pluggable.extensions.sip.SipRUExtensionFeatureImpl

/*
* The contents of this file are subject to the terms
* of the Common Development and Distribution License
* (the License).  You may not use this file except in
* compliance with the License.
*
* You can obtain a copy of the license at
* https://glassfish.dev.java.net/public/CDDLv1.0.html or
* glassfish/bootstrap/legal/CDDLv1.0.txt.
* See the License for the specific language governing
* permissions and limitations under the License.
*
* When distributing Covered Code, include this CDDL
* Header Notice in each file and include the License file
* at glassfish/bootstrap/legal/CDDLv1.0.txt.
* If applicable, add the following below the CDDL Header,
* with the fields enclosed by brackets [] replaced by
* you own identifying information:
* "Portions Copyrighted [year] [name of copyright owner]"
*
* Copyright (c) Ericsson AB, 2004-2007. All rights reserved.
* Copyright 1997-2009 Sun Microsystems, Inc. All rights reserved.
*/
package org.jvnet.glassfish.comms.admin.pluggable.extensions.sip;

import com.sun.enterprise.admin.pluggable.RUExtensionFeature;
import com.sun.enterprise.admin.event.AdminEvent;


/**
* Implement the Extended Rolling upgrade feature for sip
*
* @author: Srinivas Krishnan
*/
public class SipRUExtensionFeatureImpl implements RUExtensionFeature {

    private static final String SERVER_REF = "server-ref";
    private static final String LB_ENABLED = "attr=lb-enabled";
    private static final String CONVERGED_LOAD_BALANCER = "converged-load-balancer";
    private static final String CONFIG_FILE = "config-file";

    public SipRUExtensionFeatureImpl() {
    }
   
    /*
     * Return if event need to be send or not
     */
    public boolean sendEvent(Object event) {
        AdminEvent adminEvent = (AdminEvent) event;
        if ( (adminEvent.getEventInfo().indexOf(SERVER_REF) != -1 && adminEvent.getEventInfo().indexOf(LB_ENABLED) != -1) ||
             (adminEvent.getEventInfo().indexOf(CONVERGED_LOAD_BALANCER) != -1 && adminEvent.getEventInfo().indexOf(CONFIG_FILE) != -1))
            return true;
        else
            return false;
    }
}
TOP

Related Classes of org.jvnet.glassfish.comms.admin.pluggable.extensions.sip.SipRUExtensionFeatureImpl

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.