Package com.google.code.lightssh.project.message.entity

Examples of com.google.code.lightssh.project.message.entity.Publish


  /**
   * 我的消息
   */
  public String myList( ){
    if(publish == null )
      publish = new Publish();
   
    publish.setUser( this.getLoginAccount() );
   
    if( this.page == null )
      page = new ListPage<Publish>( );
View Full Code Here


    if( getLoginAccount() == null ){
      return SUCCESS;
    }
   
    if(publish == null )
      publish = new Publish();
   
    publish.setUser(this.getLoginAccount());
    publish.setRead( false );
   
    if( this.page == null )
View Full Code Here

TOP

Related Classes of com.google.code.lightssh.project.message.entity.Publish

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.