Java Code Examples for javax.xml.bind.annotation.adapters.NormalizedStringAdapter
The following examples show how to use
javax.xml.bind.annotation.adapters.NormalizedStringAdapter. These examples are extracted from open source projects.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source Project: kfs Source File: QualificationListAdapter.java License: GNU Affero General Public License v3.0 | 6 votes |
/** * @see javax.xml.bind.annotation.adapters.XmlAdapter#unmarshal(java.lang.Object) */ @Override public Map<String, String> unmarshal(QualificationList v) throws Exception { if (v != null) { NormalizedStringAdapter normalizedStringAdapter = new NormalizedStringAdapter(); Map<String, String> map = new HashMap<String, String>(); for (MapStringStringAdapter.StringMapEntry stringMapEntry : v.getQualifications()) { String tempKey = normalizedStringAdapter.unmarshal(stringMapEntry.getKey()); if (StringUtils.isBlank(tempKey)) { throw new UnmarshalException("Cannot create a qualification entry with a blank key"); } else if (map.containsKey(tempKey)) { throw new UnmarshalException("Cannot create more than one qualification entry with a key of \"" + tempKey + "\""); } map.put(tempKey, normalizedStringAdapter.unmarshal(stringMapEntry.getValue())); } } return null; }
Example 2
Source Project: kfs Source File: PermissionDetailListAdapter.java License: GNU Affero General Public License v3.0 | 6 votes |
/** * @see javax.xml.bind.annotation.adapters.XmlAdapter#unmarshal(java.lang.Object) */ @Override public Map<String, String> unmarshal(PermissionDetailList v) throws Exception { if (v != null) { NormalizedStringAdapter normalizedStringAdapter = new NormalizedStringAdapter(); Map<String, String> map = new HashMap<String, String>(); for (MapStringStringAdapter.StringMapEntry stringMapEntry : v.getPermissionDetails()) { String tempKey = normalizedStringAdapter.unmarshal(stringMapEntry.getKey()); if (StringUtils.isBlank(tempKey)) { throw new UnmarshalException("Cannot create a permission detail entry with a blank key"); } else if (map.containsKey(tempKey)) { throw new UnmarshalException("Cannot create more than one permission detail entry with a key of \"" + tempKey + "\""); } map.put(tempKey, normalizedStringAdapter.unmarshal(stringMapEntry.getValue())); } } return null; }
Example 3
Source Project: kfs Source File: NameAndNamespacePairValidatingAdapter.java License: GNU Affero General Public License v3.0 | 6 votes |
/** * @see javax.xml.bind.annotation.adapters.XmlAdapter#unmarshal(java.lang.Object) */ @Override public NameAndNamespacePair unmarshal(NameAndNamespacePair v) throws Exception { if (v != null) { if (StringUtils.isBlank(v.getName())) { throw new UnmarshalException("Cannot import a name-and-namespace pair with a blank name"); } else if (StringUtils.isBlank(v.getNamespaceCode())) { throw new UnmarshalException("Cannot import a name-and-namespace pair with a blank namespace code"); } if (CoreServiceApiServiceLocator.getNamespaceService().getNamespace(v.getNamespaceCode()) == null) { throw new UnmarshalException("Cannot import a name-and-namespace pair with invalid or unknown namespace \"" + v.getNamespaceCode() + "\""); } v.setName(new NormalizedStringAdapter().unmarshal(v.getName())); v.setNamespaceCode(v.getNamespaceCode()); } return v; }
Example 4
Source Project: kfs Source File: NameAndNamespacePairValidatingAdapter.java License: GNU Affero General Public License v3.0 | 6 votes |
/** * @see javax.xml.bind.annotation.adapters.XmlAdapter#marshal(java.lang.Object) */ @Override public NameAndNamespacePair marshal(NameAndNamespacePair v) throws Exception { if (v != null) { if (StringUtils.isBlank(v.getName())) { throw new MarshalException("Cannot export a name-and-namespace pair with a blank name"); } else if (StringUtils.isBlank(v.getNamespaceCode())) { throw new MarshalException("Cannot export a name-and-namespace pair with a blank namespace code"); } else if (CoreServiceApiServiceLocator.getNamespaceService().getNamespace(v.getNamespaceCode()) == null) { throw new MarshalException("Cannot export a name-and-namespace pair with invalid or unknown namespace \"" + v.getNamespaceCode() + "\""); } v.setName(new NormalizedStringAdapter().marshal(v.getName())); v.setNamespaceCode(v.getNamespaceCode()); } return v; }
Example 5
Source Project: rice Source File: QualificationListAdapter.java License: Educational Community License v2.0 | 6 votes |
/** * @see javax.xml.bind.annotation.adapters.XmlAdapter#unmarshal(java.lang.Object) */ @Override public Map<String, String> unmarshal(QualificationList v) throws Exception { if (v != null) { NormalizedStringAdapter normalizedStringAdapter = new NormalizedStringAdapter(); Map<String, String> map = new HashMap<String, String>(); for (MapStringStringAdapter.StringMapEntry stringMapEntry : v.getQualifications()) { String tempKey = normalizedStringAdapter.unmarshal(stringMapEntry.getKey()); if (StringUtils.isBlank(tempKey)) { throw new UnmarshalException("Cannot create a qualification entry with a blank key"); } else if (map.containsKey(tempKey)) { throw new UnmarshalException("Cannot create more than one qualification entry with a key of \"" + tempKey + "\""); } map.put(tempKey, normalizedStringAdapter.unmarshal(stringMapEntry.getValue())); } } return null; }
Example 6
Source Project: rice Source File: PermissionDetailListAdapter.java License: Educational Community License v2.0 | 6 votes |
/** * @see javax.xml.bind.annotation.adapters.XmlAdapter#unmarshal(java.lang.Object) */ @Override public Map<String, String> unmarshal(PermissionDetailList v) throws Exception { if (v != null) { NormalizedStringAdapter normalizedStringAdapter = new NormalizedStringAdapter(); Map<String, String> map = new HashMap<String, String>(); for (MapStringStringAdapter.StringMapEntry stringMapEntry : v.getPermissionDetails()) { String tempKey = normalizedStringAdapter.unmarshal(stringMapEntry.getKey()); if (StringUtils.isBlank(tempKey)) { throw new UnmarshalException("Cannot create a permission detail entry with a blank key"); } else if (map.containsKey(tempKey)) { throw new UnmarshalException("Cannot create more than one permission detail entry with a key of \"" + tempKey + "\""); } map.put(tempKey, normalizedStringAdapter.unmarshal(stringMapEntry.getValue())); } } return null; }
Example 7
Source Project: rice Source File: NameAndNamespacePairValidatingAdapter.java License: Educational Community License v2.0 | 6 votes |
/** * @see javax.xml.bind.annotation.adapters.XmlAdapter#unmarshal(java.lang.Object) */ @Override public NameAndNamespacePair unmarshal(NameAndNamespacePair v) throws Exception { if (v != null) { if (StringUtils.isBlank(v.getName())) { throw new UnmarshalException("Cannot import a name-and-namespace pair with a blank name"); } else if (StringUtils.isBlank(v.getNamespaceCode())) { throw new UnmarshalException("Cannot import a name-and-namespace pair with a blank namespace code"); } if (CoreServiceApiServiceLocator.getNamespaceService().getNamespace(v.getNamespaceCode()) == null) { throw new UnmarshalException("Cannot import a name-and-namespace pair with invalid or unknown namespace \"" + v.getNamespaceCode() + "\""); } v.setName(new NormalizedStringAdapter().unmarshal(v.getName())); v.setNamespaceCode(v.getNamespaceCode()); } return v; }
Example 8
Source Project: rice Source File: NameAndNamespacePairValidatingAdapter.java License: Educational Community License v2.0 | 6 votes |
/** * @see javax.xml.bind.annotation.adapters.XmlAdapter#marshal(java.lang.Object) */ @Override public NameAndNamespacePair marshal(NameAndNamespacePair v) throws Exception { if (v != null) { if (StringUtils.isBlank(v.getName())) { throw new MarshalException("Cannot export a name-and-namespace pair with a blank name"); } else if (StringUtils.isBlank(v.getNamespaceCode())) { throw new MarshalException("Cannot export a name-and-namespace pair with a blank namespace code"); } else if (CoreServiceApiServiceLocator.getNamespaceService().getNamespace(v.getNamespaceCode()) == null) { throw new MarshalException("Cannot export a name-and-namespace pair with invalid or unknown namespace \"" + v.getNamespaceCode() + "\""); } v.setName(new NormalizedStringAdapter().marshal(v.getName())); v.setNamespaceCode(v.getNamespaceCode()); } return v; }
Example 9
Source Project: kfs Source File: NameAndNamespacePairToPermTemplateIdAdapter.java License: GNU Affero General Public License v3.0 | 5 votes |
/** * @see javax.xml.bind.annotation.adapters.XmlAdapter#unmarshal(java.lang.Object) */ @Override public String unmarshal(NameAndNamespacePair v) throws Exception { if (v != null) { Template permissionTemplate = KimApiServiceLocator.getPermissionService().findPermTemplateByNamespaceCodeAndName( v.getNamespaceCode(), new NormalizedStringAdapter().unmarshal(v.getName())); if (permissionTemplate == null) { throw new UnmarshalException("Cannot find permission template with namespace \"" + v.getNamespaceCode() + "\" and name \"" + v.getName() + "\""); } return permissionTemplate.getId(); } return null; }
Example 10
Source Project: kfs Source File: NameAndNamespacePairToKimTypeIdAdapter.java License: GNU Affero General Public License v3.0 | 5 votes |
/** * @see javax.xml.bind.annotation.adapters.XmlAdapter#unmarshal(java.lang.Object) */ @Override public String unmarshal(NameAndNamespacePair v) throws Exception { if (v != null) { KimTypeContract kimType = KimApiServiceLocator.getKimTypeInfoService().findKimTypeByNameAndNamespace( v.getNamespaceCode(), new NormalizedStringAdapter().unmarshal(v.getName())); if (kimType == null) { throw new UnmarshalException("Cannot find KIM Type with namespace \"" + v.getNamespaceCode() + "\" and name \"" + v.getName() + "\""); } return kimType.getId(); } return null; }
Example 11
Source Project: rice Source File: NameAndNamespacePairToPermTemplateIdAdapter.java License: Educational Community License v2.0 | 5 votes |
/** * @see javax.xml.bind.annotation.adapters.XmlAdapter#unmarshal(java.lang.Object) */ @Override public String unmarshal(NameAndNamespacePair v) throws Exception { if (v != null) { Template permissionTemplate = KimApiServiceLocator.getPermissionService().findPermTemplateByNamespaceCodeAndName( v.getNamespaceCode(), new NormalizedStringAdapter().unmarshal(v.getName())); if (permissionTemplate == null) { throw new UnmarshalException("Cannot find permission template with namespace \"" + v.getNamespaceCode() + "\" and name \"" + v.getName() + "\""); } return permissionTemplate.getId(); } return null; }
Example 12
Source Project: rice Source File: NameAndNamespacePairToKimTypeIdAdapter.java License: Educational Community License v2.0 | 5 votes |
/** * @see javax.xml.bind.annotation.adapters.XmlAdapter#unmarshal(java.lang.Object) */ @Override public String unmarshal(NameAndNamespacePair v) throws Exception { if (v != null) { KimTypeContract kimType = KimApiServiceLocator.getKimTypeInfoService().findKimTypeByNameAndNamespace( v.getNamespaceCode(), new NormalizedStringAdapter().unmarshal(v.getName())); if (kimType == null) { throw new UnmarshalException("Cannot find KIM Type with namespace \"" + v.getNamespaceCode() + "\" and name \"" + v.getName() + "\""); } return kimType.getId(); } return null; }
Example 13
Source Project: OpenESPI-Common-java Source File: ObjectFactory.java License: Apache License 2.0 | 5 votes |
/** * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} */ @XmlElementDecl(namespace = "http://www.w3.org/2005/Atom", name = "email", scope = PersonType.class) @XmlJavaTypeAdapter(NormalizedStringAdapter.class) public JAXBElement<String> createPersonTypeEmail(String value) { return new JAXBElement<String>(PersonTypeEmail_QNAME, String.class, PersonType.class, value); }
Example 14
Source Project: hyperjaxb3 Source File: TypeUseTest.java License: BSD 2-Clause "Simplified" License | 4 votes |
public void testEquals() throws Exception { final CAdapter adapter = new CAdapter(NormalizedStringAdapter.class, false); final CAdapter adapter1 = new CAdapter(NormalizedStringAdapter.class, false); final TypeUse left = CBuiltinLeafInfo.NORMALIZED_STRING; final TypeUse right = TypeUseFactory.adapt(CBuiltinLeafInfo.STRING, adapter); // Assert.assertTrue(adapter.equals(adapter1)); // Assert.assertTrue(left.equals(right)); // Assert.assertTrue(left.hashCode() == right.hashCode()); }
Example 15
Source Project: TencentKona-8 Source File: CAdapter.java License: GNU General Public License v2.0 | 2 votes |
/** * Returns true if the adapter is for whitespace normalization. * Such an adapter can be ignored when producing a list. */ public boolean isWhitespaceAdapter() { return adapterClass2==CollapsedStringAdapter.class || adapterClass2==NormalizedStringAdapter.class; }
Example 16
Source Project: jdk8u60 Source File: CAdapter.java License: GNU General Public License v2.0 | 2 votes |
/** * Returns true if the adapter is for whitespace normalization. * Such an adapter can be ignored when producing a list. */ public boolean isWhitespaceAdapter() { return adapterClass2==CollapsedStringAdapter.class || adapterClass2==NormalizedStringAdapter.class; }
Example 17
Source Project: openjdk-jdk8u Source File: CAdapter.java License: GNU General Public License v2.0 | 2 votes |
/** * Returns true if the adapter is for whitespace normalization. * Such an adapter can be ignored when producing a list. */ public boolean isWhitespaceAdapter() { return adapterClass2==CollapsedStringAdapter.class || adapterClass2==NormalizedStringAdapter.class; }
Example 18
Source Project: openjdk-jdk8u-backup Source File: CAdapter.java License: GNU General Public License v2.0 | 2 votes |
/** * Returns true if the adapter is for whitespace normalization. * Such an adapter can be ignored when producing a list. */ public boolean isWhitespaceAdapter() { return adapterClass2==CollapsedStringAdapter.class || adapterClass2==NormalizedStringAdapter.class; }
Example 19
Source Project: openjdk-jdk9 Source File: CAdapter.java License: GNU General Public License v2.0 | 2 votes |
/** * Returns true if the adapter is for whitespace normalization. * Such an adapter can be ignored when producing a list. */ public boolean isWhitespaceAdapter() { return adapterClass2==CollapsedStringAdapter.class || adapterClass2==NormalizedStringAdapter.class; }
Example 20
Source Project: hottub Source File: CAdapter.java License: GNU General Public License v2.0 | 2 votes |
/** * Returns true if the adapter is for whitespace normalization. * Such an adapter can be ignored when producing a list. */ public boolean isWhitespaceAdapter() { return adapterClass2==CollapsedStringAdapter.class || adapterClass2==NormalizedStringAdapter.class; }
Example 21
Source Project: openjdk-8-source Source File: CAdapter.java License: GNU General Public License v2.0 | 2 votes |
/** * Returns true if the adapter is for whitespace normalization. * Such an adapter can be ignored when producing a list. */ public boolean isWhitespaceAdapter() { return adapterClass2==CollapsedStringAdapter.class || adapterClass2==NormalizedStringAdapter.class; }
Example 22
Source Project: openjdk-8 Source File: CAdapter.java License: GNU General Public License v2.0 | 2 votes |
/** * Returns true if the adapter is for whitespace normalization. * Such an adapter can be ignored when producing a list. */ public boolean isWhitespaceAdapter() { return adapterClass2==CollapsedStringAdapter.class || adapterClass2==NormalizedStringAdapter.class; }