Searched defs:serviceSchema (Results 1 - 25 of 25) sorted by relevance

/forgerock/openam-v13/openam-console/src/main/java/com/sun/identity/console/property/
H A DMultiServicesPropertyXMLBuilder.java45 * @param serviceSchema Service schemas.
51 ServiceSchema serviceSchema,
54 super(serviceSchema, model);
55 svcName = serviceSchema.getServiceName();
50 MultiServicesPropertyXMLBuilder( ServiceSchema serviceSchema, AMModel model ) argument
H A DSubConfigPropertyXMLBuilder.java48 private ServiceSchema serviceSchema; field in class:SubConfigPropertyXMLBuilder
54 * @param serviceSchema Service Schema.
61 ServiceSchema serviceSchema,
66 this.serviceSchema = serviceSchema;
103 Set attributes = serviceSchema.getAttributeSchemas();
59 SubConfigPropertyXMLBuilder( String serviceName, ServiceSchema serviceSchema, AMModel model ) argument
H A DPropertyXMLBuilder.java95 * @param serviceSchema Service schemas.
100 public PropertyXMLBuilder(ServiceSchema serviceSchema, AMModel model) argument
104 this.serviceName = serviceSchema.getServiceName();
105 getServiceResourceBundle(serviceSchema);
110 serviceSchema.getServiceType(),
111 serviceSchema.getAttributeSchemas());
118 * @param serviceSchema Service schemas.
127 public PropertyXMLBuilder(ServiceSchema serviceSchema, AMModel model, ResourceBundle serviceBundle, argument
131 this.serviceName = serviceSchema.getServiceName();
139 mapTypeToAttributeSchema.put(serviceSchema
194 PropertyXMLBuilder( ServiceSchema serviceSchema, AMModel model, Set attributeSchemas ) argument
[all...]
/forgerock/openam/openam-console/src/main/java/com/sun/identity/console/property/
H A DMultiServicesPropertyXMLBuilder.java45 * @param serviceSchema Service schemas.
51 ServiceSchema serviceSchema,
54 super(serviceSchema, model);
55 svcName = serviceSchema.getServiceName();
50 MultiServicesPropertyXMLBuilder( ServiceSchema serviceSchema, AMModel model ) argument
H A DSubConfigPropertyXMLBuilder.java48 private ServiceSchema serviceSchema; field in class:SubConfigPropertyXMLBuilder
54 * @param serviceSchema Service Schema.
61 ServiceSchema serviceSchema,
66 this.serviceSchema = serviceSchema;
103 Set attributes = serviceSchema.getAttributeSchemas();
59 SubConfigPropertyXMLBuilder( String serviceName, ServiceSchema serviceSchema, AMModel model ) argument
H A DPropertyXMLBuilder.java95 * @param serviceSchema Service schemas.
100 public PropertyXMLBuilder(ServiceSchema serviceSchema, AMModel model) argument
104 this.serviceName = serviceSchema.getServiceName();
105 getServiceResourceBundle(serviceSchema);
110 serviceSchema.getServiceType(),
111 serviceSchema.getAttributeSchemas());
118 * @param serviceSchema Service schemas.
127 public PropertyXMLBuilder(ServiceSchema serviceSchema, AMModel model, ResourceBundle serviceBundle, argument
131 this.serviceName = serviceSchema.getServiceName();
139 mapTypeToAttributeSchema.put(serviceSchema
194 PropertyXMLBuilder( ServiceSchema serviceSchema, AMModel model, Set attributeSchemas ) argument
[all...]
/forgerock/openam-v13/openam-core/src/main/java/com/iplanet/am/sdk/
H A DAMCrypt.java49 ServiceSchema serviceSchema) {
50 if (serviceSchema == null || attributes == null) {
57 AttributeSchema as = serviceSchema
84 ServiceSchema serviceSchema) {
85 if (serviceSchema == null || attributes == null) {
92 AttributeSchema as = serviceSchema
120 ServiceSchema serviceSchema) {
125 AttributeSchema as = serviceSchema.getAttributeSchema(attributeName);
48 encryptPasswords(Map attributes, ServiceSchema serviceSchema) argument
83 decryptPasswords(Map attributes, ServiceSchema serviceSchema) argument
119 decryptPasswords(Set values, String attributeName, ServiceSchema serviceSchema) argument
H A DAMTemplateImpl.java49 private ServiceSchema serviceSchema = null; field in class:AMTemplateImpl
63 serviceSchema = ssm.getPolicySchema();
65 serviceSchema = ssm.getDynamicSchema();
68 if (serviceSchema == null) {
106 return serviceSchema.getAttributeSchemas();
173 attributes = AMCrypt.encryptPasswords(attributes, serviceSchema);
175 serviceSchema.validateAttributes(attributes);
198 return AMCrypt.decryptPasswords(values, attributeName, serviceSchema);
216 attributes = AMCrypt.decryptPasswords(attributes, serviceSchema);
H A DAMOrgTemplateImpl.java55 ServiceSchema serviceSchema = null; field in class:AMOrgTemplateImpl
76 serviceSchema = ssm.getSchema(SchemaType.ORGANIZATION);
78 if (serviceSchema == null) {
112 return serviceSchema.getAttributeSchemas();
/forgerock/openam/openam-core/src/main/java/com/iplanet/am/sdk/
H A DAMCrypt.java49 ServiceSchema serviceSchema) {
50 if (serviceSchema == null || attributes == null) {
57 AttributeSchema as = serviceSchema
84 ServiceSchema serviceSchema) {
85 if (serviceSchema == null || attributes == null) {
92 AttributeSchema as = serviceSchema
120 ServiceSchema serviceSchema) {
125 AttributeSchema as = serviceSchema.getAttributeSchema(attributeName);
48 encryptPasswords(Map attributes, ServiceSchema serviceSchema) argument
83 decryptPasswords(Map attributes, ServiceSchema serviceSchema) argument
119 decryptPasswords(Set values, String attributeName, ServiceSchema serviceSchema) argument
H A DAMTemplateImpl.java49 private ServiceSchema serviceSchema = null; field in class:AMTemplateImpl
63 serviceSchema = ssm.getPolicySchema();
65 serviceSchema = ssm.getDynamicSchema();
68 if (serviceSchema == null) {
106 return serviceSchema.getAttributeSchemas();
173 attributes = AMCrypt.encryptPasswords(attributes, serviceSchema);
175 serviceSchema.validateAttributes(attributes);
198 return AMCrypt.decryptPasswords(values, attributeName, serviceSchema);
216 attributes = AMCrypt.decryptPasswords(attributes, serviceSchema);
H A DAMOrgTemplateImpl.java55 ServiceSchema serviceSchema = null; field in class:AMOrgTemplateImpl
76 serviceSchema = ssm.getSchema(SchemaType.ORGANIZATION);
78 if (serviceSchema == null) {
112 return serviceSchema.getAttributeSchemas();
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/authentication/config/
H A DAMAuthenticationSchema.java49 private ServiceSchema serviceSchema; field in class:AMAuthenticationSchema
52 serviceSchema = schema;
61 return serviceSchema.getName();
70 return serviceSchema.getServiceName();
98 return serviceSchema.getAttributeSchemaNames();
108 return serviceSchema.getAttributeSchema(attr);
117 return serviceSchema.getAttributeSchemas();
127 return serviceSchema.getAttributeDefaults();
161 serviceSchema.setAttributeDefaults(values);
176 serviceSchema
[all...]
/forgerock/openam/openam-core/src/main/java/com/sun/identity/authentication/config/
H A DAMAuthenticationSchema.java49 private ServiceSchema serviceSchema; field in class:AMAuthenticationSchema
52 serviceSchema = schema;
61 return serviceSchema.getName();
70 return serviceSchema.getServiceName();
98 return serviceSchema.getAttributeSchemaNames();
108 return serviceSchema.getAttributeSchema(attr);
117 return serviceSchema.getAttributeSchemas();
127 return serviceSchema.getAttributeDefaults();
161 serviceSchema.setAttributeDefaults(values);
176 serviceSchema
[all...]
/forgerock/openam-v13/openam-oauth2/src/main/java/org/forgerock/openam/oauth2/rest/
H A DClientResource.java83 private ServiceSchema serviceSchema = null; field in class:ClientResource
95 this.serviceSchema = serviceSchemaManager.getOrganizationSchema().getSubSchema("OAuth2Client");
113 this.serviceSchema = serviceSchemaManager.getOrganizationSchema().getSubSchema("OAuth2Client");
140 if (serviceSchema == null || serviceSchemaManager == null){
142 debug.error("ClientResource :: CREATE by " + principal + ": No serviceSchema available.");
281 AttributeSchema attributeSchema = serviceSchema.getAttributeSchema(value);
/forgerock/openam/openam-oauth2/src/main/java/org/forgerock/openam/oauth2/rest/
H A DClientResource.java84 private ServiceSchema serviceSchema = null; field in class:ClientResource
96 this.serviceSchema = serviceSchemaManager.getOrganizationSchema().getSubSchema("OAuth2Client");
114 this.serviceSchema = serviceSchemaManager.getOrganizationSchema().getSubSchema("OAuth2Client");
141 if (serviceSchema == null || serviceSchemaManager == null){
143 debug.error("ClientResource :: CREATE by " + principal + ": No serviceSchema available.");
282 AttributeSchema attributeSchema = serviceSchema.getAttributeSchema(value);
/forgerock/openam-v13/openam-core-rest/src/test/java/org/forgerock/openam/core/rest/sms/
H A DSmsJsonConverterTest.java70 private ServiceSchema serviceSchema; field in class:SmsJsonConverterTest
96 serviceSchema = mock(ServiceSchema.class);
98 given(serviceSchema.getAttributeSchemaNames()).willReturn(getHashSet(STRING_VALUE_NAME, INT_VALUE_NAME,
116 converter = new TestJsonConverter(serviceSchema);
162 given(serviceSchema.getAttributeSchema(valueName)).willReturn(attributeSchema);
176 given(serviceSchema.validateAttributes(Matchers.<Map>anyObject())).willReturn(true);
189 given(serviceSchema.validateAttributes(Matchers.<Map>anyObject())).willReturn(true);
232 given(serviceSchema.validateAttributes(Matchers.<Map>anyObject())).willReturn(false);
241 given(serviceSchema.validateAttributes(Matchers.<Map>anyObject())).willReturn(false);
249 given(serviceSchema
[all...]
/forgerock/openam/openam-core-rest/src/test/java/org/forgerock/openam/core/rest/sms/
H A DSmsJsonConverterTest.java70 private ServiceSchema serviceSchema; field in class:SmsJsonConverterTest
96 serviceSchema = mock(ServiceSchema.class);
98 given(serviceSchema.getAttributeSchemaNames()).willReturn(getHashSet(STRING_VALUE_NAME, INT_VALUE_NAME,
116 converter = new TestJsonConverter(serviceSchema);
162 given(serviceSchema.getAttributeSchema(valueName)).willReturn(attributeSchema);
176 given(serviceSchema.validateAttributes(Matchers.<Map>anyObject())).willReturn(true);
189 given(serviceSchema.validateAttributes(Matchers.<Map>anyObject())).willReturn(true);
232 given(serviceSchema.validateAttributes(Matchers.<Map>anyObject())).willReturn(false);
241 given(serviceSchema.validateAttributes(Matchers.<Map>anyObject())).willReturn(false);
249 given(serviceSchema
[all...]
H A DSmsResourceProviderTest.java73 private ServiceSchema serviceSchema; field in class:SmsResourceProviderTest
134 SmsResourceProvider resourceProvider = new MySmsResourceProvider(serviceSchema, schemaType, subSchemaPath,
144 SmsResourceProvider resourceProvider = new MySmsResourceProvider(serviceSchema, schemaType, subSchemaPath,
158 when(serviceSchema.getI18NFileName()).thenReturn("org/forgerock/openam/core/rest/sms/SmsResourceProviderTest");
159 when(serviceSchema.getResourceName()).thenReturn("one");
160 when(serviceSchema.getI18NKey()).thenReturn("subOne");
161 when(serviceSchema.supportsMultipleConfigurations()).thenReturn(false);
163 SmsResourceProvider resourceProvider = new MySmsResourceProvider(serviceSchema, schemaType, subSchemaPath,
182 SmsResourceProvider rp = new MySmsResourceProvider(serviceSchema, SchemaType.ORGANIZATION, subSchemaPath,
196 SmsResourceProvider rp = new MySmsResourceProvider(serviceSchema, SchemaTyp
[all...]
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/sm/
H A DOrganizationConfigManager.java1685 static void copySubConfig(ServiceConfig from, ServiceConfig to, ServiceSchema serviceSchema) argument
1691 ServiceSchema subSchema = serviceSchema.getSubSchema(scf.getSchemaID());
H A DSMSUtils.java476 * @param serviceSchema The service schema in which the attributes are specified.
480 ServiceSchema serviceSchema) {
485 if (!AttributeSchema.Type.VALIDATOR.equals(serviceSchema.getAttributeSchema(name).getType())) {
479 removeValidators(Map<String, Set<String>> attributeDefaults, ServiceSchema serviceSchema) argument
/forgerock/openam/openam-core/src/main/java/com/sun/identity/sm/
H A DOrganizationConfigManager.java1748 static void copySubConfig(ServiceConfig from, ServiceConfig to, ServiceSchema serviceSchema) argument
1754 ServiceSchema subSchema = serviceSchema.getSubSchema(scf.getSchemaID());
H A DSMSUtils.java518 * @param serviceSchema The service schema in which the attributes are specified.
522 ServiceSchema serviceSchema) {
527 if (!AttributeSchema.Type.VALIDATOR.equals(serviceSchema.getAttributeSchema(name).getType())) {
521 removeValidators(Map<String, Set<String>> attributeDefaults, ServiceSchema serviceSchema) argument
/forgerock/openam-v13/openam-upgrade/src/main/java/org/forgerock/openam/upgrade/
H A DUpgradeUtils.java402 ServiceSchema serviceSchema,
407 addSubSchema(serviceName, newSubSchema.getValue().getSubSchemaName(), serviceSchema, newSubSchema.getValue().getSubSchemaNode());
413 subSchema = serviceSchema.getSubSchema(newSubSchema.getKey());
430 ServiceSchema serviceSchema)
440 serviceSchema.removeSubSchema(subSchemaName);
451 ServiceSchema serviceSchema,
471 subSchema = serviceSchema.getSubSchema(schema.getKey());
485 ss = serviceSchema.getSubSchema(schema.getKey());
500 ServiceSchema serviceSchema,
518 subSchema = serviceSchema
400 addNewSubSchema(String serviceName, SubSchemaModificationWrapper ssMod, ServiceSchema serviceSchema, SSOToken adminToken) argument
427 removeSubSchema( String serviceName, String subSchemaName, ServiceSchema serviceSchema) argument
448 addAttributesToSchema(String serviceName, String schemaType, ServiceSchemaModificationWrapper schemaMods, ServiceSchema serviceSchema, SSOToken adminToken) argument
497 modifyAttributesInExistingSchema(String serviceName, String schemaType, ServiceSchemaModificationWrapper schemaMods, ServiceSchema serviceSchema, SSOToken adminToken) argument
543 removeAttributesFromSchema(String serviceName, String schemaType, ServiceSchemaModificationWrapper schemaMods, ServiceSchema serviceSchema, SSOToken adminToken) argument
774 modifyAttributeInExistingSchema(ServiceSchema serviceSchema, String attrName, Node attributeSchemaNode) argument
944 addAttributeToSchema(ServiceSchema serviceSchema, Node attributeSchemaNode) argument
1001 removeAttributeSchema(ServiceSchema serviceSchema, String attributeName) argument
1057 replaceAttributeSchema( ServiceSchema serviceSchema, String attributeName, Node attributeSchemaNode) argument
1358 addSubSchema( String serviceName, String subSchemaName, ServiceSchema serviceSchema, Node subSchemaNode) argument
[all...]
/forgerock/openam/openam-upgrade/src/main/java/org/forgerock/openam/upgrade/
H A DUpgradeUtils.java402 ServiceSchema serviceSchema,
407 addSubSchema(serviceName, newSubSchema.getValue().getSubSchemaName(), serviceSchema, newSubSchema.getValue().getSubSchemaNode());
413 subSchema = serviceSchema.getSubSchema(newSubSchema.getKey());
430 ServiceSchema serviceSchema)
440 serviceSchema.removeSubSchema(subSchemaName);
451 ServiceSchema serviceSchema,
471 subSchema = serviceSchema.getSubSchema(schema.getKey());
485 ss = serviceSchema.getSubSchema(schema.getKey());
500 ServiceSchema serviceSchema,
518 subSchema = serviceSchema
400 addNewSubSchema(String serviceName, SubSchemaModificationWrapper ssMod, ServiceSchema serviceSchema, SSOToken adminToken) argument
427 removeSubSchema( String serviceName, String subSchemaName, ServiceSchema serviceSchema) argument
448 addAttributesToSchema(String serviceName, String schemaType, ServiceSchemaModificationWrapper schemaMods, ServiceSchema serviceSchema, SSOToken adminToken) argument
497 modifyAttributesInExistingSchema(String serviceName, String schemaType, ServiceSchemaModificationWrapper schemaMods, ServiceSchema serviceSchema, SSOToken adminToken) argument
543 removeAttributesFromSchema(String serviceName, String schemaType, ServiceSchemaModificationWrapper schemaMods, ServiceSchema serviceSchema, SSOToken adminToken) argument
774 modifyAttributeInExistingSchema(ServiceSchema serviceSchema, String attrName, Node attributeSchemaNode) argument
944 addAttributeToSchema(ServiceSchema serviceSchema, Node attributeSchemaNode) argument
1001 removeAttributeSchema(ServiceSchema serviceSchema, String attributeName) argument
1057 replaceAttributeSchema( ServiceSchema serviceSchema, String attributeName, Node attributeSchemaNode) argument
1358 addSubSchema( String serviceName, String subSchemaName, ServiceSchema serviceSchema, Node subSchemaNode) argument
[all...]

Completed in 107 milliseconds