Package org.fcrepo.server.types.gen

Examples of org.fcrepo.server.types.gen.ObjectMethodsDef


    public static void verifyObjectMethods(ObjectMethodsDef[] methodDefsArray, String msg) throws Exception {
   
        String sDefPID = null;
        String methodName = null;
        MethodParmDef[] parms = null;
        ObjectMethodsDef methodDef = null;
           
        for (int i=0; i<methodDefsArray.length; i++) {
            methodDef = methodDefsArray[i];
            sDefPID = methodDef.getServiceDefinitionPID();
            methodName = methodDef.getMethodName();
            parms = methodDef.getMethodParmDefs();
            System.out.println(msg + " methodDef["+i+"] "
                 + "sDefPID: "+sDefPID);
            System.out.println(msg + " methodDef["+i+"] "
                 + "methodName: '"+methodName+"'");
            for (int j=0; j<parms.length; j++) {
View Full Code Here

TOP

Related Classes of org.fcrepo.server.types.gen.ObjectMethodsDef

Copyright © 2018 www.massapicom. 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.