Commit 9289c229 by Tuukka Kivilahti

typo

1 parent d04ec840
......@@ -8,7 +8,7 @@ import javax.xml.bind.annotation.XmlElement;
public class ApplicationInstancePojo {
private String authname;
private String secred_key;
private String secretKey;
private String name;
......@@ -22,15 +22,23 @@ public class ApplicationInstancePojo {
this.authname = authname;
}
@XmlElement()
public String getSecred_key() {
return secred_key;
public String getSecretKey() {
return secretKey;
}
public void setSecred_key(String secred_key) {
this.secred_key = secred_key;
public void setSecretKey(String secretKey) {
this.secretKey = secretKey;
}
@XmlElement()
public String getName() {
return name;
......
......@@ -338,7 +338,7 @@ public class PojoUtils {
pojo.setName(instance.getName());
pojo.setAuthname(instance.getAuthname());
pojo.setSecred_key(instance.getSecretKey());
pojo.setSecretKey(instance.getSecretKey());
return pojo;
}
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!