package info.oais.interfaces.infomodel.poss1Reference;

import info.oais.interfaces.infomodel.Identifier;

/**
 * The Reference Information is here represented as an array of Identifiers, for example using differenct PID systems.
 * @author David
 * @version 1.0
 * @since 06-Sep-2021 16:27:34
 */
public interface ReferenceInt1 {

	/**
	 * Get the array of identifiers
	 * 
	 * @return The array of Identifiers which make up the Reference
	 */
	public Identifier[] getReferences();
	
	/**
	 * Set the array of Identifiers which make up the Reference.
	 * 
	 * @param refs The array of Identifiers which make up the Reference.
	 */
	public void setReferences(Identifier[] refs);

}