001// Generated by delombok at Thu Aug 13 13:56:44 UTC 2026 002/* 003 * Copyright (c) 2010-2026 Mark Allen, Norbert Bartels. 004 * 005 * Permission is hereby granted, free of charge, to any person obtaining a copy 006 * of this software and associated documentation files (the "Software"), to deal 007 * in the Software without restriction, including without limitation the rights 008 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 009 * copies of the Software, and to permit persons to whom the Software is 010 * furnished to do so, subject to the following conditions: 011 * 012 * The above copyright notice and this permission notice shall be included in 013 * all copies or substantial portions of the Software. 014 * 015 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 016 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 017 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 018 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 019 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 020 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 021 * THE SOFTWARE. 022 */ 023package com.restfb.types; 024 025import com.restfb.Facebook; 026import com.restfb.JsonMapper; 027 028/** 029 * Type that can be used as return value for publishing new objects to Facebook. 030 * <p> 031 * Id, post_id and success field are accessible. Have a look at the fields and methods javadoc 032 */ 033public class GraphResponse extends AbstractFacebookType { 034 private static final long serialVersionUID = 1L; 035 /** 036 * <code>true</code> if publishing of the object was successful, <code>false</code> otherwise. 037 * 038 * if the success field is not provided by Facebook, we check if the id field is present 039 */ 040 @Facebook 041 private boolean success; 042 @Facebook 043 private String id; 044 @Facebook("post_id") 045 private String postId; 046 047 /** 048 * returns the id that is used for the post or comment. 049 * <p> 050 * Normally the <code>id</code> of the new object is returned, but after publishing a photo the <code>post id</code> 051 * is returned. So you get the id of the corresponding post without put the logic in your application. 052 * <p> 053 * Attention: if you publish a photo without story you get the photo id here 054 * 055 * @return id of the new created post / comment 056 */ 057 public String getTimelineId() { 058 return postId != null ? postId : id; 059 } 060 061 @JsonMapper.JsonMappingCompleted 062 protected void check() { 063 if (id != null) { 064 success = true; 065 } 066 } 067 068 /** 069 * <code>true</code> if publishing of the object was successful, <code>false</code> otherwise. 070 * 071 * if the success field is not provided by Facebook, we check if the id field is present 072 */ 073 @java.lang.SuppressWarnings("all") 074 @lombok.Generated 075 public boolean isSuccess() { 076 return this.success; 077 } 078 079 /** 080 * <code>true</code> if publishing of the object was successful, <code>false</code> otherwise. 081 * 082 * if the success field is not provided by Facebook, we check if the id field is present 083 */ 084 @java.lang.SuppressWarnings("all") 085 @lombok.Generated 086 public void setSuccess(final boolean success) { 087 this.success = success; 088 } 089 090 @java.lang.SuppressWarnings("all") 091 @lombok.Generated 092 public String getId() { 093 return this.id; 094 } 095 096 @java.lang.SuppressWarnings("all") 097 @lombok.Generated 098 public void setId(final String id) { 099 this.id = id; 100 } 101 102 @java.lang.SuppressWarnings("all") 103 @lombok.Generated 104 public String getPostId() { 105 return this.postId; 106 } 107 108 @java.lang.SuppressWarnings("all") 109 @lombok.Generated 110 public void setPostId(final String postId) { 111 this.postId = postId; 112 } 113}