data-miner-manager-tester/src/main/java/org/gcube/portlets/user/dataminermanagertester/shared/config/DMDiffConfig.java

96 lines
1.9 KiB
Java
Executable File

package org.gcube.portlets.user.dataminermanagertester.shared.config;
import java.io.Serializable;
/**
*
* @author Giancarlo Panichi
*
*
*/
public class DMDiffConfig implements Serializable {
private static final long serialVersionUID = -8892345776441085380L;
private String dm1;
private String token1;
private String dm2;
private String token2;
private String protocol;
public DMDiffConfig() {
super();
***REMOVED***
public DMDiffConfig(String dm1, String token1, String dm2, String token2, String protocol) {
super();
this.dm1 = dm1;
this.token1 = token1;
this.dm2 = dm2;
this.token2 = token2;
this.protocol = protocol;
***REMOVED***
public String getDm1() {
return dm1;
***REMOVED***
public void setDm1(String dm1) {
this.dm1 = dm1;
***REMOVED***
public String getDmUrl1() {
String url=null;
if (protocol != null && dm1 != null) {
url = new String(protocol + "://" + dm1 + "/wps/");
***REMOVED***
return url;
***REMOVED***
public String getToken1() {
return token1;
***REMOVED***
public void setToken1(String token1) {
this.token1 = token1;
***REMOVED***
public String getDm2() {
return dm2;
***REMOVED***
public void setDm2(String dm2) {
this.dm2 = dm2;
***REMOVED***
public String getDmUrl2() {
String url=null;
if (protocol != null && dm2 != null) {
url = new String(protocol + "://" + dm2 + "/wps/");
***REMOVED***
return url;
***REMOVED***
public String getToken2() {
return token2;
***REMOVED***
public void setToken2(String token2) {
this.token2 = token2;
***REMOVED***
public String getProtocol() {
return protocol;
***REMOVED***
public void setProtocol(String protocol) {
this.protocol = protocol;
***REMOVED***
@Override
public String toString() {
return "DMDiffConfig [dm1=" + dm1 + ", token1=" + token1 + ", dm2=" + dm2 + ", token2=" + token2 + ", protocol="
+ protocol + "]";
***REMOVED***
***REMOVED***