// ========================================================================
// Copyright 2010 NEXCOM Systems
// ------------------------------------------------------------------------
// 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.cipango.annotations;
import java.util.EventListener;
import javax.servlet.sip.annotation.SipApplication;
import javax.servlet.sip.annotation.SipListener;
import javax.servlet.sip.annotation.SipServlet;
import org.cipango.servlet.SipServletHolder;
import org.cipango.sipapp.SipAppContext;
import org.eclipse.jetty.util.log.Log;
import org.eclipse.jetty.webapp.DiscoveredAnnotation;
public class SipApplicationAnnotation extends DiscoveredAnnotation
{
public SipApplicationAnnotation (SipAppContext context, String className)
{
super(context, className);
}
/**
* @see org.eclipse.jetty.annotations.ClassAnnotation#apply()
*/
@SuppressWarnings({ "rawtypes", "unchecked" })
public void apply()
{
Class clazz = getTargetClass();
if (clazz == null)
{
Log.warn(_className+" cannot be loaded");
return;
}
SipApplication annotation = (SipApplication) clazz.getAnnotation(SipApplication.class);
SipAppContext context = (SipAppContext) _context;
if (context.getName() != null && !context.getName().equals(annotation.name()))
throw new IllegalStateException("App-name in sip.xml: " + context.getName()
+ " does not match with SipApplication annotation: " + annotation.name());
context.getSipMetaData().setAppName(annotation.name());
context.setDistributable(annotation.distributable());
context.setDisplayName(annotation.displayName());
context.setProxyTimeout(annotation.proxyTimeout());
context.setSessionTimeout(annotation.sessionTimeout());
context.getSipMetaData().setMainServletName(annotation.mainServlet());
}
}