Skip to content

Commit

Permalink
merge conflict
Browse files Browse the repository at this point in the history
  • Loading branch information
justinlewis committed Apr 4, 2017
2 parents 616847e + 7574b6d commit 47c78d5
Show file tree
Hide file tree
Showing 2,456 changed files with 242,150 additions and 659 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@
*/
package net.geoprism;

@com.runwaysdk.business.ClassSignature(hash = 2377446)
@com.runwaysdk.business.ClassSignature(hash = -1914429695)
public abstract class MappableClassDTOBase extends com.runwaysdk.business.BusinessDTO implements com.runwaysdk.generation.loader.Reloadable
{
public final static String CLASS = "net.geoprism.MappableClass";
private static final long serialVersionUID = 2377446;
private static final long serialVersionUID = -1914429695;

protected MappableClassDTOBase(com.runwaysdk.constants.ClientRequestIF clientRequest)
{
Expand Down Expand Up @@ -555,6 +555,22 @@ public static final void remove(com.runwaysdk.constants.ClientRequestIF clientRe
clientRequest.invokeMethod(_metadata, null, _parameters);
}

public final void xport()
{
String[] _declaredTypes = new String[]{};
Object[] _parameters = new Object[]{};
com.runwaysdk.business.MethodMetaData _metadata = new com.runwaysdk.business.MethodMetaData(net.geoprism.MappableClassDTO.CLASS, "xport", _declaredTypes);
getRequest().invokeMethod(_metadata, this, _parameters);
}

public static final void xport(com.runwaysdk.constants.ClientRequestIF clientRequest, java.lang.String id)
{
String[] _declaredTypes = new String[]{"java.lang.String"};
Object[] _parameters = new Object[]{id};
com.runwaysdk.business.MethodMetaData _metadata = new com.runwaysdk.business.MethodMetaData(net.geoprism.MappableClassDTO.CLASS, "xport", _declaredTypes);
clientRequest.invokeMethod(_metadata, null, _parameters);
}

@SuppressWarnings("unchecked")
public java.util.List<? extends com.runwaysdk.system.gis.geo.GeoNodeDTO> getAllGeoNode()
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
*/
package net.geoprism;

@com.runwaysdk.business.ClassSignature(hash = 1699839997)
@com.runwaysdk.business.ClassSignature(hash = 1288313290)
/**
* This class is generated automatically.
* DO NOT MAKE CHANGES TO IT - THEY WILL BE OVERWRITTEN
Expand All @@ -29,7 +29,7 @@
public class MappableClassQueryDTO extends com.runwaysdk.business.BusinessQueryDTO
implements com.runwaysdk.generation.loader.Reloadable
{
private static final long serialVersionUID = 1699839997;
private static final long serialVersionUID = 1288313290;

protected MappableClassQueryDTO(String type)
{
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,125 @@
/**
* Copyright (c) 2015 TerraFrame, Inc. All rights reserved.
*
* This file is part of Runway SDK(tm).
*
* Runway SDK(tm) is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* Runway SDK(tm) is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with Runway SDK(tm). If not, see <http://www.gnu.org/licenses/>.
*/
package net.geoprism.dhis2.response;

@com.runwaysdk.business.ClassSignature(hash = 143517797)
public abstract class DHIS2DuplicateAttributeExceptionDTOBase extends com.runwaysdk.business.SmartExceptionDTO implements com.runwaysdk.generation.loader.Reloadable
{
public final static String CLASS = "net.geoprism.dhis2.response.DHIS2DuplicateAttributeException";
private static final long serialVersionUID = 143517797;

public DHIS2DuplicateAttributeExceptionDTOBase(com.runwaysdk.constants.ClientRequestIF clientRequestIF)
{
super(clientRequestIF);
}

protected DHIS2DuplicateAttributeExceptionDTOBase(com.runwaysdk.business.ExceptionDTO exceptionDTO)
{
super(exceptionDTO);
}

public DHIS2DuplicateAttributeExceptionDTOBase(com.runwaysdk.constants.ClientRequestIF clientRequest, java.util.Locale locale)
{
super(clientRequest, locale);
}

public DHIS2DuplicateAttributeExceptionDTOBase(com.runwaysdk.constants.ClientRequestIF clientRequest, java.util.Locale locale, java.lang.String developerMessage)
{
super(clientRequest, locale, developerMessage);
}

public DHIS2DuplicateAttributeExceptionDTOBase(com.runwaysdk.constants.ClientRequestIF clientRequest, java.util.Locale locale, java.lang.Throwable cause)
{
super(clientRequest, locale, cause);
}

public DHIS2DuplicateAttributeExceptionDTOBase(com.runwaysdk.constants.ClientRequestIF clientRequest, java.util.Locale locale, java.lang.String developerMessage, java.lang.Throwable cause)
{
super(clientRequest, locale, developerMessage, cause);
}

public DHIS2DuplicateAttributeExceptionDTOBase(com.runwaysdk.constants.ClientRequestIF clientRequest, java.lang.Throwable cause)
{
super(clientRequest, cause);
}

public DHIS2DuplicateAttributeExceptionDTOBase(com.runwaysdk.constants.ClientRequestIF clientRequest, java.lang.String msg, java.lang.Throwable cause)
{
super(clientRequest, msg, cause);
}

protected java.lang.String getDeclaredType()
{
return CLASS;
}

public static java.lang.String DHIS2ATTRS = "dhis2Attrs";
public static java.lang.String ID = "id";
public String getDhis2Attrs()
{
return getValue(DHIS2ATTRS);
}

public void setDhis2Attrs(String value)
{
if(value == null)
{
setValue(DHIS2ATTRS, "");
}
else
{
setValue(DHIS2ATTRS, value);
}
}

public boolean isDhis2AttrsWritable()
{
return isWritable(DHIS2ATTRS);
}

public boolean isDhis2AttrsReadable()
{
return isReadable(DHIS2ATTRS);
}

public boolean isDhis2AttrsModified()
{
return isModified(DHIS2ATTRS);
}

public final com.runwaysdk.transport.metadata.AttributeCharacterMdDTO getDhis2AttrsMd()
{
return (com.runwaysdk.transport.metadata.AttributeCharacterMdDTO) getAttributeDTO(DHIS2ATTRS).getAttributeMdDTO();
}

/**
* Overrides java.lang.Throwable#getMessage() to retrieve the localized
* message from the exceptionDTO, instead of from a class variable.
*/
public String getMessage()
{
java.lang.String template = super.getMessage();

template = template.replace("{dhis2Attrs}", this.getDhis2Attrs().toString());
template = template.replace("{id}", this.getId().toString());

return template;
}

}
Original file line number Diff line number Diff line change
@@ -0,0 +1,86 @@
/**
* Copyright (c) 2015 TerraFrame, Inc. All rights reserved.
*
* This file is part of Runway SDK(tm).
*
* Runway SDK(tm) is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* Runway SDK(tm) is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with Runway SDK(tm). If not, see <http://www.gnu.org/licenses/>.
*/
package net.geoprism.dhis2.response;

@com.runwaysdk.business.ClassSignature(hash = 1517525951)
public abstract class OAuthLoginRequiredExceptionDTOBase extends com.runwaysdk.business.SmartExceptionDTO implements com.runwaysdk.generation.loader.Reloadable
{
public final static String CLASS = "net.geoprism.dhis2.response.OAuthLoginRequiredException";
private static final long serialVersionUID = 1517525951;

public OAuthLoginRequiredExceptionDTOBase(com.runwaysdk.constants.ClientRequestIF clientRequestIF)
{
super(clientRequestIF);
}

protected OAuthLoginRequiredExceptionDTOBase(com.runwaysdk.business.ExceptionDTO exceptionDTO)
{
super(exceptionDTO);
}

public OAuthLoginRequiredExceptionDTOBase(com.runwaysdk.constants.ClientRequestIF clientRequest, java.util.Locale locale)
{
super(clientRequest, locale);
}

public OAuthLoginRequiredExceptionDTOBase(com.runwaysdk.constants.ClientRequestIF clientRequest, java.util.Locale locale, java.lang.String developerMessage)
{
super(clientRequest, locale, developerMessage);
}

public OAuthLoginRequiredExceptionDTOBase(com.runwaysdk.constants.ClientRequestIF clientRequest, java.util.Locale locale, java.lang.Throwable cause)
{
super(clientRequest, locale, cause);
}

public OAuthLoginRequiredExceptionDTOBase(com.runwaysdk.constants.ClientRequestIF clientRequest, java.util.Locale locale, java.lang.String developerMessage, java.lang.Throwable cause)
{
super(clientRequest, locale, developerMessage, cause);
}

public OAuthLoginRequiredExceptionDTOBase(com.runwaysdk.constants.ClientRequestIF clientRequest, java.lang.Throwable cause)
{
super(clientRequest, cause);
}

public OAuthLoginRequiredExceptionDTOBase(com.runwaysdk.constants.ClientRequestIF clientRequest, java.lang.String msg, java.lang.Throwable cause)
{
super(clientRequest, msg, cause);
}

protected java.lang.String getDeclaredType()
{
return CLASS;
}

public static java.lang.String ID = "id";
/**
* Overrides java.lang.Throwable#getMessage() to retrieve the localized
* message from the exceptionDTO, instead of from a class variable.
*/
public String getMessage()
{
java.lang.String template = super.getMessage();

template = template.replace("{id}", this.getId().toString());

return template;
}

}
Original file line number Diff line number Diff line change
@@ -1,28 +1,10 @@
/**
* Copyright (c) 2015 TerraFrame, Inc. All rights reserved.
*
* This file is part of Runway SDK(tm).
*
* Runway SDK(tm) is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* Runway SDK(tm) is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with Runway SDK(tm). If not, see <http://www.gnu.org/licenses/>.
*/
package net.geoprism.ontology;

@com.runwaysdk.business.ClassSignature(hash = -318518985)
@com.runwaysdk.business.ClassSignature(hash = -2105263295)
public abstract class GeoEntityUtilDTOBase extends com.runwaysdk.business.UtilDTO implements com.runwaysdk.generation.loader.Reloadable
{
public final static String CLASS = "net.geoprism.ontology.GeoEntityUtil";
private static final long serialVersionUID = -318518985;
private static final long serialVersionUID = -2105263295;

protected GeoEntityUtilDTOBase(com.runwaysdk.constants.ClientRequestIF clientRequest)
{
Expand All @@ -35,6 +17,22 @@ protected java.lang.String getDeclaredType()
}

public static java.lang.String ID = "id";
public static final void applyGeometries(com.runwaysdk.constants.ClientRequestIF clientRequest, java.lang.String featureCollection)
{
String[] _declaredTypes = new String[]{"java.lang.String"};
Object[] _parameters = new Object[]{featureCollection};
com.runwaysdk.business.MethodMetaData _metadata = new com.runwaysdk.business.MethodMetaData(net.geoprism.ontology.GeoEntityUtilDTO.CLASS, "applyGeometries", _declaredTypes);
clientRequest.invokeMethod(_metadata, null, _parameters);
}

public static final void cancelEditingSession(com.runwaysdk.constants.ClientRequestIF clientRequest, java.lang.String config)
{
String[] _declaredTypes = new String[]{"java.lang.String"};
Object[] _parameters = new Object[]{config};
com.runwaysdk.business.MethodMetaData _metadata = new com.runwaysdk.business.MethodMetaData(net.geoprism.ontology.GeoEntityUtilDTO.CLASS, "cancelEditingSession", _declaredTypes);
clientRequest.invokeMethod(_metadata, null, _parameters);
}

public static final void deleteEntityProblem(com.runwaysdk.constants.ClientRequestIF clientRequest, java.lang.String problemId)
{
String[] _declaredTypes = new String[]{"java.lang.String"};
Expand All @@ -43,6 +41,14 @@ public static final void deleteEntityProblem(com.runwaysdk.constants.ClientReque
clientRequest.invokeMethod(_metadata, null, _parameters);
}

public static final void deleteGeoEntity(com.runwaysdk.constants.ClientRequestIF clientRequest, java.lang.String id)
{
String[] _declaredTypes = new String[]{"java.lang.String"};
Object[] _parameters = new Object[]{id};
com.runwaysdk.business.MethodMetaData _metadata = new com.runwaysdk.business.MethodMetaData(net.geoprism.ontology.GeoEntityUtilDTO.CLASS, "deleteGeoEntity", _declaredTypes);
clientRequest.invokeMethod(_metadata, null, _parameters);
}

public static final com.runwaysdk.system.gis.geo.GeoEntityProblemViewDTO[] getAllProblems(com.runwaysdk.constants.ClientRequestIF clientRequest)
{
String[] _declaredTypes = new String[]{};
Expand All @@ -59,6 +65,30 @@ public static final com.runwaysdk.business.ValueQueryDTO getChildren(com.runways
return (com.runwaysdk.business.ValueQueryDTO) clientRequest.invokeMethod(_metadata, null, _parameters);
}

public static final java.lang.String getChildrenBBOX(com.runwaysdk.constants.ClientRequestIF clientRequest, java.lang.String id, java.lang.String universalId)
{
String[] _declaredTypes = new String[]{"java.lang.String", "java.lang.String"};
Object[] _parameters = new Object[]{id, universalId};
com.runwaysdk.business.MethodMetaData _metadata = new com.runwaysdk.business.MethodMetaData(net.geoprism.ontology.GeoEntityUtilDTO.CLASS, "getChildrenBBOX", _declaredTypes);
return (java.lang.String) clientRequest.invokeMethod(_metadata, null, _parameters);
}

public static final java.io.InputStream getData(com.runwaysdk.constants.ClientRequestIF clientRequest, java.lang.String config)
{
String[] _declaredTypes = new String[]{"java.lang.String"};
Object[] _parameters = new Object[]{config};
com.runwaysdk.business.MethodMetaData _metadata = new com.runwaysdk.business.MethodMetaData(net.geoprism.ontology.GeoEntityUtilDTO.CLASS, "getData", _declaredTypes);
return (java.io.InputStream) clientRequest.invokeMethod(_metadata, null, _parameters);
}

public static final java.lang.String getEntitiesBBOX(com.runwaysdk.constants.ClientRequestIF clientRequest, java.lang.String[] ids)
{
String[] _declaredTypes = new String[]{"[Ljava.lang.String;"};
Object[] _parameters = new Object[]{ids};
com.runwaysdk.business.MethodMetaData _metadata = new com.runwaysdk.business.MethodMetaData(net.geoprism.ontology.GeoEntityUtilDTO.CLASS, "getEntitiesBBOX", _declaredTypes);
return (java.lang.String) clientRequest.invokeMethod(_metadata, null, _parameters);
}

public static final com.runwaysdk.system.gis.geo.GeoEntityDTO getEntity(com.runwaysdk.constants.ClientRequestIF clientRequest, java.lang.String id)
{
String[] _declaredTypes = new String[]{"java.lang.String"};
Expand Down Expand Up @@ -107,6 +137,14 @@ public static final java.lang.String[] makeSynonym(com.runwaysdk.constants.Clien
return (java.lang.String[]) clientRequest.invokeMethod(_metadata, null, _parameters);
}

public static final java.io.InputStream openEditingSession(com.runwaysdk.constants.ClientRequestIF clientRequest, java.lang.String config)
{
String[] _declaredTypes = new String[]{"java.lang.String"};
Object[] _parameters = new Object[]{config};
com.runwaysdk.business.MethodMetaData _metadata = new com.runwaysdk.business.MethodMetaData(net.geoprism.ontology.GeoEntityUtilDTO.CLASS, "openEditingSession", _declaredTypes);
return (java.io.InputStream) clientRequest.invokeMethod(_metadata, null, _parameters);
}

public static final java.lang.String publishLayers(com.runwaysdk.constants.ClientRequestIF clientRequest, java.lang.String id, java.lang.String universalId, java.lang.String existingLayerNames)
{
String[] _declaredTypes = new String[]{"java.lang.String", "java.lang.String", "java.lang.String"};
Expand Down
Loading

0 comments on commit 47c78d5

Please sign in to comment.