public EffectInstance build()
{
if (this.url == null)
throw new IllegalStateException("url not set");
final EffectInstance effectInstance = new EffectInstance(this.url);
effectInstance.setName(this.name);
effectInstance.setSid(this.sid);
return effectInstance;
}