From.java :  » Facebook » face4j » com » face4j » facebook » entity » Java Open Source

Java Open Source » Facebook » face4j 
face4j » com » face4j » facebook » entity » From.java
package com.face4j.facebook.entity;

import java.io.Serializable;

public class From implements Serializable{
  
  private static final long serialVersionUID = -3428384342557008840L;

  private long id;
  private String name;
  
  public From(long id, String name){
    this.id = id;
    this.name = name;
  }

  public long getId() {
    return id;
  }

  public String getName() {
    return name;
  }

  public void setId(long id) {
    this.id = id;
  }

  public void setName(String name) {
    this.name = name;
  }

}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.