Examples of FedoraUsers


Examples of org.fcrepo.server.security.servletfilters.xmluserfile.FedoraUsers

      }
    }
  }

  private void configureFedoraUsers() throws InstallationFailedException {
    FedoraUsers fu = FedoraUsers.getInstance();
    for (User user : fu.getUsers()) {
      if (user.getName().equals("fedoraAdmin")) {
        user.setPassword(_opts
            .getValue(InstallOptions.FEDORA_ADMIN_PASS));
      }
    }

    try {
      Writer outputWriter = new BufferedWriter(new FileWriter(
          FedoraUsers.fedoraUsersXML));
      fu.write(outputWriter);
      outputWriter.close();
    } catch (IOException e) {
      throw new InstallationFailedException(e.getMessage(), e);
    }
  }
View Full Code Here

Examples of org.fcrepo.server.security.servletfilters.xmluserfile.FedoraUsers

public class TestFedoraUsers {

    @Test
    public void testGetInstance() throws Exception {
        FedoraUsers fu = FedoraUsers.getInstance();
        assertNotNull(fu);
        //Writer outputWriter = new BufferedWriter(new OutputStreamWriter(System.out));
        //fu.write(outputWriter);
        //outputWriter.close();
    }
View Full Code Here

Examples of org.fcrepo.server.security.servletfilters.xmluserfile.FedoraUsers

    @Test
    public void testGetInstanceString() throws Exception {
        String fedoraUsersXML = "src/main/resources/fcfg/server/fedora-users.xml";
        File f = new File(fedoraUsersXML);
        FedoraUsers fu = FedoraUsers.getInstance(f.toURI());
        assertNotNull(fu);
        //Writer outputWriter = new BufferedWriter(new OutputStreamWriter(System.out));
        //fu.write(outputWriter);
        //outputWriter.close();
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.