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

org.mule.runtime.config.internal.CustomEncryptionStrategyDelegate Maven / Gradle / Ivy

/*
 * 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.runtime.config.internal;

import org.mule.runtime.api.lifecycle.InitialisationException;
import org.mule.runtime.api.component.AbstractComponent;
import org.mule.runtime.api.meta.NameableObject;
import org.mule.runtime.core.api.security.CryptoFailureException;
import org.mule.runtime.core.api.security.EncryptionStrategy;

import java.io.InputStream;

/**
 * Delegate for encryption strategies configured inside security-manager
 *
 * @since 4.0
 */
public class CustomEncryptionStrategyDelegate extends AbstractComponent implements EncryptionStrategy {

  private EncryptionStrategy delegate;
  private String name;

  public CustomEncryptionStrategyDelegate(EncryptionStrategy delegate, String name) {
    this.delegate = delegate;
    if (delegate instanceof NameableObject) {
      ((NameableObject) delegate).setName(name);
    }
    this.name = name;
  }

  @Override
  public String getName() {
    return name;
  }

  @Override
  public void initialise() throws InitialisationException {
    delegate.initialise();
  }

  @Override
  public InputStream encrypt(InputStream data, Object info) throws CryptoFailureException {
    return delegate.encrypt(data, info);
  }

  @Override
  public InputStream decrypt(InputStream data, Object info) throws CryptoFailureException {
    return delegate.decrypt(data, info);
  }

  @Override
  public byte[] encrypt(byte[] data, Object info) throws CryptoFailureException {
    return delegate.encrypt(data, info);
  }

  @Override
  public byte[] decrypt(byte[] data, Object info) throws CryptoFailureException {
    return delegate.decrypt(data, info);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy