You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
399 B
Java
16 lines
399 B
Java
|
2 months ago
|
package com.tml.projectAttrManagement;
|
||
|
|
|
||
|
|
|
||
|
|
import com.dassault_systemes.platform.restServices.ModelerBase;
|
||
|
|
import jakarta.ws.rs.ApplicationPath;
|
||
|
|
|
||
|
|
@ApplicationPath("/TMLProjectAttr")
|
||
|
|
public class Tools extends ModelerBase {
|
||
|
|
@Override
|
||
|
|
public Class<?>[] getServices() {
|
||
|
|
return new Class[]{
|
||
|
|
DSGetProjectAttributeManagementController.class
|
||
|
|
};
|
||
|
|
}
|
||
|
|
}
|