I have 2 separate java services that use a complex type that is a exactly the same but takes an email object as a parameter like:
class Email{
Description{get;}
Address{get;}
}
The services look something like this:
emailBasketBallTeam(email); emailTennisTeam(email);
Is there a way that I can specify a contract for the email object or somehow reuse the email object in different services despite them being in completely different namespaces?