Skip to content

Commit

Permalink
inital adds and configs
Browse files Browse the repository at this point in the history
  • Loading branch information
langedb committed Feb 7, 2014
1 parent 8c1d6cd commit e2e77dc
Show file tree
Hide file tree
Showing 3 changed files with 70 additions and 14 deletions.
16 changes: 15 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,16 @@
<packaging>jar</packaging>

<name>mcb-duo</name>
<url>http://maven.apache.org</url>
<description>Duo module for the Multi-Context Broker</description>
<url>http://www.uchicago.edu</url>
<developers>
<developer>
<name>David Langenberg</name>
<email>[email protected]</email>
<organization>The University of Chicago</organization>
<timezone>-7</timezone>
</developer>
</developers>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand All @@ -21,5 +30,10 @@
<version>3.8.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>edu.internet2.middleware.assurance.mcb</groupId>
<artifactId>multi-context-broker</artifactId>
<version>1.0.0</version>
</dependency>
</dependencies>
</project>

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
/*
* Copyright 2014 The University of Chicago.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/


package edu.uchicago.identity.mcb.authn.provider.duo;

import edu.internet2.middleware.assurance.mcb.authn.provider.MCBLoginServlet;
import edu.internet2.middleware.assurance.mcb.authn.provider.MCBSubmodule;
import edu.internet2.middleware.shibboleth.idp.authn.AuthenticationException;
import javax.security.auth.login.LoginException;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

/**
*
* @author David Langenberg
*/
public class DuoLoginSubmodule implements MCBSubmodule{



public boolean displayLogin(MCBLoginServlet servlet, HttpServletRequest request, HttpServletResponse response) throws AuthenticationException, LoginException {
throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
}

public boolean processLogin(MCBLoginServlet servlet, HttpServletRequest request, HttpServletResponse response) throws AuthenticationException, LoginException {
throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
}

public void init() {
throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
}

public String getBeanName() {
throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
}

public void setBeanName(String string) {
throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
}

}

0 comments on commit e2e77dc

Please sign in to comment.