package org.openecomp.sdc.be.datamodel; import java.util.Set; public class ServiceRelations extends java.util.HashSet { public ServiceRelations() { } public ServiceRelations(Set relations) { addAll(relations); } public Set getRelations() { return this; } public void setRelations(Set relations) { clear(); this.addAll(relations); } }