Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 5.3

...

Note
titleHint for Weld v1.1.4+

In case of Weld v1.1.4+ you can use @Specializes again and you don't need alternative-implementation module

Example

Code Block
java
java
titleCustom config which overrides the default valuejava
@Specializes
@ApplicationScoped
public class CustomConversationConfig extends ConversationConfig
{
    @Override
    public int getConversationTimeoutInMinutes()
    {
        return 45;
    }
}

...