
com.alibaba.nacos.spring.context.event.config.NacosConfigurationPropertiesBeanBoundEvent Maven / Gradle / Ivy
/*
* 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 com.alibaba.nacos.spring.context.event.config;
import java.util.EventObject;
import com.alibaba.nacos.api.config.ConfigService;
import com.alibaba.nacos.api.config.annotation.NacosConfigurationProperties;
/**
* {@link NacosConfigurationProperties} Bean Bound {@link EventObject event}.
*
* @author Mercy
* @since 0.1.0
*/
public class NacosConfigurationPropertiesBeanBoundEvent extends NacosConfigEvent {
private final Object bean;
private final String beanName;
private final NacosConfigurationProperties properties;
private final String content;
/**
* @param configService Nacos {@link ConfigService}
* @param dataId data ID
* @param groupId group ID
* @param bean annotated {@link NacosConfigurationProperties} bean
* @param beanName the name of annotated {@link NacosConfigurationProperties} bean
* @param properties {@link NacosConfigurationProperties} object
* @param content the Nacos content for binding
*/
public NacosConfigurationPropertiesBeanBoundEvent(ConfigService configService,
String dataId, String groupId, Object bean, String beanName,
NacosConfigurationProperties properties, String content) {
super(configService, dataId, groupId);
this.bean = bean;
this.beanName = beanName;
this.properties = properties;
this.content = content;
}
public Object getBean() {
return bean;
}
public String getBeanName() {
return beanName;
}
public NacosConfigurationProperties getProperties() {
return properties;
}
public String getContent() {
return content;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy