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

org.ligoj.app.plugin.prov.NetworkFullByNameVo Maven / Gradle / Ivy

The newest version!
/*
 * Licensed under MIT (https://github.com/ligoj/ligoj/blob/master/LICENSE)
 */
package org.ligoj.app.plugin.prov;

import jakarta.validation.constraints.NotNull;

import lombok.Getter;
import lombok.Setter;

/**
 *
 * Network object for edition with source and destination peers.
 */
@Getter
@Setter
public class NetworkFullByNameVo extends AbstractNetworkVo {

	/**
	 * The related peer resource identifier. Names must be unique among all resource names.
	 */
	@NotNull
	private String source;

	/**
	 * The related peer resource identifier. Names must be unique among all resource names.
	 */
	@NotNull
	private String peer;

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy