[JBoss JIRA] Created: (SEAMSOCIAL-12) Allow the support of multi-account on a given social networtk
by Antoine Sabot-Durand (JIRA)
Allow the support of multi-account on a given social networtk
-------------------------------------------------------------
Key: SEAMSOCIAL-12
URL: https://issues.jboss.org/browse/SEAMSOCIAL-12
Project: Seam Social
Issue Type: Enhancement
Components: OAuth Core
Reporter: Antoine Sabot-Durand
Assignee: Antoine Sabot-Durand
Priority: Minor
It would be nice to support multi-account for a given social service (my personal Twitter account and my company's one).
Since it can have an important impact on API design, the hook for this evolution should be created now to be sure we can go in this direction in the futur.
The best would be to keep the standard behavior (single account for a service) as simple as today.
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira
14 years, 10 months
[JBoss JIRA] Created: (SEAMWICKET-37) Wrong exception message in NonContextual.postConstruct()
by Ondrej Zizka (JIRA)
Wrong exception message in NonContextual.postConstruct()
--------------------------------------------------------
Key: SEAMWICKET-37
URL: https://issues.jboss.org/browse/SEAMWICKET-37
Project: Seam for Apache Wicket
Issue Type: Bug
Reporter: Ondrej Zizka
Priority: Minor
{code}
/**
* Call the @PostConstruct callback
*
* @return
*/
public Instance<T> postConstruct()
{
if (this.instance == null)
{
throw new IllegalStateException("Trying to call postConstruct() before produce() was called");
}
if (disposed)
{
throw new IllegalStateException("Trying to call preDestroy() on already disposed instance");
}
injectionTarget.postConstruct(instance);
return this;
}
{code}
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira
14 years, 10 months