Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: b00613d2354dee025580b7205ba761831a7e3428 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
###############################################################################
# Copyright (c) 2008, 2009 IBM Corporation and others.
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Eclipse Public License v1.0
# which accompanies this distribution, and is available at
# http://www.eclipse.org/legal/epl-v10.html
#
# Contributors:
#     IBM Corporation - initial API and implementation
###############################################################################

DSErrorReporter_cannotFindJavaType = The Java type ''{0}'' in the attribute ''{1}'' cannot be found.
DSErrorReporter_requiredElement = The element ''{0}'' must be defined.
DSErrorReporter_requiredAttribute = An element of type ''{1}'' must define a ''{0}'' attribute value.
DSErrorReporter_attrValue = The value ''{0}'' for the attribute ''{1}'' is illegal.
DSErrorReporter_emptyAttrValue = The attribute ''{0}'' cannot be empty.
DSErrorReporter_duplicateReferenceName = The referenced service name ''{0}'' is not unique to the component.
DSErrorReporter_requiredDefaultConstructor = The class ''{0}'' must have a default constructor.
DSErrorReporter_invalidTarget = The referenced service ''{0}'' has a target of ''{1}'' that is not a well-formed LDAP filter.
DSErrorReporter_unimplementedProvidedInterface = The provided service ''{1}'' is not a supertype of the component implementation class ''{0}''.
DSErrorReporter_singleAndMultipleAttrValue = The property ''{0}'' cannot define both the single value ''{1}'' and an array of values.
DSErrorReporter_emptyPropertyValue = The property ''{0}'' must contain one or more values. 
DSErrorReporter_invalidImmediateValue = The component must be immediate when it does not provide any services and is not a factory component.
DSErrorReporter_invalidImmediateValueFactory = A factory component cannot be immediate.
DSErrorReporter_duplicatedInterface = The service ''{0}'' is already provided.
DSErrorReporter_cannotFindProperties = The properties file ''{0}'' cannot be found.
DSErrorReporter_invalidCardinalityValue = The referenced service ''{0}'' has a cardinality of ''{1}'' that is illegal.
DSErrorReporter_invalidPolicyValue = The referenced service ''{0}'' has a policy of ''{1}'' that is illegal.
DSErrorReporter_propertyTypeCastException = The value ''{0}'' is not a valid ''{1}'' type
DSErrorReporter_illegalServiceFactory = A factory component cannot be a service factory.
DSErrorReporter_illegalServiceFactory_Immediate = An immediate component cannot be a service factory.
DSErrorReporter_illegalEmptyService = The 'service' element must contain at least one 'provide' element.
DSErrorReporter_invalidConfigurationPolicyValue = The modified method will not be called since the configuration policy is set to ignore.

DSBuilder_updating = Updating ...
DSBuilder_verifying = Verifying {0} ...

Back to the top