All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.github.wistefan.mapping.MappingProperties Maven / Gradle / Ivy

package io.github.wistefan.mapping;

import io.micronaut.context.annotation.ConfigurationProperties;
import lombok.Data;

/**
 * General properties to be used for the mapping.
 */
@ConfigurationProperties("mapping")
@Data
public class MappingProperties {

	/**
	 * ContextUrl for the service to use.
	 */
	private String contextUrl = "https://uri.etsi.org/ngsi-ld/v1/ngsi-ld-core-context.jsonld";

	/**
	 * When set to true, mapping will fail if a realtionship cannot be resolved.
	 */
	private boolean strictRelationships = true;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy