Package org.jboss.test.xml.loginconfig

Examples of org.jboss.test.xml.loginconfig.Users


      InputStream xmlIs = openStream("xml/loginconfig/user-roles.xml");
      SchemaBinding schema = XsdBinder.bind(xsdIs, null);
      schema.setStrictSchema(true);
      schema.setIgnoreUnresolvedFieldOrClass(false);
      Unmarshaller unmarshaller = UnmarshallerFactory.newInstance().newUnmarshaller();
      Users users = (Users) unmarshaller.unmarshal(xmlIs, schema);
      assertNotNull(users);
      assertEquals(6, users.size());
   }
View Full Code Here

TOP

Related Classes of org.jboss.test.xml.loginconfig.Users

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.