First thing first, make sure your child nodes have all the same name (Adminstate or adminstate, etc...), remember that it is case sensitive.
I'm also assuming you would like a HTML output, here's what you could try:
<xsl:for-each select="//Objectstatus">
<p>
<xsl:value-of select="./class"/>
<xsl:text>,</xsl:text>
<xsl:value-of select="./Adminstate"/>
<xsl:text>,</xsl:text>
<xsl:value-of select="./name"/>
</p>
</xsl:for-each>
Here's the output:
stats,disabled,abc Policy,enabled,xyz
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…