serviceBean.setServiceDescription("This is for service xml test");
MethodBean methodBean = new MethodBean();
methodBean.setMethodName("GfacSchemaMethodTest");
methodBean.setMethodDescription("This is for method xml test");
methodBean.addInputParms(new ParamObject("count", "Integer", 0, "number"));
methodBean.addInputParms(new ParamObject("name", "String", 1, "name"));
methodBean.addOutputParms(new ParamObject("weight", "Float", 0, "desired weight"));
serviceBean.setMethodBean(methodBean);
serviceBean.setNotAfterInactiveMinutes(15);
}