
|
If you were logged in you would be able to see more operations.
|
|
|
|
AssociationManagement requires some refactoring, to remove some obsolete methods and to introduce generics to existing methods allowing easier use.
|
|
Description
|
AssociationManagement requires some refactoring, to remove some obsolete methods and to introduce generics to existing methods allowing easier use. |
Show » |
|
(from) Association[] getAssociations();
(to) List<Association<?>> getAssociations();
(from) Association[] getAssociations(String serviceName, String opStringName);
(to) <T> Association<T> getAssociation(Class<T> serviceType, String serviceName, String opStringName);
Removed:
Association[] getAssociations(String opStringName)
Object[] getAssociatedServices(Class serviceType)
Added:
<T> Association<T> addAssociationDescriptor(AssociationDescriptor descriptor);
List<Association<?>> addAssociationDescriptors(AssociationDescriptor... descriptors)