net.smartcosmos.annotation.SmartCosmosEventsProperties Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of smartcosmos-framework Show documentation
Show all versions of smartcosmos-framework Show documentation
Provides Spring Configuration and Annotations making it easier to develop SMART COSMOS Extensions
The newest version!
package net.smartcosmos.annotation;
import lombok.Data;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.http.HttpMethod;
/**
* @author voor
*/
@Data
@ConfigurationProperties("smartcosmos.service.events")
public class SmartCosmosEventsProperties {
private String address = "http://events";
private String path = "";
private HttpMethod httpMethod = HttpMethod.POST;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy