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

org.mule.security.oauth.process.OAuthProcessTemplate Maven / Gradle / Ivy

The newest version!
/*
 * Copyright (c) MuleSoft, Inc.  All rights reserved.  http://www.mulesoft.com
 * The software in this package is published under the terms of the CPAL v1.0
 * license, a copy of which has been included with this distribution in the
 * LICENSE.txt file.
 */
package org.mule.security.oauth.process;

import org.mule.api.MuleEvent;
import org.mule.api.MuleMessage;
import org.mule.api.devkit.ProcessTemplate;
import org.mule.api.devkit.capability.Capabilities;
import org.mule.api.processor.MessageProcessor;
import org.mule.api.routing.filter.Filter;
import org.mule.common.security.oauth.exception.NotAuthorizedException;
import org.mule.security.oauth.OAuthAdapter;
import org.mule.security.oauth.callback.ProcessCallback;

public class OAuthProcessTemplate

implements ProcessTemplate { private final Capabilities object; public OAuthProcessTemplate(Capabilities object) { this.object = object; } public P execute(ProcessCallback processCallback, MessageProcessor messageProcessor, MuleEvent event) throws Exception { this.verifyAuthentication(processCallback); return processCallback.process(object); } public P execute(ProcessCallback processCallback, Filter filter, MuleMessage message) throws Exception { this.verifyAuthentication(processCallback); return processCallback.process(object); } private void verifyAuthentication(ProcessCallback processCallback) throws NotAuthorizedException { OAuthAdapter adapter = (OAuthAdapter) object; if (processCallback.isProtected()) { adapter.hasBeenAuthorized(); } } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy