InvalidParamResult.java :  » Wiki-Engine » ocwiki » org » ocwiki » controller » rest » util » Java Open Source

Java Open Source » Wiki Engine » ocwiki 
ocwiki » org » ocwiki » controller » rest » util » InvalidParamResult.java
package org.ocwiki.controller.rest.util;

import javax.xml.bind.annotation.XmlRootElement;

@XmlRootElement
public class InvalidParamResult extends ErrorResult {

  public String name;
  public Object value;

  InvalidParamResult() {
  }
  
  public InvalidParamResult(String code, String name, Object value) {
    super(code);
    this.name = name;
    this.value = value;
  }

}
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.