1 /** 2 * Copyright 2007 Art Technology Group, Inc (ATG) 3 * 4 * Licensed under the Apache License, Version 2.0 (the "License"); 5 * you may not use this file except in compliance with the License. 6 * 7 * You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 8 * 9 * Unless required by applicable law or agreed to in writing, software 10 * distributed under the License is distributed on an "AS IS" BASIS, 11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 * See the License for the specific language governing permissions and limitations under the License. 13 */ 14 15 16 package atg.taglib.json; 17 18 19 /** 20 * Simple container for test response data 21 * 22 * @author James Wiltshire 23 * @version $Id$ 24 */ 25 26 public class ResponseData 27 { 28 public int statusCode; 29 public String body; 30 public Object json; 31 public int expectedStatusCode; 32 public String expectedMsgKey; 33 public Object expectedJson; 34 } 35