Skip to content

Commit 3cc65de

Browse files
committed
Add code documentation for Server#cpe
1 parent 07d0c82 commit 3cc65de

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

java/code/src/com/redhat/rhn/domain/server/Server.java

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2461,10 +2461,20 @@ public void setOsFamily(String osFamilyIn) {
24612461
this.osFamily = osFamilyIn;
24622462
}
24632463

2464+
/**
2465+
* Getter for CPE (Common Platform Enumeration)
2466+
*
2467+
* @return cpe
2468+
* */
24642469
public String getCpe() {
24652470
return cpe;
24662471
}
24672472

2473+
/**
2474+
* Setter for CPE (Common Platform Enumeration)
2475+
*
2476+
* @param cpeIn to set
2477+
* */
24682478
public void setCpe(String cpeIn) {
24692479
this.cpe = cpeIn;
24702480
}

0 commit comments

Comments
 (0)