Package org.openiaml.model.custom.actions

Examples of org.openiaml.model.custom.actions.RewriteElementIDs


   
    IFolder outputFolder = getProject().getFolder("output");
    assertNotExists(outputFolder);
   
    // do the action
    RewriteElementIDs action = new RewriteElementIDs();
    runAction(action, targetModel);
   
    // get the rewritten model
    InternetApplication model = (InternetApplication) action.getModel();
   
    // none of the contained elements should have an ID containing '.' or 'model'
    Iterator<EObject> it = model.eAllContents();
    while (it.hasNext()) {
      EObject obj = it.next();
View Full Code Here

TOP

Related Classes of org.openiaml.model.custom.actions.RewriteElementIDs

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.