This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package doltech.api.wayhome.shared.models; | |
import fr.lteconsulting.hexa.databinding.properties.Properties; | |
import com.google.gwt.core.client.GWT; | |
import fr.lteconsulting.hexa.classinfo.gwt.ClazzBundle; | |
import fr.lteconsulting.hexa.classinfo.gwt.ReflectedClasses; | |
/** | |
* Observable class generated from {@link doltech.api.wayhome.shared.models.Setting} | |
* Generated by HexaBinding |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
isDependent():455, DefaultSingletonBeanRegistry (org.springframework.beans.factory.support) 7] | |
LOOP BACK TO STACK 3 - Same as 3 | |
isDependent():455, DefaultSingletonBeanRegistry (org.springframework.beans.factory.support) [6] | |
beanName: entityService | |
dependentBeanName: transactionManager | |
cononicalName: entityService | |
dependentBeans: size = 5 | |
transitiveDependency: eventService |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Module which binds the handlers and configurations. | |
*/ | |
@Configuration | |
@Import({ | |
PropertiesModule.class, | |
HttpModule.class, | |
WebSocketModule.class, | |
OptionalModule.class, | |
ComponentModule.class, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@Service("emailService") | |
public class EmailServiceImpl extends MailServiceImpl implements EmailService, InitializingBean { | |
private static final long serialVersionUID = -7973057973637014852L; | |
private static final Logger logger = Logger.getLogger(EmailServiceImpl.class.getName()); | |
@Autowired | |
private EntityMapperContext mapperContext; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package nz.co.doltech.actions.client.rest; | |
import javax.inject.Inject; | |
import com.gwtplatform.dispatch.rest.client.DefaultDateFormat; | |
import com.gwtplatform.dispatch.rest.client.parameters.HttpParameterFactory; | |
import com.gwtplatform.dispatch.rest.shared.RestAction; | |
import nz.co.doltech.actions.client.rest.ManagementsProtocol; | |
import nz.co.doltech.actions.client.rest.ManagementsProtocolImpl_0_getRequestCounts; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package nz.co.doltech.actions.client.rest; | |
import javax.ws.rs.core.HttpHeaders; | |
import com.gwtplatform.dispatch.rest.client.AbstractRestAction; | |
import com.gwtplatform.dispatch.rest.client.parameters.HttpParameterFactory; | |
import com.gwtplatform.dispatch.rest.shared.HttpMethod; | |
import com.gwtplatform.dispatch.rest.shared.HttpParameter.Type; | |
public class ManagementsProtocolImpl_0_getRequestCounts extends AbstractRestAction<nz.co.doltech.actions.shared.core.RequestCounts> { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class RestModule extends AbstractGinModule { | |
@Override | |
public void configure() { | |
install(new RestDispatchAsyncModule.Builder() | |
.addGlobalHeaderParam(RestCache.CACHE_CONTROL) | |
.toHttpMethods(HttpMethod.GET) | |
.withValue("no-cache") | |
.dispatchHooks(RestDispatchHook.class) | |
.build()); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Management API Branch | |
*/ | |
/** Managements API Structure, root: {@value Managements#ROOT} */ | |
public static interface Managements extends PathBranch { | |
public static final String ROOT = "/" + Params.MANAGEMENTS; | |
public static final String PATH_ID = "/{" + Params.ID + "}"; | |
public static final String PATH_REQUEST_COUNT = "/request_counts"; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* The protocol for rest controller: {@link nz.co.doltech.actions.server.controllers.ManagementsController} | |
*/ | |
@Path(Managements.ROOT) | |
public interface ManagementsProtocol extends Protocol { | |
@POST | |
@Path(PATH_REQUEST_COUNT) | |
RestAction<RequestCounts> getRequestCounts(Filter filter); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@POST | |
RestAction<Action> add(Action action, Notification notification, Email email); |