Advertisement
Guest User

Untitled

a guest
Oct 4th, 2015
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. endpoint
  2. endpoint.name
  3. endpoint.host
  4. endpoint.user
  5. endpoint.password
  6. endpoint.port
  7. endpoint.logs
  8. endpoint.getEndpointLog(endpointLog)
  9. endpoint.getEndpointLogs()
  10.  
  11. class Endpoint {
  12.  
  13. constructor(host) {
  14. this.host = host;
  15. }
  16.  
  17. function getEndpointLog(endpointLog) {
  18. // 1.
  19. }
  20.  
  21. function getEndpointLogs() {
  22. // 1. Get a list of sites
  23. }
  24.  
  25. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement