Lines Matching refs:ServiceSchemaImpl

122         final Map<String, ServiceSchemaImpl> newSchemaMap = fetchNewServiceAttributes(serviceSchemaDoc);
134 Map<String, ServiceSchemaImpl> newSchemaMap = fetchNewServiceAttributes(serviceSchemaDoc);
135 Map<String, ServiceSchemaImpl> existingSchemaMap = null;
172 private static Map<String, ServiceSchemaImpl> getAttributes(Document document) {
173 Map<String, ServiceSchemaImpl> schemas = new HashMap<String, ServiceSchemaImpl>();
178 schemas.put(schemaType, new ServiceSchemaImpl(childNode));
185 private boolean calculateSchemaChanges(Map<String, ServiceSchemaImpl> newSchemaMap,
186 Map<String, ServiceSchemaImpl> existingSchemaMap) throws UpgradeException {
188 for (Map.Entry<String, ServiceSchemaImpl> entry : newSchemaMap.entrySet()) {
190 ServiceSchemaImpl schema = entry.getValue();
202 private boolean calculateSubSchemaChanges(Map<String, ServiceSchemaImpl> newSchemaMap,
203 Map<String, ServiceSchemaImpl> existingSchemaMap) throws UpgradeException {
207 for (Map.Entry<String, ServiceSchemaImpl> newAttrSchemaEntry : newSchemaMap.entrySet()) {
232 ServiceSchemaImpl newSchema,
233 ServiceSchemaImpl existingSchema)
260 private boolean calculateServiceModifications(Map<String, ServiceSchemaImpl> newSchemaMap,
261 Map<String, ServiceSchemaImpl> existingSchemaMap) throws UpgradeException {
265 for (Map.Entry<String, ServiceSchemaImpl> newAttrSchemaEntry : newSchemaMap.entrySet()) {
266 ServiceSchemaImpl schema = existingSchemaMap.get(newAttrSchemaEntry.getKey());
303 ServiceSchemaImpl newSchema,
304 ServiceSchemaImpl existingSchema)
338 ServiceSchemaImpl newSchema,
339 ServiceSchemaImpl existingSchema)
373 ServiceSchemaImpl newSchema,
374 ServiceSchemaImpl existingSchema)
484 private Map<String, ServiceSchemaImpl> fetchNewServiceAttributes(Document doc)
492 Map<String, ServiceSchemaImpl> schemas = getAttributes(doc);
497 private Map<String, ServiceSchemaImpl> fetchExistingServiceAttributes(String serviceName, SSOToken adminToken)
500 Map<String, ServiceSchemaImpl> schemas = getAttributes(ssm.getDocumentCopy());
511 private void createServiceModifications(Map<String, ServiceSchemaImpl> newSchemaMap) throws UpgradeException {
515 for (Map.Entry<String, ServiceSchemaImpl> newAttrSchemaEntry : newSchemaMap.entrySet()) {
539 ServiceSchemaImpl newSchema)