org.omnidial.harvest.ENUMResult Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of omnidial-core Show documentation
Show all versions of omnidial-core Show documentation
Classes for finding routes to dial somebody
The newest version!
/*
* Copyright 2016 Daniel Pocock
*
*/
package org.omnidial.harvest;
public class ENUMResult {
private String protocol;
private String result;
public ENUMResult(String protocol, String result) {
this.protocol = protocol;
this.result = result;
}
public String getProtocol() {
return protocol;
}
public String getResult() {
return result;
}
}