org.osgi.service.component.runtime.dto.SatisfiedReferenceDTO Maven / Gradle / Ivy
Show all versions of aem-sdk-api Show documentation
/*******************************************************************************
* Copyright (c) Contributors to the Eclipse Foundation
*
* Licensed 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.
*
* SPDX-License-Identifier: Apache-2.0
*******************************************************************************/
package org.osgi.service.component.runtime.dto;
import org.osgi.dto.DTO;
import org.osgi.framework.dto.ServiceReferenceDTO;
/**
* A representation of a satisfied reference.
*
* @since 1.3
* @NotThreadSafe
* @author $Id: 56434137b79b1cae29b54c3386cb6fe65c258379 $
*/
public class SatisfiedReferenceDTO extends DTO {
/**
* The name of the declared reference.
*
*
* This is declared in the {@code name} attribute of the {@code reference}
* element of the component description.
*
* @see ReferenceDTO#name
*/
public String name;
/**
* The target property of the satisfied reference.
*
*
* This is the value of the {@link ComponentConfigurationDTO#properties
* component property} whose name is the concatenation of the
* {@link ReferenceDTO#name declared reference name} and
* ".target". This must be {@code null} if no target property is
* set for the reference.
*/
public String target;
/**
* The bound services.
*
*
* Each {@link ServiceReferenceDTO} in the array represents a service bound
* to the satisfied reference. The array must be empty if there are no bound
* services.
*/
public ServiceReferenceDTO[] boundServices;
}