|
SmartFrog 3.10.000 | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
public interface RemoteReferenceResolverHelper
This makes a reference resolver interface available for remotable objects. ReferenceResolver can not extend from Remote since RMI would then try to marshal a stub to component descriptions on the wire, thinking the description is remotable because it indirectly inherits Remote. Interfaces or classes that need to offer reference resolution and be serializable should implement ReferenceResolver while remotable classes or interfaces should implement RemoteReferenceResolver
| Method Summary | |
|---|---|
java.lang.Object |
sfResolve(Reference reference,
boolean mandatory)
Resolves given reference and gets a java Object. |
boolean |
sfResolve(Reference reference,
boolean defaultValue,
boolean mandatory)
Resolves a reference and gets a boolean. |
ComponentDescription |
sfResolve(Reference reference,
ComponentDescription defaultValue,
boolean mandatory)
Resolves given reference and gets a SmartFrog ComponentDescription. |
Compound |
sfResolve(Reference reference,
Compound defaultValue,
boolean mandatory)
Resolves given reference and gets a SmartFrog Compound. |
double |
sfResolve(Reference reference,
double defaultValue,
boolean mandatory)
Resolves given reference and gets a double. |
double |
sfResolve(Reference reference,
double defaultValue,
java.lang.Double minValue,
java.lang.Double maxValue,
boolean mandatory)
Resolves given reference and gets a double. |
java.io.File |
sfResolve(Reference reference,
java.io.File defaultValue,
boolean mandatory)
Resolves a given reference. |
float |
sfResolve(Reference reference,
float defaultValue,
boolean mandatory)
Resolves given reference and gets a float. |
float |
sfResolve(Reference reference,
float defaultValue,
java.lang.Float minValue,
java.lang.Float maxValue,
boolean mandatory)
Resolves given reference and gets a float. |
java.net.InetAddress |
sfResolve(Reference reference,
java.net.InetAddress defaultValue,
boolean mandatory)
Resolves given reference and gets a java.net.InetAddress. |
int |
sfResolve(Reference reference,
int defaultValue,
boolean mandatory)
Resolves a given reference and gets an int. |
int |
sfResolve(Reference reference,
int defaultValue,
java.lang.Integer minValue,
java.lang.Integer maxValue,
boolean mandatory)
Resolves a given reference and gets an int. |
long |
sfResolve(Reference reference,
long defaultValue,
boolean mandatory)
Resolves given reference and gets a long. |
long |
sfResolve(Reference reference,
long defaultValue,
java.lang.Long minValue,
java.lang.Long maxValue,
boolean mandatory)
Resolves given reference and gets a long. |
java.lang.Object |
sfResolve(Reference reference,
java.lang.Object defaultValue,
boolean mandatory)
Resolves a given reference and gets a String[]. |
Prim |
sfResolve(Reference reference,
Prim defaultValue,
boolean mandatory)
Resolves given reference and gets a SmartFrog Prim. |
Reference |
sfResolve(Reference reference,
Reference defaultValue,
boolean mandatory)
Resolves given reference and gets a SmartFrog Reference. |
java.lang.String[] |
sfResolve(Reference reference,
java.lang.String[] defaultValue,
boolean mandatory)
Resolves a given reference and gets a String[]. |
java.lang.String |
sfResolve(Reference reference,
java.lang.String defaultValue,
boolean mandatory)
Resolves a given reference. |
java.net.URL |
sfResolve(Reference reference,
java.net.URL defaultValue,
boolean mandatory)
Resolves given reference and gets a java.net.URL. |
java.util.Vector |
sfResolve(Reference reference,
java.util.Vector defaultValue,
boolean mandatory)
Resolves a given reference and gets a Vector. |
java.lang.Object |
sfResolve(java.lang.String referencePart)
Useful method since references are generally built up from strings. |
java.lang.Object |
sfResolve(java.lang.String referencePart,
boolean mandatory)
Resolves a reference given a string and gets an Object. |
boolean |
sfResolve(java.lang.String referencePart,
boolean defaultValue,
boolean mandatory)
Resolves a reference given a string and gets a boolean. |
ComponentDescription |
sfResolve(java.lang.String referencePart,
ComponentDescription defaultValue,
boolean mandatory)
Resolves a referencePart given a string and gets a SmartFrog ComponentDescription. |
Compound |
sfResolve(java.lang.String referencePart,
Compound defaultValue,
boolean mandatory)
Resolves a referencePart given a string and gets a SmartFrog Compound. |
double |
sfResolve(java.lang.String referencePart,
double defaultValue,
boolean mandatory)
Resolves a referencePart given a string and gets a double. |
double |
sfResolve(java.lang.String referencePart,
double defaultValue,
java.lang.Double minValue,
java.lang.Double maxValue,
boolean mandatory)
Resolves a referencePart given a string and gets a double. |
java.io.File |
sfResolve(java.lang.String referencePart,
java.io.File defaultValue,
boolean mandatory)
Resolves a reference given a String and gets a File. |
float |
sfResolve(java.lang.String referencePart,
float defaultValue,
boolean mandatory)
Resolves a reference given a string and gets an float. |
float |
sfResolve(java.lang.String referencePart,
float defaultValue,
java.lang.Float minValue,
java.lang.Float maxValue,
boolean mandatory)
Resolves a reference given a string and gets an float. |
java.net.InetAddress |
sfResolve(java.lang.String referencePart,
java.net.InetAddress defaultValue,
boolean mandatory)
Resolves a referencePart given a string and gets a SmartFrog Reference. |
int |
sfResolve(java.lang.String referencePart,
int defaultValue,
boolean mandatory)
Resolves a reference given a string and gets an int. |
int |
sfResolve(java.lang.String referencePart,
int defaultValue,
java.lang.Integer minValue,
java.lang.Integer maxValue,
boolean mandatory)
Resolves a reference given a string and gets an int. |
long |
sfResolve(java.lang.String referencePart,
long defaultValue,
boolean mandatory)
Resolves a referencePart given a string and gets a long. |
long |
sfResolve(java.lang.String referencePart,
long defaultValue,
java.lang.Long minValue,
java.lang.Long maxValue,
boolean mandatory)
Resolves a referencePart given a string and gets a long. |
java.lang.Object |
sfResolve(java.lang.String referencePart,
java.lang.Object defaultValue,
boolean mandatory)
Resolves a reference given a string and gets an Object. |
Prim |
sfResolve(java.lang.String referencePart,
Prim defaultValue,
boolean mandatory)
Resolves a referencePart given a string and gets a SmartFrog Prim. |
Reference |
sfResolve(java.lang.String referencePart,
Reference defaultValue,
boolean mandatory)
Resolves a referencePart given a string and gets a SmartFrog Reference. |
java.lang.String[] |
sfResolve(java.lang.String referencePart,
java.lang.String[] defaultValue,
boolean mandatory)
Resolves a reference given a string and gets a String[]. |
java.lang.String |
sfResolve(java.lang.String referencePart,
java.lang.String defaultValue,
boolean mandatory)
Resolves a reference given a String and gets a String. |
java.net.URL |
sfResolve(java.lang.String referencePart,
java.net.URL defaultValue,
boolean mandatory)
Resolves a referencePart given a string and gets a SmartFrog Reference. |
java.util.Vector |
sfResolve(java.lang.String referencePart,
java.util.Vector defaultValue,
boolean mandatory)
Resolves a reference given a string and gets Vector. |
java.lang.Object |
sfResolveWithParser(java.lang.String reference)
Resolves a reference given a string. |
| Method Detail |
|---|
java.lang.Object sfResolve(java.lang.String referencePart)
throws SmartFrogResolutionException,
java.rmi.RemoteException
referencePart - string representation of reference to resolve
SmartFrogResolutionException - if invalid reference of reference
not resolvable
java.rmi.RemoteException - if there is any network/rmi error
java.lang.Object sfResolveWithParser(java.lang.String reference)
throws SmartFrogResolutionException,
java.rmi.RemoteException
reference - string field reference
SmartFrogResolutionException - if invalid reference of reference
not resolvable
java.rmi.RemoteException - if there is any network/rmi error
java.lang.Object sfResolve(Reference reference,
boolean mandatory)
throws SmartFrogResolutionException,
java.rmi.RemoteException
reference - referencemandatory - boolean that indicates if this attribute must be
present in the description. If it is mandatory and not found it
triggers a SmartFrogResolutionException
SmartFrogResolutionException - if invalid reference of reference
not resolvable
java.rmi.RemoteException - if there is any network/rmi error
java.lang.Object sfResolve(java.lang.String referencePart,
boolean mandatory)
throws SmartFrogResolutionException,
java.rmi.RemoteException
referencePart - string field reference with single partmandatory - boolean that indicates if this attribute must be
present in the description. If it is mandatory and not found it
triggers a ResolutionException
SmartFrogResolutionException - if invalid reference of reference
not resolvable
java.rmi.RemoteException - if there is any network/rmi error
boolean sfResolve(Reference reference,
boolean defaultValue,
boolean mandatory)
throws SmartFrogResolutionException,
java.rmi.RemoteException
reference - referencedefaultValue - boolean default value that is returned when
reference is not found and it is not mandatorymandatory - boolean that indicates if this attribute must be
present in the description. If it is mandatory and not found it
triggers a ResolutionException
SmartFrogResolutionException - if invalid reference of reference
not resolvable
java.rmi.RemoteException - if there is any network/rmi error
int sfResolve(Reference reference,
int defaultValue,
boolean mandatory)
throws SmartFrogResolutionException,
java.rmi.RemoteException
reference - referencedefaultValue - int default value that is returned when reference is
not found and it is not mandatorymandatory - boolean that indicates if this attribute must be
present in the description. If it is mandatory and not found it
triggers a ResolutionException
SmartFrogResolutionException - if invalid reference of reference
not resolvable
java.rmi.RemoteException - if there is any network/rmi error
int sfResolve(Reference reference,
int defaultValue,
java.lang.Integer minValue,
java.lang.Integer maxValue,
boolean mandatory)
throws SmartFrogResolutionException,
java.rmi.RemoteException
reference - referencedefaultValue - int default value that is returned when reference is
not found and it is not mandatorymandatory - boolean that indicates if this attribute must be
present in the description. If it is mandatory and not found it
triggers a ResolutionExceptionminValue - allowed (included).maxValue - allowd (included).
SmartFrogResolutionException - if invalid reference of reference
not resolvable or resolve value <minValue or resolveValue
>maxValue
java.rmi.RemoteException - if there is any network/rmi error
long sfResolve(Reference reference,
long defaultValue,
boolean mandatory)
throws SmartFrogResolutionException,
java.rmi.RemoteException
reference - referencedefaultValue - long default value that is returned when reference
is not found and it is not mandatorymandatory - boolean that indicates if this attribute must be
present in the description. If it is mandatory and not found it
triggers a SmartFrogResolutionException
SmartFrogResolutionException - if invalid reference of reference
not resolvable
java.rmi.RemoteException - if there is any network/rmi error
long sfResolve(Reference reference,
long defaultValue,
java.lang.Long minValue,
java.lang.Long maxValue,
boolean mandatory)
throws SmartFrogResolutionException,
java.rmi.RemoteException
reference - referencedefaultValue - long default value that is returned when reference
is not found and it is not mandatorymandatory - boolean that indicates if this attribute must be
present in the description. If it is mandatory and not found it
triggers a SmartFrogResolutionExceptionminValue - allowed (included)maxValue - allowed (included)
SmartFrogResolutionException - if invalid reference of reference
not resolvable or resolve value <minValue or resolveValue
>maxValue
java.rmi.RemoteException - if there is any network/rmi error
float sfResolve(Reference reference,
float defaultValue,
boolean mandatory)
throws SmartFrogResolutionException,
java.rmi.RemoteException
reference - referencedefaultValue - float default value that is returned when reference
is not found and it is not mandatorymandatory - boolean that indicates if this attribute must be
present in the description. If it is mandatory and not found it
triggers a SmartFrogResolutionException
SmartFrogResolutionException - if invalid reference of reference
not resolvable
java.rmi.RemoteException - if there is any network/rmi error
float sfResolve(Reference reference,
float defaultValue,
java.lang.Float minValue,
java.lang.Float maxValue,
boolean mandatory)
throws SmartFrogResolutionException,
java.rmi.RemoteException
reference - referencedefaultValue - float default value that is returned when reference
is not found and it is not mandatorymandatory - boolean that indicates if this attribute must be
present in the description. If it is mandatory and not found it
triggers a SmartFrogResolutionExceptionminValue - allowed (included)maxValue - allowed (included)
SmartFrogResolutionException - if invalid reference of reference
not resolvable or resolve value <minValue or resolveValue
>maxValue
java.rmi.RemoteException - if there is any network/rmi error
double sfResolve(Reference reference,
double defaultValue,
boolean mandatory)
throws SmartFrogResolutionException,
java.rmi.RemoteException
reference - referencedefaultValue - double default value that is returned when reference
is not found and it is not mandatorymandatory - boolean that indicates if this attribute must be
present in the description. If it is mandatory and not found it
triggers a SmartFrogResolutionException
SmartFrogResolutionException - if invalid reference of reference
not resolvable or resolve value <minValue or resolveValue
>maxValue
java.rmi.RemoteException - if there is any network/rmi error
double sfResolve(Reference reference,
double defaultValue,
java.lang.Double minValue,
java.lang.Double maxValue,
boolean mandatory)
throws SmartFrogResolutionException,
java.rmi.RemoteException
reference - referencedefaultValue - double default value that is returned when reference
is not found and it is not mandatorymandatory - boolean that indicates if this attribute must be
present in the description. If it is mandatory and not found it
triggers a SmartFrogResolutionExceptionminValue - allowed (included)maxValue - allowed (included)
SmartFrogResolutionException - if invalid reference of reference
not resolvable or resolve value <minValue or resolveValue
>maxValue
java.rmi.RemoteException - if there is any network/rmi error
java.lang.String sfResolve(Reference reference,
java.lang.String defaultValue,
boolean mandatory)
throws SmartFrogResolutionException,
java.rmi.RemoteException
reference - referencedefaultValue - String default value that is returned when reference
is not found and it is not mandatorymandatory - boolean that indicates if this attribute must be
present in the description. If it is mandatory and not found it
triggers a ResolutionException
SmartFrogResolutionException - if invalid reference of reference
not resolvable
java.rmi.RemoteException - if there is any network/rmi error
java.util.Vector sfResolve(Reference reference,
java.util.Vector defaultValue,
boolean mandatory)
throws SmartFrogResolutionException,
java.rmi.RemoteException
reference - referencedefaultValue - Vector default value that is returned when reference
is not found and it is not mandatorymandatory - boolean that indicates if this attribute must be
present in the description. If it is mandatory and not found it
triggers a ResolutionException
SmartFrogResolutionException - if invalid reference of reference
not resolvable
java.rmi.RemoteException - if there is any network/rmi error
java.lang.String[] sfResolve(Reference reference,
java.lang.String[] defaultValue,
boolean mandatory)
throws SmartFrogResolutionException,
java.rmi.RemoteException
reference - referencedefaultValue - String[] default value that is returned when
reference is not found and it is not mandatorymandatory - boolean that indicates if this attribute must be
present in the description. If it is mandatory and not found it
triggers a ResolutionException
SmartFrogResolutionException - if invalid reference of reference
not resolvable
java.rmi.RemoteException - if there is any network/rmi error
java.io.File sfResolve(Reference reference,
java.io.File defaultValue,
boolean mandatory)
throws SmartFrogResolutionException,
java.rmi.RemoteException
reference - referencedefaultValue - File default value that is returned when reference
is not found and it is not mandatorymandatory - boolean that indicates if this attribute must be
present in the description. If it is mandatory and not found it
triggers a ResolutionException
SmartFrogResolutionException - if invalid reference of reference
not resolvable
java.rmi.RemoteException - if there is any network/rmi error
java.net.InetAddress sfResolve(Reference reference,
java.net.InetAddress defaultValue,
boolean mandatory)
throws SmartFrogResolutionException,
java.rmi.RemoteException
reference - referencedefaultValue - java.net.InetAddress default value that is returned
when reference is not found and it is not mandatorymandatory - boolean that indicates if this attribute must be
present in the description. If it is mandatory and not found it
triggers a SmartFrogResolutionException
SmartFrogResolutionException - if invalid reference of reference
not resolvable
java.rmi.RemoteException - if there is any network/rmi error
java.net.URL sfResolve(Reference reference,
java.net.URL defaultValue,
boolean mandatory)
throws SmartFrogResolutionException,
java.rmi.RemoteException
reference - referencedefaultValue - java.net.URL default value that is returned
when reference is not found and it is not mandatorymandatory - boolean that indicates if this attribute must be
present in the description. If it is mandatory and not found it
triggers a SmartFrogResolutionException
SmartFrogResolutionException - if invalid reference of reference
not resolvable
java.rmi.RemoteException - if there is any network/rmi error
ComponentDescription sfResolve(Reference reference,
ComponentDescription defaultValue,
boolean mandatory)
throws SmartFrogResolutionException,
java.rmi.RemoteException
reference - referencedefaultValue - SmartFrog ComponentDescription default value that is
returned when reference is not found and it is not mandatorymandatory - boolean that indicates if this attribute must be
present in the description. If it is mandatory and not found it
triggers a SmartFrogResolutionException
SmartFrogResolutionException - if invalid reference of reference
not resolvable
java.rmi.RemoteException - if there is any network/rmi error
Reference sfResolve(Reference reference,
Reference defaultValue,
boolean mandatory)
throws SmartFrogResolutionException,
java.rmi.RemoteException
reference - referencedefaultValue - SmartFrog Reference default value that is returned
when reference is not found and it is not mandatorymandatory - boolean that indicates if this attribute must be
present in the description. If it is mandatory and not found it
triggers a SmartFrogResolutionException
SmartFrogResolutionException - if invalid reference of reference
not resolvable
java.rmi.RemoteException - if there is any network/rmi error
Prim sfResolve(Reference reference,
Prim defaultValue,
boolean mandatory)
throws SmartFrogResolutionException,
java.rmi.RemoteException
reference - referencedefaultValue - SmartFrog Prim default value that is returned
when reference is not found and it is not mandatorymandatory - boolean that indicates if this attribute must be
present in the description. If it is mandatory and not found it
triggers a SmartFrogResolutionException
SmartFrogResolutionException - if invalid reference of reference
not resolvable
java.rmi.RemoteException - if there is any network/rmi error
Compound sfResolve(Reference reference,
Compound defaultValue,
boolean mandatory)
throws SmartFrogResolutionException,
java.rmi.RemoteException
reference - referencedefaultValue - SmartFrog Compound default value that is returned
when reference is not found and it is not mandatorymandatory - boolean that indicates if this attribute must be
present in the description. If it is mandatory and not found it
triggers a SmartFrogResolutionException
SmartFrogResolutionException - if invalid reference of reference
not resolvable
java.rmi.RemoteException - if there is any network/rmi error
java.lang.Object sfResolve(Reference reference,
java.lang.Object defaultValue,
boolean mandatory)
throws SmartFrogResolutionException,
java.rmi.RemoteException
reference - referencedefaultValue - String[] default value that is returned when
reference is not found and it is not mandatorymandatory - boolean that indicates if this attribute must be
present in the description. If it is mandatory and not found it
triggers a ResolutionException
SmartFrogResolutionException - if invalid reference of reference
not resolvable
java.rmi.RemoteException - if there is any network/rmi error
boolean sfResolve(java.lang.String referencePart,
boolean defaultValue,
boolean mandatory)
throws SmartFrogResolutionException,
java.rmi.RemoteException
referencePart - string field reference with single partdefaultValue - boolean default value that is returned when
reference is not found and it is not mandatorymandatory - boolean that indicates if this attribute must be
present in the description. If it is mandatory and not found it
triggers a ResolutionException
SmartFrogResolutionException - if invalid reference of reference
not resolvable
java.rmi.RemoteException - if there is any network/rmi error
int sfResolve(java.lang.String referencePart,
int defaultValue,
boolean mandatory)
throws SmartFrogResolutionException,
java.rmi.RemoteException
referencePart - string field reference with single partdefaultValue - int default value that is returned when reference is
not found and it is not mandatorymandatory - boolean that indicates if this attribute must be
present in the description. If it is mandatory and not found it
triggers a ResolutionException
SmartFrogResolutionException - if invalid reference of reference
not resolvable
java.rmi.RemoteException - if there is any network/rmi error
int sfResolve(java.lang.String referencePart,
int defaultValue,
java.lang.Integer minValue,
java.lang.Integer maxValue,
boolean mandatory)
throws SmartFrogResolutionException,
java.rmi.RemoteException
referencePart - string field reference with single partdefaultValue - int default value that is returned when reference is
not found and it is not mandatorymandatory - boolean that indicates if this attribute must be
present in the description. If it is mandatory and not found it
triggers a ResolutionExceptionminValue - allowed (included)maxValue - allowed (included)
SmartFrogResolutionException - if invalid reference of reference
not resolvable or resolve value <minValue or resolveValue
>maxValue
java.rmi.RemoteException - if there is any network/rmi error
long sfResolve(java.lang.String referencePart,
long defaultValue,
boolean mandatory)
throws SmartFrogResolutionException,
java.rmi.RemoteException
referencePart - string field referencedefaultValue - long default value that is returned when reference
is not found and it is not mandatorymandatory - boolean that indicates if this attribute must be
present in the description. If it is mandatory and not found it
triggers a SmartFrogResolutionException
SmartFrogResolutionException - if invalid reference of reference
not resolvable
java.rmi.RemoteException - if there is any network/rmi error
long sfResolve(java.lang.String referencePart,
long defaultValue,
java.lang.Long minValue,
java.lang.Long maxValue,
boolean mandatory)
throws SmartFrogResolutionException,
java.rmi.RemoteException
referencePart - string field referencedefaultValue - long default value that is returned when reference
is not found and it is not mandatorymandatory - boolean that indicates if this attribute must be
present in the description. If it is mandatory and not found it
triggers a SmartFrogResolutionExceptionminValue - allowed (included)maxValue - allowed (included)
SmartFrogResolutionException - if invalid reference of reference
not resolvable or resolve value <minValue or resolveValue
>maxValue
java.rmi.RemoteException - if there is any network/rmi error
float sfResolve(java.lang.String referencePart,
float defaultValue,
boolean mandatory)
throws SmartFrogResolutionException,
java.rmi.RemoteException
referencePart - string field reference with single partdefaultValue - float default value that is returned when reference
is not found and it is not mandatorymandatory - boolean that indicates if this attribute must be
present in the description. If it is mandatory and not found it
triggers a ResolutionException
SmartFrogResolutionException - if invalid reference of reference
not resolvable or resolve value <minValue or resolveValue
>maxValue
java.rmi.RemoteException - if there is any network/rmi error
float sfResolve(java.lang.String referencePart,
float defaultValue,
java.lang.Float minValue,
java.lang.Float maxValue,
boolean mandatory)
throws SmartFrogResolutionException,
java.rmi.RemoteException
referencePart - string field reference with single partdefaultValue - float default value that is returned when reference
is not found and it is not mandatorymandatory - boolean that indicates if this attribute must be
present in the description. If it is mandatory and not found it
triggers a ResolutionExceptionminValue - allowed (included)maxValue - allowed (included)
SmartFrogResolutionException - if invalid reference of reference
not resolvable or resolve value <minValue or resolveValue
>maxValue
java.rmi.RemoteException - if there is any network/rmi error
double sfResolve(java.lang.String referencePart,
double defaultValue,
boolean mandatory)
throws SmartFrogResolutionException,
java.rmi.RemoteException
referencePart - string field referencedefaultValue - double default value that is returned when reference
is not found and it is not mandatorymandatory - boolean that indicates if this attribute must be
present in the description. If it is mandatory and not found it
triggers a SmartFrogResolutionException
SmartFrogResolutionException - if invalid reference of reference
not resolvable or resolve value <minValue or resolveValue
>maxValue
java.rmi.RemoteException - if there is any network/rmi error
double sfResolve(java.lang.String referencePart,
double defaultValue,
java.lang.Double minValue,
java.lang.Double maxValue,
boolean mandatory)
throws SmartFrogResolutionException,
java.rmi.RemoteException
referencePart - string field referencedefaultValue - double default value that is returned when reference
is not found and it is not mandatorymandatory - boolean that indicates if this attribute must be
present in the description. If it is mandatory and not found it
triggers a SmartFrogResolutionExceptionminValue - allowed (included)maxValue - allowed (included)
SmartFrogResolutionException - if invalid reference of reference
not resolvable or resolve value <minValue or resolveValue
>maxValue
java.rmi.RemoteException - if there is any network/rmi error
java.lang.String sfResolve(java.lang.String referencePart,
java.lang.String defaultValue,
boolean mandatory)
throws SmartFrogResolutionException,
java.rmi.RemoteException
referencePart - string field reference with single partdefaultValue - String default value that is returned when reference
is not found and it is not mandatorymandatory - boolean that indicates if this attribute must be
present in the description. If it is mandatory and not found it
triggers a ResolutionException
SmartFrogResolutionException - if invalid reference of reference
not resolvable
java.rmi.RemoteException - if there is any network/rmi error
java.util.Vector sfResolve(java.lang.String referencePart,
java.util.Vector defaultValue,
boolean mandatory)
throws SmartFrogResolutionException,
java.rmi.RemoteException
referencePart - string field reference with single partdefaultValue - Vector default value that is returned when reference
is not found and it is not mandatorymandatory - boolean that indicates if this attribute must be
present in the description. If it is mandatory and not found it
triggers a ResolutionException
SmartFrogResolutionException - if invalid reference of reference
not resolvable
java.rmi.RemoteException - if there is any network/rmi error
java.lang.String[] sfResolve(java.lang.String referencePart,
java.lang.String[] defaultValue,
boolean mandatory)
throws SmartFrogResolutionException,
java.rmi.RemoteException
referencePart - string field reference with single partdefaultValue - String[] default value that is returned when
reference is not found and it is not mandatorymandatory - boolean that indicates if this attribute must be
present in the description. If it is mandatory and not found it
triggers a ResolutionException
SmartFrogResolutionException - if invalid reference of reference
not resolvable
java.rmi.RemoteException - if there is any network/rmi error
java.io.File sfResolve(java.lang.String referencePart,
java.io.File defaultValue,
boolean mandatory)
throws SmartFrogResolutionException,
java.rmi.RemoteException
referencePart - string field reference with single partdefaultValue - File default value that is returned when reference
is not found and it is not mandatorymandatory - boolean that indicates if this attribute must be
present in the description. If it is mandatory and not found it
triggers a ResolutionException
SmartFrogResolutionException - if invalid reference of reference
not resolvable
java.rmi.RemoteException - if there is any network/rmi error
java.net.InetAddress sfResolve(java.lang.String referencePart,
java.net.InetAddress defaultValue,
boolean mandatory)
throws SmartFrogResolutionException,
java.rmi.RemoteException
referencePart - string field referencedefaultValue - java.net.InetAddress default value that is returned
when reference is not found and it is not mandatorymandatory - boolean that indicates if this attribute must be
present in the description. If it is mandatory and not found it
triggers a SmartFrogResolutionException
SmartFrogResolutionException - if invalid reference of reference
not resolvable
java.rmi.RemoteException - if there is any network/rmi error
java.net.URL sfResolve(java.lang.String referencePart,
java.net.URL defaultValue,
boolean mandatory)
throws SmartFrogResolutionException,
java.rmi.RemoteException
referencePart - string field referencedefaultValue - java.net.URL default value that is returned
when reference is not found and it is not mandatorymandatory - boolean that indicates if this attribute must be
present in the description. If it is mandatory and not found it
triggers a SmartFrogResolutionException
SmartFrogResolutionException - if invalid reference of reference
not resolvable
java.rmi.RemoteException - if there is any network/rmi error
ComponentDescription sfResolve(java.lang.String referencePart,
ComponentDescription defaultValue,
boolean mandatory)
throws SmartFrogResolutionException,
java.rmi.RemoteException
referencePart - string field referencedefaultValue - SmartFrog ComponentDescription default value that is
returned when reference is not found and it is not mandatorymandatory - boolean that indicates if this attribute must be
present in the description. If it is mandatory and not found it
triggers a SmartFrogResolutionException
SmartFrogResolutionException - if invalid reference of reference
not resolvable
java.rmi.RemoteException - if there is any network/rmi error
Reference sfResolve(java.lang.String referencePart,
Reference defaultValue,
boolean mandatory)
throws SmartFrogResolutionException,
java.rmi.RemoteException
referencePart - string field referencedefaultValue - SmartFrog Reference default value that is returned
when reference is not found and it is not mandatorymandatory - boolean that indicates if this attribute must be
present in the description. If it is mandatory and not found it
triggers a SmartFrogResolutionException
SmartFrogResolutionException - if invalid reference of reference
not resolvable
java.rmi.RemoteException - if there is any network/rmi error
Prim sfResolve(java.lang.String referencePart,
Prim defaultValue,
boolean mandatory)
throws SmartFrogResolutionException,
java.rmi.RemoteException
referencePart - string field referencedefaultValue - SmartFrog Prim default value that is returned
when reference is not found and it is not mandatorymandatory - boolean that indicates if this attribute must be
present in the description. If it is mandatory and not found it
triggers a SmartFrogResolutionException
SmartFrogResolutionException - if invalid reference of reference
not resolvable
java.rmi.RemoteException - if there is any network/rmi error
Compound sfResolve(java.lang.String referencePart,
Compound defaultValue,
boolean mandatory)
throws SmartFrogResolutionException,
java.rmi.RemoteException
referencePart - string field referencedefaultValue - SmartFrog Compound default value that is returned
when reference is not found and it is not mandatorymandatory - boolean that indicates if this attribute must be
present in the description. If it is mandatory and not found it
triggers a SmartFrogResolutionException
SmartFrogResolutionException - if invalid reference of reference
not resolvable
java.rmi.RemoteException - if there is any network/rmi error
java.lang.Object sfResolve(java.lang.String referencePart,
java.lang.Object defaultValue,
boolean mandatory)
throws SmartFrogResolutionException,
java.rmi.RemoteException
referencePart - string field reference with single partdefaultValue - any java Object default value that is returned when
reference is not found and it is not mandatorymandatory - boolean that indicates if this attribute must be
present in the description. If it is mandatory and not found it
triggers a ResolutionException
SmartFrogResolutionException - if invalid reference of reference
not resolvable
java.rmi.RemoteException - if there is any network/rmi error
|
SmartFrog CORE 3.10.000 | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||