Package com.webobjects.monitor.wotaskd.rest.delegates

Source Code of com.webobjects.monitor.wotaskd.rest.delegates.MSiteConfigRestDelegate

package com.webobjects.monitor.wotaskd.rest.delegates;

import com.webobjects.eocontrol.EOClassDescription;
import com.webobjects.monitor._private.MSiteConfig;

import er.rest.ERXRestContext;

public class MSiteConfigRestDelegate extends JavaMonitorRestDelegate {
 
  public Object createObjectOfEntityWithID(EOClassDescription entity, Object id, ERXRestContext context) {
    return new MSiteConfig(null);
  }

  public Object objectOfEntityWithID(EOClassDescription entity, Object id, ERXRestContext context) {
    return siteConfig();
  }

  public Object primaryKeyForObject(Object obj, ERXRestContext context) {
    return siteConfig();
  }
}
TOP

Related Classes of com.webobjects.monitor.wotaskd.rest.delegates.MSiteConfigRestDelegate

TOP
Copyright © 2018 www.massapi.com. 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.