/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you 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.apache.deltaspike.core.util.bean; import org.apache.deltaspike.core.util.metadata.builder.ContextualLifecycle; import javax.enterprise.inject.spi.InjectionPoint; import javax.enterprise.inject.spi.PassivationCapable; import java.lang.annotation.Annotation; import java.lang.reflect.Type; import java.util.Set; /** * */ public class ImmutablePassivationCapableBean<T> extends ImmutableBean<T> implements PassivationCapable { private final String id; /** * Create a new, immutable bean. All arguments passed as collections are * defensively copied. * * @param beanClass The Bean class, may not be null * @param name The bean name * @param qualifiers The bean's qualifiers, if null, a singleton set of * {@link javax.enterprise.inject.Default} is used * @param scope The bean's scope, if null, the default scope of * {@link javax.enterprise.context.Dependent} is used * @param stereotypes The bean's stereotypes, if null, an empty set is used * @param types The bean's types, if null, the beanClass and {@link Object} * will be used * @param alternative True if the bean is an alternative * @param nullable True if the bean is nullable * @param injectionPoints the bean's injection points, if null an empty set is used * @param toString the string which should be returned by #{@link #toString()} * @param lifecycle Handler for {@link #create(javax.enterprise.context.spi.CreationalContext)} and * {@link #destroy(Object, javax.enterprise.context.spi.CreationalContext)} * @param passivationId Passivation bean Id. * @throws IllegalArgumentException if the beanClass is null */ // CHECKSTYLE:OFF public ImmutablePassivationCapableBean(Class<?> beanClass, String name, Set<Annotation> qualifiers, Class<? extends Annotation> scope, Set<Class<? extends Annotation>> stereotypes, Set<Type> types, boolean alternative, boolean nullable, Set<InjectionPoint> injectionPoints, String toString, ContextualLifecycle<T> lifecycle, String passivationId) { // CHECKSTYLE:ON super(beanClass, name, qualifiers, scope, stereotypes, types, alternative, nullable, injectionPoints, toString, lifecycle); this.id = passivationId; } @Override public String getId() { return this.id; } }