/******************************************************************************* * Copyright (c) 2004, 2007-2008 IBM Corporation and Cambridge Semantics Incorporated. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * File: $Source$ * Created by: Generated Source from org.openanzo.jdbc.utils.opgen.jet * Created on: Generated Source from org.openanzo.jdbc.utils.opgen.jet * Revision: $Id$ * * Contributors: * IBM Corporation - initial API and implementation * Cambridge Semantics Incorporated - Fork to Anzo *******************************************************************************/ package org.openanzo.combus.listeners; import javax.jms.MessageProducer; import javax.jms.Destination; import javax.jms.JMSException; import javax.jms.TextMessage; import org.openanzo.combus.endpoint.BaseServiceListener; import org.openanzo.exceptions.AnzoException; import org.openanzo.exceptions.ExceptionConstants; import org.openanzo.rdf.Constants; import org.openanzo.services.IOperationContext; import org.openanzo.services.IAuthenticationService; /** * authorization Service combus listener interface * @author Generated Code */ public class CombusAuthorizationServiceListener extends BaseServiceListener { /** Service's Name in {@link String} form */ public static final String SERVICE_ENDPOINT_NAME = Constants.NAMESPACES.SERVICE_PREFIX + "CombusAuthorizationServiceListener"; /** Stats for object*/ protected org.openanzo.services.DynamicServiceStats stats=null; /** Service interface*/ protected org.openanzo.datasource.IAuthorizationService iAuthorizationService=null; /**Queue Name Prefix*/ protected String queueNamePrefix=null; /** * Create a new JMSAuthorizationServiceListener * @param authenticationService Authentication service used by this listener * @param _service Service for which listener is handling requests * @param queueNamePrefix Prefix for the queue name on which this listener is listening */ public CombusAuthorizationServiceListener(IAuthenticationService authenticationService,org.openanzo.datasource.IAuthorizationService _service,String queueNamePrefix) { super(SERVICE_ENDPOINT_NAME,authenticationService); this.iAuthorizationService =_service; this.queueNamePrefix=queueNamePrefix; stats=new org.openanzo.services.DynamicServiceStats(org.openanzo.datasource.IAuthorizationService.GET_ROLES_FOR_GRAPH); } /** * Statistics object for this service * @return the stats object for this service */ public org.openanzo.services.DynamicServiceStats getStatistics(){ return stats; } public String getQueueName() { return "services/"+((queueNamePrefix!=null)?queueNamePrefix:"")+"authorization"; } public TextMessage handleMessage(IOperationContext context, Destination replyTo, String resultFormat, String operation, TextMessage request, MessageProducer messageProducer) throws JMSException, AnzoException { verifyCaller(context); TextMessage response = null; if(org.openanzo.datasource.IAuthorizationService.GET_ROLES_FOR_GRAPH.equals(operation)){ long start=0; if (stats.isEnabled()) { start = System.currentTimeMillis(); } try{ org.openanzo.combus.JMSMessageWrapper messageWrapper=new org.openanzo.combus.JMSMessageWrapper(request); boolean namedGraphUriExists=request.propertyExists(org.openanzo.datasource.IAuthorizationService.PARAM_NAMED_GRAPH_URI); if(!namedGraphUriExists){ throw new AnzoException(ExceptionConstants.CORE.NULL_PARAMETER,org.openanzo.datasource.IAuthorizationService.PARAM_NAMED_GRAPH_URI); } org.openanzo.rdf.URI namedGraphUri = org.openanzo.services.serialization.transport.URISerializer.deserialize(messageWrapper,org.openanzo.datasource.IAuthorizationService.PARAM_NAMED_GRAPH_URI, null); boolean privilegeExists=request.propertyExists(org.openanzo.datasource.IAuthorizationService.PARAM_PRIVILEGE); if(!privilegeExists){ throw new AnzoException(ExceptionConstants.CORE.NULL_PARAMETER,org.openanzo.datasource.IAuthorizationService.PARAM_PRIVILEGE); } org.openanzo.services.Privilege privilege = org.openanzo.services.serialization.transport.PrivilegeSerializer.deserialize(messageWrapper,org.openanzo.datasource.IAuthorizationService.PARAM_PRIVILEGE, null); java.io.StringWriter output = new java.io.StringWriter(); this.iAuthorizationService.getRolesForGraph(context,namedGraphUri,privilege, output,resultFormat); response = session.createTextMessage(); response.setBooleanProperty(org.openanzo.rdf.utils.SerializationConstants.operationFailed, false); String out = output.toString(); if (out.length() > 0) { response.setText(output.toString()); } }finally{ if (stats.isEnabled()) { stats.use("getRolesForGraph",(System.currentTimeMillis() - start)); } } } else { throw new AnzoException(ExceptionConstants.SERVER.UNKNOWN_OPERATION_ERROR, operation); } return response; } }