This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.zaneli.script; | |
public interface ScriptService { | |
void echo(String message); | |
String getName(); | |
int calculate(int num); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.zaneli.ws.axis2.auth; | |
import static com.zaneli.ws.axis2.Constants.PASSWORD; | |
import static com.zaneli.ws.axis2.Constants.USERNAME; | |
import static org.apache.axis2.transport.http.HTTPConstants.AUTHENTICATE; | |
import static org.apache.axis2.transport.http.HttpTransportProperties.Authenticator.BASIC; | |
import java.rmi.RemoteException; | |
import java.util.ArrayList; | |
import java.util.List; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.zaneli.rtm.model.util; | |
import java.util.HashMap; | |
import java.util.Map; | |
import com.zaneli.rtm.RtmException; | |
public class AuthUtil { | |
private static final String URL = "http://www.rememberthemilk.com/services/auth/"; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.zaneli.ws.axis; | |
import static com.zaneli.ws.axis.Constants.DOMAIN; | |
import static com.zaneli.ws.axis.Constants.PASSWORD; | |
import static com.zaneli.ws.axis.Constants.USERNAME; | |
import java.rmi.RemoteException; | |
import java.util.Hashtable; | |
import javax.xml.rpc.ServiceException; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.zaneli.dropbox; | |
import org.apache.http.HttpResponse; | |
import org.apache.http.client.methods.HttpGet; | |
import com.dropbox.client2.DropboxAPI; | |
import com.dropbox.client2.RESTUtility; | |
import com.dropbox.client2.exception.DropboxException; | |
import com.dropbox.client2.session.AbstractSession; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.zaneli.xml.bind; | |
import java.io.File; | |
import java.io.IOException; | |
import java.io.InputStream; | |
import java.io.Reader; | |
import org.apache.commons.digester3.Digester; | |
import org.xml.sax.InputSource; | |
import org.xml.sax.SAXException; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.zaneli.oauth; | |
import java.io.IOException; | |
import java.security.GeneralSecurityException; | |
import java.util.HashMap; | |
import java.util.Map; | |
import java.util.Map.Entry; | |
import org.apache.http.HttpResponse; | |
import org.apache.http.client.HttpClient; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.zaneli.mongodb; | |
import java.net.UnknownHostException; | |
import java.util.ArrayList; | |
import java.util.HashMap; | |
import java.util.List; | |
import java.util.Map; | |
import org.apache.commons.codec.binary.Base64; | |
import org.bson.BSON; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.io.FilterWriter; | |
import java.io.IOException; | |
import java.lang.reflect.Field; | |
import java.net.DatagramPacket; | |
import java.net.DatagramSocket; | |
import java.net.InetAddress; | |
import org.apache.log4j.Layout; | |
import org.apache.log4j.Level; | |
import org.apache.log4j.Logger; |
NewerOlder