Changeset 7634 for trunk/projects
- Timestamp:
- 02/22/11 15:54:10 (9 years ago)
- Location:
- trunk/projects/wiscscan-java
- Files:
-
- 4 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/projects/wiscscan-java/pom.xml
r7631 r7634 12 12 </parent> 13 13 14 <artifactId>wiscscan- utils</artifactId>14 <artifactId>wiscscan-java</artifactId> 15 15 16 16 <name>WiscScan Java code</name> … … 60 60 <archive> 61 61 <manifest> 62 <packageName>loci.wiscscan .utils</packageName>62 <packageName>loci.wiscscan</packageName> 63 63 </manifest> 64 64 </archive> -
trunk/projects/wiscscan-java/src/main/java/loci/wiscscan/auth/AutoLoginHandler.java
r7619 r7634 4 4 5 5 /* 6 Utilitycode for use with WiscScan.6 Java code for use with WiscScan. 7 7 8 Copyright (c) 20 11, UW-Madison LOCI8 Copyright (c) 2008, UW-Madison LOCI 9 9 All rights reserved. 10 10 … … 33 33 */ 34 34 35 package loci.wiscscan. utils;35 package loci.wiscscan.auth; 36 36 37 37 import java.io.IOException; … … 48 48 private final String m_password; 49 49 private final String m_username; 50 50 51 51 /** 52 52 * This is the constructor which takes in the username and password to send … … 58 58 m_password = credentials.m_password; 59 59 } 60 60 61 61 @Override 62 62 public void handle(Callback[] callbacks) throws IOException, -
trunk/projects/wiscscan-java/src/main/java/loci/wiscscan/auth/Credentials.java
r7619 r7634 4 4 5 5 /* 6 Utilitycode for use with WiscScan.6 Java code for use with WiscScan. 7 7 8 Copyright (c) 20 11, UW-Madison LOCI8 Copyright (c) 2008, UW-Madison LOCI 9 9 All rights reserved. 10 10 … … 33 33 */ 34 34 35 package loci.wiscscan. utils;35 package loci.wiscscan.auth; 36 36 37 37 public class Credentials { … … 40 40 public String m_password; 41 41 public String m_username; 42 42 43 43 public String getM_password() { 44 44 return m_password; … … 53 53 this.m_username = m_username; 54 54 } 55 56 55 57 56 } -
trunk/projects/wiscscan-java/src/main/java/loci/wiscscan/auth/KerberosAuth.java
r7620 r7634 4 4 5 5 /* 6 Utilitycode for use with WiscScan.6 Java code for use with WiscScan. 7 7 8 Copyright (c) 20 11, UW-Madison LOCI8 Copyright (c) 2008, UW-Madison LOCI 9 9 All rights reserved. 10 10 … … 33 33 */ 34 34 35 package loci.wiscscan. utils;35 package loci.wiscscan.auth; 36 36 37 37 import javax.security.auth.login.LoginContext;
Note: See TracChangeset
for help on using the changeset viewer.