All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.identity4j.connector.office365.Office365Identity Maven / Gradle / Ivy

There is a newer version: 1.2.2
Show newest version
package com.identity4j.connector.office365;

import com.identity4j.connector.principal.IdentityImpl;

/**
 * Identity represented in Windows Azure Active Directory data store
 * 
 * @author gaurav
 *
 */
public class Office365Identity extends IdentityImpl{

	private static final long serialVersionUID = 3161726959507786145L;

	public Office365Identity(String guid, String principalName) {
		super(guid, principalName);
	}
	
	public Office365Identity(String principalName) {
		this(null, principalName);
	}
	

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy