Skip to content

Commit

Permalink
HAP-319 - Changed proxy config to be serializable
Browse files Browse the repository at this point in the history
  • Loading branch information
Shay Yaakov committed Jun 27, 2012
1 parent ab58e73 commit f9ab847
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,14 @@

package org.jfrog.build.client;

import java.io.Serializable;

/**
* Holds proxy configuration data.
*
* @author Yossi Shaul
*/
public class ProxyConfiguration {
public class ProxyConfiguration implements Serializable {
public String host;
public int port;
public String username;
Expand Down

0 comments on commit f9ab847

Please sign in to comment.