Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change packages #2

Merged
merged 2 commits into from
Mar 17, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

<parent>
<groupId>org.wso2.carbon.identity</groupId>
<artifactId>identity-application-auth-windows-live</artifactId>
<artifactId>identity-outbound-auth-windows-live</artifactId>
<relativePath>../../pom.xml</relativePath>
<version>5.0.9-SNAPSHOT</version>
</parent>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
* specific language governing permissions and limitations
* under the License.
*/
package org.wso2.carbon.identity.application.authenticator.yahoo;
package org.wso2.carbon.identity.application.authenticator.live;

import org.apache.commons.lang.StringUtils;
import org.apache.oltu.oauth2.client.response.OAuthClientResponse;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,14 @@
* under the License.
*/

package org.wso2.carbon.identity.application.authenticator.yahoo;
package org.wso2.carbon.identity.application.authenticator.live;

public class WindowsLiveOAuth2AuthenticatorConstants {

public static final String AUTHENTICATOR_NAME = "MicrosoftWindowsLiveAuthenticator";
public static final String AUTHENTICATOR_FRIENDLY_NAME = "Microsoft (Hotmail, MSN, Live)";

public static final String CALLBACK_URL = "windows-yahoo-callback-url";
public static final String CALLBACK_URL = "windows-live-callback-url";
public static final String WINDOWS_LIVE_AUTHZ_URL = "AuthnEndpoint";
public static final String WINDOWS_LIVE_TOKEN_URL = "AuthTokenEndpoint";
public static final String WINDOWS_LIVE_USER_INFO_URL = "UserInfoEndpoint";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,16 +16,16 @@
* under the License.
*/

package org.wso2.carbon.identity.application.authenticator.yahoo.internal;
package org.wso2.carbon.identity.application.authenticator.live.internal;

import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.osgi.service.component.ComponentContext;
import org.wso2.carbon.identity.application.authentication.framework.ApplicationAuthenticator;
import org.wso2.carbon.identity.application.authenticator.yahoo.WindowsLiveOAuth2Authenticator;
import org.wso2.carbon.identity.application.authenticator.live.WindowsLiveOAuth2Authenticator;

/**
* @scr.component name="identity.application.authenticator.yahoo.component"
* @scr.component name="identity.application.authenticator.live.component"
* immediate="true"
*/
public class SocialAuthenticatorServiceComponent {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

<parent>
<groupId>org.wso2.carbon.identity</groupId>
<artifactId>identity-application-auth-windows-live</artifactId>
<artifactId>identity-outbound-auth-windows-live</artifactId>
<relativePath>../../pom.xml</relativePath>
<version>5.0.9-SNAPSHOT</version>
</parent>
Expand Down
8 changes: 4 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
</parent>

<modelVersion>4.0.0</modelVersion>
<artifactId>identity-application-auth-windows-live</artifactId>
<artifactId>identity-outbound-auth-windows-live</artifactId>
<packaging>pom</packaging>
<name>WSO2 Carbon - Windows live Authenticator Feature Aggregator Module</name>
<description>
Expand All @@ -34,9 +34,9 @@
<url>http://wso2.org</url>

<scm>
<url>https://github.com/wso2-extensions/identity-notification-json.git</url>
<developerConnection>scm:git:https://github.com/wso2-extensions/identity-notification-json.git</developerConnection>
<connection>scm:git:https://github.com/wso2-extensions/identity-notification-json.git</connection>
<url>https://github.com/wso2-extensions/identity-outbound-auth-windows-live.git</url>
<developerConnection>scm:git:https://github.com/wso2-extensions/identity-outbound-auth-windows-live.git</developerConnection>
<connection>scm:git:https://github.com/wso2-extensions/identity-outbound-auth-windows-live.git</connection>
<tag>HEAD</tag>
</scm>

Expand Down