Package com.ngt.jopenmetaverse.shared.protocol

Examples of com.ngt.jopenmetaverse.shared.protocol.ClassifiedInfoUpdatePacket


  /// <param name="desc">Long description of the classified</param>
  /// <param name="autoRenew">if true, auto renew classified after expiration</param>
  public void UpdateClassifiedInfo(UUID classifiedID, DirectoryManager.ClassifiedCategories category,
      UUID snapshotID, int price, Vector3d position, String name, String desc, boolean autoRenew)
  {
    ClassifiedInfoUpdatePacket classified = new ClassifiedInfoUpdatePacket();
    classified.AgentData.AgentID = Client.self.getAgentID();
    classified.AgentData.SessionID = Client.self.getSessionID();

    classified.Data.ClassifiedID = classifiedID;
    classified.Data.Category = (long)category.getIndex();
View Full Code Here

TOP

Related Classes of com.ngt.jopenmetaverse.shared.protocol.ClassifiedInfoUpdatePacket

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.