Java tutorial
/* * Licensed to the University Corporation for Advanced Internet Development, * Inc. (UCAID) under one or more contributor license agreements. See the * NOTICE file distributed with this work for additional information regarding * copyright ownership. The UCAID 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.opensaml.xmlsec.criterion; import java.util.ArrayList; import java.util.Arrays; import java.util.List; import javax.annotation.Nonnull; import net.shibboleth.utilities.java.support.annotation.constraint.NonnullElements; import net.shibboleth.utilities.java.support.annotation.constraint.NotEmpty; import net.shibboleth.utilities.java.support.annotation.constraint.NotLive; import net.shibboleth.utilities.java.support.annotation.constraint.Unmodifiable; import net.shibboleth.utilities.java.support.logic.Constraint; import net.shibboleth.utilities.java.support.resolver.Criterion; import org.opensaml.xmlsec.EncryptionConfiguration; import com.google.common.base.Predicates; import com.google.common.collect.Collections2; import com.google.common.collect.ImmutableList; /** * Criterion which holds one or more instances of {@link EncryptionConfiguration}. */ public class EncryptionConfigurationCriterion implements Criterion { /** The list of configuration instances. */ @Nonnull @NonnullElements private List<EncryptionConfiguration> configs; /** * Constructor. * * @param configurations list of configuration instances */ public EncryptionConfigurationCriterion( @Nonnull @NonnullElements @NotEmpty List<EncryptionConfiguration> configurations) { Constraint.isNotNull(configurations, "List of configurations cannot be null"); configs = new ArrayList<>(Collections2.filter(configurations, Predicates.notNull())); Constraint.isGreaterThanOrEqual(1, configs.size(), "At least one configuration is required"); } /** * Constructor. * * @param configurations varargs array of configuration instances */ public EncryptionConfigurationCriterion( @Nonnull @NonnullElements @NotEmpty EncryptionConfiguration... configurations) { Constraint.isNotNull(configurations, "List of configurations cannot be null"); configs = new ArrayList<>(Collections2.filter(Arrays.asList(configurations), Predicates.notNull())); Constraint.isGreaterThanOrEqual(1, configs.size(), "At least one configuration is required"); } /** * Get the list of configuration instances. * @return the list of configuration instances */ @Nonnull @NonnullElements @NotLive @Unmodifiable @NotEmpty public List<EncryptionConfiguration> getConfigurations() { return ImmutableList.copyOf(configs); } /** {@inheritDoc} */ @Override public String toString() { StringBuilder builder = new StringBuilder(); builder.append("EncryptionConfigurationCriterion [configs="); builder.append(configs); builder.append("]"); return builder.toString(); } /** {@inheritDoc} */ @Override public int hashCode() { return configs.hashCode(); } /** {@inheritDoc} */ @Override public boolean equals(Object obj) { if (this == obj) { return true; } if (obj == null) { return false; } if (obj instanceof EncryptionConfigurationCriterion) { return configs.equals(((EncryptionConfigurationCriterion) obj).getConfigurations()); } return false; } }