{
p.print( "active_by_default", "true" );
}
}
{
ActivationOS os = activation.getOs();
if ( os != null )
{
Map<String, Object> options = new LinkedHashMap<String, Object>();
if ( os.getArch() != null )
{
options.put( "arch", os.getArch() );
}
if ( os.getFamily() != null )
{
options.put( "family", os.getFamily() );
}
if ( os.getName() != null )
{
options.put( "name", os.getName() );
}
if ( os.getVersion() != null )
{
options.put( "version", os.getVersion() );
}
p.printWithOptions( "os", options );
}
}
p.printEndBlock();