-
Notifications
You must be signed in to change notification settings - Fork 3.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
64 additions
and
103 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,45 +15,48 @@ | |
*/ | ||
package com.navercorp.pinpoint.web.applicationmap.link; | ||
|
||
import com.fasterxml.jackson.annotation.JsonProperty; | ||
|
||
/** | ||
* @author minwoo.jung<[email protected]> | ||
* | ||
*/ | ||
public class LinkInfo { | ||
private String linkName; | ||
private String linkUrl; | ||
public LinkType linkType; | ||
private final String linkName; | ||
private final String linkUrl; | ||
private final LinkType linkType; | ||
|
||
LinkInfo(String linkName, String linkUrl, LinkType linkType) { | ||
public LinkInfo(String linkName, String linkUrl, LinkType linkType) { | ||
this.linkName = linkName; | ||
this.linkUrl = linkUrl; | ||
this.linkType = linkType; | ||
} | ||
|
||
@JsonProperty("linkName") | ||
public String getLinkName() { | ||
return linkName; | ||
} | ||
|
||
public void setLinkName(String linkName) { | ||
this.linkName = linkName; | ||
} | ||
|
||
@JsonProperty("linkURL") | ||
public String getLinkUrl() { | ||
return linkUrl; | ||
} | ||
|
||
public void setLinkUrl(String linkUrl) { | ||
this.linkUrl = linkUrl; | ||
} | ||
|
||
public String getLinktype() { | ||
|
||
|
||
@JsonProperty("linkType") | ||
public String getLinkType() { | ||
return linkType.getName(); | ||
} | ||
|
||
public void setLinkType(LinkType linkType) { | ||
this.linkType = linkType; | ||
|
||
@Override | ||
public String toString() { | ||
return "LinkInfo{" + | ||
"linkName='" + linkName + '\'' + | ||
", linkUrl='" + linkUrl + '\'' + | ||
", linkType=" + linkType + | ||
'}'; | ||
} | ||
|
||
public enum LinkType { | ||
ATAG("aTag"), | ||
BUTTON("button"); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
42 changes: 0 additions & 42 deletions
42
web/src/main/java/com/navercorp/pinpoint/web/view/AgentLifeCycleStateSerializer.java
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters