Skip to content
Toggle navigation
Projects
Groups
Snippets
Help
Riina Antikainen
/
Moya
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Wiki
Settings
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit 9289c229
authored
Mar 29, 2015
by
Tuukka Kivilahti
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
typo
1 parent
d04ec840
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
6 deletions
code/moya-restpojo/src/main/java/fi/codecrew/moya/rest/pojo/appconfig/v1/ApplicationInstancePojo.java
code/moya-web/src/main/java/fi/codecrew/moya/rest/PojoUtils.java
code/moya-restpojo/src/main/java/fi/codecrew/moya/rest/pojo/appconfig/v1/ApplicationInstancePojo.java
View file @
9289c22
...
...
@@ -8,7 +8,7 @@ import javax.xml.bind.annotation.XmlElement;
public
class
ApplicationInstancePojo
{
private
String
authname
;
private
String
secre
d_k
ey
;
private
String
secre
tK
ey
;
private
String
name
;
...
...
@@ -22,15 +22,23 @@ public class ApplicationInstancePojo {
this
.
authname
=
authname
;
}
@XmlElement
()
public
String
getSecre
d_k
ey
()
{
return
secre
d_k
ey
;
public
String
getSecre
tK
ey
()
{
return
secre
tK
ey
;
}
public
void
setSecre
d_key
(
String
secred_k
ey
)
{
this
.
secre
d_key
=
secred_k
ey
;
public
void
setSecre
tKey
(
String
secretK
ey
)
{
this
.
secre
tKey
=
secretK
ey
;
}
@XmlElement
()
public
String
getName
()
{
return
name
;
...
...
code/moya-web/src/main/java/fi/codecrew/moya/rest/PojoUtils.java
View file @
9289c22
...
...
@@ -338,7 +338,7 @@ public class PojoUtils {
pojo
.
setName
(
instance
.
getName
());
pojo
.
setAuthname
(
instance
.
getAuthname
());
pojo
.
setSecre
d_k
ey
(
instance
.
getSecretKey
());
pojo
.
setSecre
tK
ey
(
instance
.
getSecretKey
());
return
pojo
;
}
...
...
Write
Preview
Markdown
is supported
Attach a file
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to post a comment