// --- BEGIN COPYRIGHT BLOCK --- // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation; version 2 of the License. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License along // with this program; if not, write to the Free Software Foundation, Inc., // 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. // // (C) 2011 Red Hat, Inc. // All rights reserved. // --- END COPYRIGHT BLOCK --- /** * */ package com.netscape.certsrv.profile; import java.util.ArrayList; import java.util.LinkedHashMap; import java.util.List; import java.util.Map; import java.util.Vector; import javax.xml.bind.JAXBContext; import javax.xml.bind.Marshaller; import javax.xml.bind.Unmarshaller; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.adapters.XmlAdapter; import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import org.jboss.resteasy.plugins.providers.atom.Link; /** * @author jmagne * */ @XmlRootElement(name = "Profile") @XmlAccessorType(XmlAccessType.FIELD) public class ProfileData { public static Marshaller marshaller; public static Unmarshaller unmarshaller; static { try { marshaller = JAXBContext.newInstance(ProfileData.class).createMarshaller(); marshaller.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, true); unmarshaller = JAXBContext.newInstance(ProfileData.class).createUnmarshaller(); } catch (Exception e) { e.printStackTrace(); } } @XmlAttribute protected String id; @XmlElement protected String classId; @XmlElement protected String name; @XmlElement protected String description; @XmlElement protected boolean enabled; @XmlElement protected boolean visible; @XmlElement protected String enabledBy; @XmlElement protected String authenticatorId; @XmlElement protected String authzAcl; @XmlElement protected boolean renewal; @XmlElement protected boolean xmlOutput; @XmlElement(name = "Input") protected List inputs = new ArrayList(); @XmlElement(name = "Output") protected List outputs = new ArrayList(); @XmlElement(name = "PolicySets") @XmlJavaTypeAdapter(PolicySetAdapter.class) protected Map> policySets = new LinkedHashMap>(); protected Link link; public Link getLink() { return link; } public void setLink(Link link) { this.link = link; } public String getAuthenticatorId() { return authenticatorId; } public void setAuthenticatorId(String authenticatorId) { this.authenticatorId = authenticatorId; } public String getAuthzAcl() { return authzAcl; } public void setAuthzAcl(String authzAcl) { this.authzAcl = authzAcl; } public boolean isRenewal() { return renewal; } public void setRenewal(boolean renewal) { this.renewal = renewal; } public boolean isXMLOutput() { return xmlOutput; } public void setXMLOutput(boolean isXMLOutput) { this.xmlOutput = isXMLOutput; } public void setName(String name) { this.name = name; } public String getName() { return name; } public void setDescription(String description) { this.description = description; } public String getDescription() { return description; } public void setEnabled(boolean enabled) { this.enabled = enabled; } public boolean isEnabled() { return enabled; } public void setVisible(boolean visible) { this.visible = visible; } public boolean isVisible() { return visible; } public void setEnabledBy(String enabledBy) { this.enabledBy = enabledBy; } public String getEnabledBy() { return enabledBy; } public void setId(String id) { this.id = id; } public String getId() { return id; } public String getClassId() { return classId; } public void setClassId(String classId) { this.classId = classId; } public void addProfileInput(ProfileInput input) { inputs.add(input); } public ProfileInput getProfileInput(String id) { for (ProfileInput input: inputs) { if (input.getId().equals(id)) return input; } return null; } public List getInputs() { return inputs; } public void setInputs(List inputs) { this.inputs = inputs; } public List getOutputs() { return outputs; } public void setOutputs(List outputs) { this.outputs = outputs; } public Map> getPolicySets() { return policySets; } public void setPolicySets(Map> policySets) { this.policySets = policySets; } public void addProfilePolicySet(String id, Vector policySet) { this.policySets.put(id, policySet); } public void addProfileOutput(ProfileOutput output) { outputs.add(output); } public ProfileOutput getProfileOutput(String id) { for (ProfileOutput output: outputs) { if (output.getId().equals(id)) return output; } return null; } public static class PolicySetAdapter extends XmlAdapter>> { public PolicySetList marshal(Map> map) { PolicySetList list = new PolicySetList(); for (Map.Entry> entry : map.entrySet()) { PolicySet pset = new PolicySet(); pset.name = entry.getKey(); pset.value = entry.getValue(); list.psets.add(pset); } return list; } public Map> unmarshal(PolicySetList list) { Map> map = new LinkedHashMap>(); for (PolicySet pset : list.psets) { map.put(pset.name, pset.value); } return map; } } public static class PolicySetList { @XmlElement(name="PolicySet") public List psets = new ArrayList(); } public static class PolicySet { @XmlElement(name="id") public String name; @XmlElement public Vector value; } public static void main(String args[]) throws Exception { List inputs = new ArrayList(); //ProfileInput input = new ProfileInput(); //input.setClassId(classId); //input.setInputId(inputId); //input.setName(name); //input.setText(text); ProfileData data = new ProfileData(); data.setClassId("com.netscape.cms.profile.common.CAEnrollProfile"); data.setDescription("This certificate profile is for enrolling user certificates."); data.setEnabled(true); data.setEnabledBy("admin"); data.setId("caUserCertEnrollImpl"); data.setInputs(inputs); data.setName("Manual User Dual-Use Certificate Enrollment"); //data.setOutputs(outputs); //data.setPolicySets(policySets); data.setRenewal(false); data.setVisible(true); data.setXMLOutput(false); } }