Package com.webobjects.monitor.rest

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

package com.webobjects.monitor.rest;

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