Commit 9289c229 by Tuukka Kivilahti

typo

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