Advertisement
Guest User

Untitled

a guest
Jun 27th, 2017
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1.  
  2. public class CompositeKeyMap {
  3. private String mac_address;
  4. private String switch_location;
  5.  
  6. public String getMacAddress() {
  7. return mac_address;
  8. }
  9. public String getSwitchLocation() {
  10. return switch_location;
  11. }
  12.  
  13. public void setMacAddress(String mac) {
  14. this.mac_address = mac;
  15. }
  16. public void setSwitchLocation(String location) {
  17. this.switch_location = location;
  18. }
  19.  
  20.  
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement